Searched refs:modidx (Results 1 - 3 of 3) sorted by relevance
/third_party/musl/src/ldso/loongarch64/ |
H A D | tlsdesc.s | 15 # struct {size_t modidx,off;} *p = (void*)a[1]; 17 # return dtv[p->modidx] + p->off - tp; 27 ld.d $a0, $a0, 8 # a0=&{modidx,off} 29 ld.d $a0, $a0, 0 # a0=modidx 30 slli.d $a0, $a0, 3 # a0=8*modidx 31 add.d $a0, $a0, $t2 # a0=dtv+8*modidx 32 ld.d $a0, $a0, 0 # a0=dtv[modidx] 33 add.d $a0, $a0, $t1 # a0=dtv[modidx]+off
|
/third_party/musl/src/ldso/riscv64/ |
H A D | tlsdesc.s | 19 ld a0,8(a0) # a0=&{modidx,off} 21 ld a0,(a0) # a0=modidx 22 sll a0,a0,3 # a0=8*modidx 24 add a0,a0,t2 # a0=dtv+8*modidx 25 ld a0,(a0) # a0=dtv[modidx] 26 add a0,a0,t1 # a0=dtv[modidx]+off 27 sub a0,a0,tp # a0=dtv[modidx]+off-tp
|
/third_party/pulseaudio/src/modules/ |
H A D | module-devd-detect.c | 56 uint32_t modidx; in line_callback() local 73 if (!(modidx = (uint32_t)pa_hashmap_remove(u->devices, (void *)(uintptr_t)devnum))) in line_callback() 76 pa_log_info("Card %u (module %u) removed.", devnum, modidx); in line_callback() 78 if (modidx != PA_INVALID_INDEX) in line_callback() 79 pa_module_unload_request_by_index(u->core, modidx, true); in line_callback()
|
Completed in 1 milliseconds