Searched refs:clump (Results 1 – 5 of 5) sorted by relevance
/linux-6.3-rc2/include/linux/ |
A D | find.h | 441 extern unsigned long find_next_clump8(unsigned long *clump, 445 #define find_first_clump8(clump, bits, size) \ argument 446 find_next_clump8((clump), (bits), (size), 0) 628 #define for_each_set_clump8(start, clump, bits, size) \ argument 629 for ((start) = find_first_clump8(&(clump), (bits), (size)); \ 631 (start) = find_next_clump8(&(clump), (bits), (size), (start) + 8))
|
/linux-6.3-rc2/lib/ |
A D | find_bit.c | 214 unsigned long find_next_clump8(unsigned long *clump, const unsigned long *addr, in find_next_clump8() argument 222 *clump = bitmap_get_value8(addr, offset); in find_next_clump8()
|
A D | test_bitmap.c | 136 const unsigned long *const clump) in __check_eq_clump8() argument 153 if (*clump != exp) { in __check_eq_clump8() 155 srcfile, line, exp, *clump); in __check_eq_clump8() 712 unsigned long clump; in test_for_each_set_clump8() local 725 for_each_set_clump8(start, clump, bits, CLUMP_EXP_NUMBITS) in test_for_each_set_clump8() 726 expect_eq_clump8(start, CLUMP_EXP_NUMBITS, clump_exp, &clump); in test_for_each_set_clump8()
|
/linux-6.3-rc2/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-6.3-rc2/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 18 milliseconds