Searched refs:temp (Results 1 – 11 of 11) sorted by relevance
| /kernel/dev/power/hisi/ |
| A D | power.cpp | 26 uint32_t temp = readl(pmu_base + PMU_HRST_OFFSET); in hisi_reboot() local 27 temp = (temp & 0xFFFFFF00) | (flags == REBOOT_BOOTLOADER ? 1 : 0); in hisi_reboot() 28 writel(temp, pmu_base + PMU_HRST_OFFSET); in hisi_reboot()
|
| /kernel/kernel/ |
| A D | wait.cpp | 69 thread_t* temp; in wait_queue_validate_queue() local 71 DEBUG_ASSERT(temp->magic == THREAD_MAGIC); in wait_queue_validate_queue() 75 DEBUG_ASSERT_MSG(last->effec_priority > temp->effec_priority, in wait_queue_validate_queue() 78 temp, temp->effec_priority); in wait_queue_validate_queue() 85 DEBUG_ASSERT_MSG(temp->effec_priority == temp2->effec_priority, in wait_queue_validate_queue() 87 temp, temp->effec_priority, in wait_queue_validate_queue() 91 last = temp; in wait_queue_validate_queue() 105 thread_t* temp; in wait_queue_insert() local 107 if (pri > temp->effec_priority) { in wait_queue_insert() 112 } else if (temp->effec_priority == pri) { in wait_queue_insert() [all …]
|
| /kernel/arch/arm64/ |
| A D | spinlock.cpp | 17 uint64_t temp; in arch_spin_lock() local 26 : [temp] "=&r"(temp) in arch_spin_lock()
|
| A D | user_copy.S | 15 temp .req x15 label 28 adr temp, .Lfault_from_user 43 str temp, [fault_return_ptr]
|
| A D | feature.cpp | 35 uint64_t temp = 0; in arm64_get_cache_info() local 50 temp = __arm_rsr64("ccsidr_el1"); in arm64_get_cache_info() 52 parse_ccsid(&(info->level_data_type[i]), temp); in arm64_get_cache_info() 57 temp = __arm_rsr64("ccsidr_el1"); in arm64_get_cache_info() 59 parse_ccsid(&(info->level_data_type[i]), temp); in arm64_get_cache_info() 64 temp = __arm_rsr64("ccsidr_el1"); in arm64_get_cache_info() 66 parse_ccsid(&(info->level_inst_type[i]), temp); in arm64_get_cache_info()
|
| /kernel/dev/interrupt/arm_gic/v3/include/dev/interrupt/ |
| A D | arm_gicv3_regs.h | 124 uint64_t temp; in gic_read_sre() local 125 __asm__ volatile("mrs %0, " ICC_SRE_EL1 : "=r"(temp)); in gic_read_sre() 126 return (uint32_t)temp; in gic_read_sre() 145 uint64_t temp; in gic_read_iar() local 146 __asm__ volatile("mrs %0, " ICC_IAR1_EL1 : "=r"(temp)); in gic_read_iar() 148 return (uint32_t)temp; in gic_read_iar()
|
| /kernel/object/include/object/ |
| A D | buffer_chain.h | 102 BufferChain::BufferList temp; in Alloc() local 108 temp.push_front(new (va) BufferChain::Buffer); in Alloc() 113 BufferChain* chain = new (temp.front().data()) BufferChain(&temp, &pages); in Alloc()
|
| /kernel/arch/x86/include/arch/ |
| A D | x86.h | 214 ulong temp; in set_in_cr0() local 220 : "=r"(temp) in set_in_cr0() 226 ulong temp; in clear_in_cr0() local 232 : "=r"(temp) in clear_in_cr0()
|
| /kernel/lib/heap/ |
| A D | heap_wrapper.cpp | 269 vm_page_t *p, *temp; in heap_page_alloc() local 270 list_for_every_entry_safe (&list, p, temp, vm_page_t, queue_node) { in heap_page_alloc()
|
| /kernel/vm/ |
| A D | pmm_node.cpp | 84 vm_page *temp, *page; in AddFreePages() local 85 list_for_every_entry_safe (list, page, temp, vm_page, queue_node) { in AddFreePages()
|
| /kernel/lib/gfx/ |
| A D | gfx.cpp | 473 uint temp = start; in gfx_flush_rows() local 475 end = temp; in gfx_flush_rows()
|
Completed in 19 milliseconds