Lines Matching refs:bits
21 static inline unsigned long has_zero(unsigned long val, unsigned long *bits, const struct word_at_a… in has_zero() argument
24 *bits = zero_locations; in has_zero()
28 static inline unsigned long prep_zero_mask(unsigned long val, unsigned long bits, const struct word… in prep_zero_mask() argument
30 return bits; in prep_zero_mask()
33 #define create_zero_mask(bits) (bits) argument
35 static inline unsigned long find_zero(unsigned long bits) in find_zero() argument
39 return __kernel_cttz(bits); in find_zero()
43 bits &= -bits; in find_zero()
45 t1 = bits & 0xf0; in find_zero()
46 t2 = bits & 0xcc; in find_zero()
47 t3 = bits & 0xaa; in find_zero()