Searched refs:tail (Results 1 – 13 of 13) sorted by relevance
| /hypervisor/include/arch/x86/asm/lib/ |
| A D | spinlock.h | 18 uint32_t tail; member 47 [tail] "m"(lock->tail) in spinlock_obtain() 56 : [tail] "m" (lock->tail) in spinlock_release()
|
| /hypervisor/common/ |
| A D | sbuf.c | 60 next_tail = sbuf_next_ptr(sbuf->tail, ele_size, sbuf->size); in sbuf_put() 71 to = (void *)sbuf + SBUF_HEAD_SIZE + sbuf->tail; in sbuf_put() 81 sbuf->tail = next_tail; in sbuf_put()
|
| A D | irq.c | 14 static spinlock_t irq_alloc_spinlock = { .head = 0U, .tail = 0U, };
|
| A D | ptdev.c | 23 spinlock_t ptdev_lock = { .head = 0U, .tail = 0U, };
|
| /hypervisor/debug/ |
| A D | profiling.c | 260 if (sbuf->tail >= sbuf->head) { in profiling_sbuf_put_variable() 263 remaining_space = sbuf->head - sbuf->tail; in profiling_sbuf_put_variable() 279 if (next_tail < sbuf->tail) { /* wrap-around */ in profiling_sbuf_put_variable() 280 offset = sbuf->size - sbuf->tail; in profiling_sbuf_put_variable() 294 sbuf->tail = next_tail; in profiling_sbuf_put_variable() 333 if (sbuf->tail >= sbuf->head) { in profiling_generate_data() 335 - (sbuf->tail - sbuf->head); in profiling_generate_data() 337 remaining_space = sbuf->head - sbuf->tail; in profiling_generate_data() 400 if (sbuf->tail >= sbuf->head) { in profiling_generate_data() 402 = sbuf->size - (sbuf->tail - sbuf->head); in profiling_generate_data() [all …]
|
| A D | dump.c | 21 static spinlock_t exception_spinlock = { .head = 0U, .tail = 0U, };
|
| /hypervisor/arch/x86/ |
| A D | irq.c | 20 static spinlock_t x86_irq_spinlock = { .head = 0U, .tail = 0U, };
|
| A D | ioapic.c | 44 static spinlock_t ioapic_lock = { .head = 0U, .tail = 0U, };
|
| /hypervisor/arch/x86/guest/ |
| A D | vmcall.c | 19 static spinlock_t vm_id_lock = { .head = 0U, .tail = 0U };
|
| /hypervisor/dm/ |
| A D | vrtc.c | 71 static spinlock_t vrtc_rebase_lock = { .head = 0U, .tail = 0U }; 417 static spinlock_t cmos_lock = { .head = 0U, .tail = 0U };
|
| /hypervisor/include/public/ |
| A D | acrn_common.h | 791 uint32_t tail; /* offset from base, to write */ member
|
| /hypervisor/ |
| A D | Makefile | 8 GCC_MAJOR=$(shell echo __GNUC__ | $(CC) -E -x c - | tail -n 1) 9 GCC_MINOR=$(shell echo __GNUC_MINOR__ | $(CC) -E -x c - | tail -n 1)
|
| /hypervisor/dm/vpci/ |
| A D | ivshmem.c | 84 static spinlock_t ivshmem_dev_lock = { .head = 0U, .tail = 0U, };
|
Completed in 29 milliseconds