Lines Matching defs:addr1
111 unsigned long _find_first_and_bit(const unsigned long *addr1,
115 return FIND_FIRST_BIT(addr1[idx] & addr2[idx], /* nop */, size);
123 unsigned long _find_first_andnot_bit(const unsigned long *addr1,
127 return FIND_FIRST_BIT(addr1[idx] & ~addr2[idx], /* nop */, size);
134 unsigned long _find_first_and_and_bit(const unsigned long *addr1,
139 return FIND_FIRST_BIT(addr1[idx] & addr2[idx] & addr3[idx], /* nop */, size);
168 unsigned long __find_nth_and_bit(const unsigned long *addr1, const unsigned long *addr2,
171 return FIND_NTH_BIT(addr1[idx] & addr2[idx], size, n);
175 unsigned long __find_nth_andnot_bit(const unsigned long *addr1, const unsigned long *addr2,
178 return FIND_NTH_BIT(addr1[idx] & ~addr2[idx], size, n);
182 unsigned long __find_nth_and_andnot_bit(const unsigned long *addr1,
187 return FIND_NTH_BIT(addr1[idx] & addr2[idx] & ~addr3[idx], size, n);
192 unsigned long _find_next_and_bit(const unsigned long *addr1, const unsigned long *addr2,
195 return FIND_NEXT_BIT(addr1[idx] & addr2[idx], /* nop */, nbits, start);
201 unsigned long _find_next_andnot_bit(const unsigned long *addr1, const unsigned long *addr2,
204 return FIND_NEXT_BIT(addr1[idx] & ~addr2[idx], /* nop */, nbits, start);
210 unsigned long _find_next_or_bit(const unsigned long *addr1, const unsigned long *addr2,
213 return FIND_NEXT_BIT(addr1[idx] | addr2[idx], /* nop */, nbits, start);