Searched refs:clump (Results 1 – 4 of 4) sorted by relevance
/kernel/linux/linux-5.10/include/asm-generic/bitops/ |
D | find.h | 93 extern unsigned long find_next_clump8(unsigned long *clump, 97 #define find_first_clump8(clump, bits, size) \ argument 98 find_next_clump8((clump), (bits), (size), 0)
|
/kernel/linux/linux-5.10/lib/ |
D | test_bitmap.c | 132 const unsigned long *const clump) in __check_eq_clump8() argument 149 if (*clump != exp) { in __check_eq_clump8() 151 srcfile, line, exp, *clump); in __check_eq_clump8() 549 unsigned long clump; in test_for_each_set_clump8() local 562 for_each_set_clump8(start, clump, bits, CLUMP_EXP_NUMBITS) in test_for_each_set_clump8() 563 expect_eq_clump8(start, CLUMP_EXP_NUMBITS, clump_exp, &clump); in test_for_each_set_clump8()
|
D | find_bit.c | 181 unsigned long find_next_clump8(unsigned long *clump, const unsigned long *addr, in find_next_clump8() argument 189 *clump = bitmap_get_value8(addr, offset); in find_next_clump8()
|
/kernel/linux/linux-5.10/include/linux/ |
D | bitops.h | 60 #define for_each_set_clump8(start, clump, bits, size) \ argument 61 for ((start) = find_first_clump8(&(clump), (bits), (size)); \ 63 (start) = find_next_clump8(&(clump), (bits), (size), (start) + 8))
|