Home
last modified time | relevance | path

Searched refs:clump (Results 1 – 5 of 5) sorted by relevance

/linux/include/linux/
H A Dfind.h500 extern unsigned long find_next_clump8(unsigned long *clump,
504 #define find_first_clump8(clump, bits, size) \ argument
505 find_next_clump8((clump), (bits), (size), 0)
692 #define for_each_set_clump8(start, clump, bits, size) \ argument
693 for ((start) = find_first_clump8(&(clump), (bits), (size)); \
695 (start) = find_next_clump8(&(clump), (bits), (size), (start) + 8))
/linux/lib/
H A Dfind_bit.c235 unsigned long find_next_clump8(unsigned long *clump, const unsigned long *addr, in find_next_clump8() argument
243 *clump = bitmap_get_value8(addr, offset); in find_next_clump8()
H A Dtest_bitmap.c135 const unsigned long *const clump) in __check_eq_clump8() argument
152 if (*clump != exp) { in __check_eq_clump8()
154 srcfile, line, exp, *clump); in __check_eq_clump8()
788 unsigned long clump; in test_for_each_set_clump8() local
801 for_each_set_clump8(start, clump, bits, CLUMP_EXP_NUMBITS) in test_for_each_set_clump8()
802 expect_eq_clump8(start, CLUMP_EXP_NUMBITS, clump_exp, &clump); in test_for_each_set_clump8()
/linux/drivers/pinctrl/
H A Dpinctrl-keembay.c1243 unsigned long reg, clump = 0, bit = 0; in keembay_gpio_irq_handler() local
1268 for_each_set_clump8(bit, clump, &reg, 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, &reg, 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/
H A Dattrib.c36 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()