Home
last modified time | relevance | path

Searched refs:RQB_FFS (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/riscv/include/
H A Drunq.h37 #define RQB_FFS(word) (ffsl(word) - 1) macro
/freebsd/sys/i386/include/
H A Drunq.h39 #define RQB_FFS(word) (ffs(word) - 1) macro
/freebsd/sys/arm64/include/
H A Drunq.h41 #define RQB_FFS(word) (ffsl(word) - 1) macro
/freebsd/sys/arm/include/
H A Drunq.h39 #define RQB_FFS(word) (ffs(word) - 1) macro
/freebsd/sys/amd64/include/
H A Drunq.h39 #define RQB_FFS(word) (bsfq(word)) macro
/freebsd/sys/powerpc/include/
H A Drunq.h44 #define RQB_FFS(word) (ffsl(word) - 1) macro
/freebsd/sys/kern/
H A Dkern_switch.c300 pri = RQB_FFS(rqb->rqb_bits[i]) + (i << RQB_L2BPW); in runq_findbit()
326 pri = RQB_FFS(mask) + (i << RQB_L2BPW); in runq_findbit_from()
H A Dsched_ule.c1202 bit = RQB_FFS(rqb->rqb_bits[i]); in runq_steal_from()