Lines Matching refs:bits
22 static inline unsigned long has_zero(unsigned long val, unsigned long *bits, const struct word_at_a_time *c)
25 *bits = zero_locations;
29 static inline unsigned long prep_zero_mask(unsigned long val, unsigned long bits, const struct word_at_a_time *c)
31 return bits;
34 #define create_zero_mask(bits) (bits)
36 static inline unsigned long find_zero(unsigned long bits)
40 return __kernel_cttz(bits);
44 bits &= -bits;
46 t1 = bits & 0xf0;
47 t2 = bits & 0xcc;
48 t3 = bits & 0xaa;