Lines Matching full:size
10 * @size: The bitmap size in bits
13 * If no bits are set, returns @size.
16 size, unsigned long offset);
25 * @size: The bitmap size in bits
28 * If no bits are set, returns @size.
31 const unsigned long *addr2, unsigned long size,
40 * @size: The bitmap size in bits
43 * If no bits are zero, returns @size.
46 long size, unsigned long offset);
54 * @size: The maximum number of bits to search
57 * If no bits are set, returns @size.
60 unsigned long size);
65 * @size: The maximum number of bits to search
68 * If no bits are zero, returns @size.
71 unsigned long size);
75 #define find_first_bit(addr, size) find_next_bit((addr), (size), 0) argument
78 #define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0) argument
87 * @size: bitmap size in number of bits
91 * copied to the location pointed by @clump. If no bits are set, returns @size.
95 unsigned long size, unsigned long offset);
97 #define find_first_clump8(clump, bits, size) \ argument
98 find_next_clump8((clump), (bits), (size), 0)