Searched refs:test_bit (Results 1 – 9 of 9) sorted by relevance
/bionic/libc/kernel/arch-mips/asm/ |
D | cacheflush.h | 30 #define Page_dcache_dirty(page) test_bit(PG_dcache_dirty, &(page)->flags)
|
/bionic/libc/kernel/arch-x86/asm/ |
D | bitops_32.h | 31 #define test_bit(nr,addr) (__builtin_constant_p(nr) ? constant_test_bit((nr),(addr)) : variabl… macro
|
D | mpspec_32.h | 35 #define physid_isset(physid, map) test_bit(physid, (map).mask)
|
D | cpufeature_32.h | 125 … || (((bit)>>5)==7 && (1UL<<((bit)&31) & REQUIRED_MASK7)) ) ? 1 : test_bit(bit, (c)->x86_cap…
|
/bionic/libc/kernel/common/asm-generic/bitops/ |
D | le.h | 27 #define generic_test_le_bit(nr, addr) test_bit(nr, addr) 39 #define generic_test_le_bit(nr, addr) test_bit((nr) ^ BITOP_LE_SWIZZLE, (addr))
|
/bionic/libc/kernel/common/linux/sunrpc/ |
D | sched.h | 132 #define RPC_IS_RUNNING(t) (test_bit(RPC_TASK_RUNNING, &(t)->tk_runstate)) 137 #define RPC_IS_QUEUED(t) (test_bit(RPC_TASK_QUEUED, &(t)->tk_runstate)) 144 #define RPC_IS_ACTIVATED(t) (test_bit(RPC_TASK_ACTIVE, &(t)->tk_runstate))
|
/bionic/libc/kernel/common/linux/ |
D | blkdev.h | 396 #define blk_queue_plugged(q) test_bit(QUEUE_FLAG_PLUGGED, &(q)->queue_flags) 397 #define blk_queue_tagged(q) test_bit(QUEUE_FLAG_QUEUED, &(q)->queue_flags) 399 #define blk_queue_stopped(q) test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags)
|
D | cpumask.h | 31 #define cpu_isset(cpu, cpumask) test_bit((cpu), (cpumask).bits)
|
D | nodemask.h | 32 #define node_isset(node, nodemask) test_bit((node), (nodemask).bits)
|