Searched refs:clump (Results 1 – 4 of 4) sorted by relevance
| /OK3568_Linux_fs/kernel/include/asm-generic/bitops/ |
| H A 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)
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | test_bitmap.c | 131 const unsigned long *const clump) in __check_eq_clump8() argument 148 if (*clump != exp) { in __check_eq_clump8() 150 srcfile, line, exp, *clump); in __check_eq_clump8() 548 unsigned long clump; in test_for_each_set_clump8() local 561 for_each_set_clump8(start, clump, bits, CLUMP_EXP_NUMBITS) in test_for_each_set_clump8() 562 expect_eq_clump8(start, CLUMP_EXP_NUMBITS, clump_exp, &clump); in test_for_each_set_clump8()
|
| H A 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()
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A 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))
|