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

/linux-master/include/linux/
H A Dfind.h464 * find_next_clump8 - find next 8-bit clump with set bits in a memory region
465 * @clump: location to store copy of found clump
470 * Returns the bit offset for the next set clump; the found clump value is
471 * copied to the location pointed by @clump. If no bits are set, returns @size.
473 extern unsigned long find_next_clump8(unsigned long *clump,
477 #define find_first_clump8(clump, bits, size) \
478 find_next_clump8((clump), (bits), (size), 0)
659 * for_each_set_clump8 - iterate over bitmap for each 8-bit clump wit
[all...]
/linux-master/lib/
H A Dfind_bit.c223 unsigned long find_next_clump8(unsigned long *clump, const unsigned long *addr, argument
231 *clump = bitmap_get_value8(addr, offset);
H A Dtest_bitmap.c136 const unsigned long *const clump)
141 pr_warn("[%s:%u] bit offset for clump out-of-bounds: expected less than %u, got %u\n",
148 pr_warn("[%s:%u] bit offset for zero clump: expected nonzero clump, got bit offset %u with clump value 0",
153 if (*clump != exp) {
154 pr_warn("[%s:%u] expected clump value of 0x%lX, got clump value of 0x%lX",
155 srcfile, line, exp, *clump);
777 0x38, /* Repeated clump */
132 __check_eq_clump8(const char *srcfile, unsigned int line, const unsigned int offset, const unsigned int size, const unsigned char *const clump_exp, const unsigned long *const clump) argument
788 unsigned long clump; local
[all...]
/linux-master/drivers/pinctrl/
H A Dpinctrl-keembay.c1243 unsigned long reg, clump = 0, bit = 0; local
1268 for_each_set_clump8(bit, clump, &reg, BITS_PER_TYPE(typeof(reg))) {
1269 pin = clump & ~KEEMBAY_GPIO_IRQ_ENABLE;
1274 if (val && (clump & KEEMBAY_GPIO_IRQ_ENABLE))
1401 unsigned long reg, clump = 0, pos = 0; local
1406 for_each_set_clump8(pos, clump, &reg, BITS_PER_TYPE(typeof(reg))) {
1407 if ((clump & ~KEEMBAY_GPIO_IRQ_ENABLE) == pin) {
/linux-master/fs/ntfs3/
H A Dattrib.c36 u32 clump; local
41 clump = 1 << NTFS_MIN_LOG2_OF_CLUMP;
44 clump = 1 << NTFS_MAX_LOG2_OF_CLUMP;
49 clump = 1u << align_shift;
52 ret = (((size + clump - 1) >> align_shift)) << align_shift;

Completed in 120 milliseconds