Searched refs:clump (Results 1 – 6 of 6) sorted by relevance
/linux/include/asm-generic/bitops/ |
A D | find.h | 181 extern unsigned long find_next_clump8(unsigned long *clump, 185 #define find_first_clump8(clump, bits, size) \ argument 186 find_next_clump8((clump), (bits), (size), 0)
|
/linux/lib/ |
A D | find_bit.c | 130 unsigned long find_next_clump8(unsigned long *clump, const unsigned long *addr, in find_next_clump8() argument 138 *clump = bitmap_get_value8(addr, offset); in find_next_clump8()
|
A D | test_bitmap.c | 134 const unsigned long *const clump) in __check_eq_clump8() argument 151 if (*clump != exp) { in __check_eq_clump8() 153 srcfile, line, exp, *clump); in __check_eq_clump8() 605 unsigned long clump; in test_for_each_set_clump8() local 618 for_each_set_clump8(start, clump, bits, CLUMP_EXP_NUMBITS) in test_for_each_set_clump8() 619 expect_eq_clump8(start, CLUMP_EXP_NUMBITS, clump_exp, &clump); in test_for_each_set_clump8()
|
/linux/include/linux/ |
A D | bitops.h | 64 #define for_each_set_clump8(start, clump, bits, size) \ argument 65 for ((start) = find_first_clump8(&(clump), (bits), (size)); \ 67 (start) = find_next_clump8(&(clump), (bits), (size), (start) + 8))
|
/linux/drivers/pinctrl/ |
A D | pinctrl-keembay.c | 1243 unsigned long reg, clump = 0, bit = 0; in keembay_gpio_irq_handler() local 1268 for_each_set_clump8(bit, clump, ®, BITS_PER_TYPE(typeof(reg))) { in keembay_gpio_irq_handler() 1269 pin = clump & ~KEEMBAY_GPIO_IRQ_ENABLE; in keembay_gpio_irq_handler() 1274 if (val && (clump & KEEMBAY_GPIO_IRQ_ENABLE)) in keembay_gpio_irq_handler() 1401 unsigned long reg, clump = 0, pos = 0; in keembay_gpio_irq_disable() local 1406 for_each_set_clump8(pos, clump, ®, BITS_PER_TYPE(typeof(reg))) { in keembay_gpio_irq_disable() 1407 if ((clump & ~KEEMBAY_GPIO_IRQ_ENABLE) == pin) { in keembay_gpio_irq_disable()
|
/linux/fs/ntfs3/ |
A D | attrib.c | 36 u32 clump; in get_pre_allocated() local 41 clump = 1 << NTFS_MIN_LOG2_OF_CLUMP; in get_pre_allocated() 44 clump = 1 << NTFS_MAX_LOG2_OF_CLUMP; in get_pre_allocated() 49 clump = 1u << align_shift; in get_pre_allocated() 52 ret = (((size + clump - 1) >> align_shift)) << align_shift; in get_pre_allocated()
|
Completed in 14 milliseconds