Lines Matching refs:bits
60 static inline unsigned long has_zero(unsigned long a, unsigned long *bits, const struct word_at_a_time *c)
66 *bits = ret;
71 static inline unsigned long prep_zero_mask(unsigned long a, unsigned long bits, const struct word_at_a_time *c)
73 return bits;
77 static inline unsigned long create_zero_mask(unsigned long bits)
86 : "b" (bits));
127 static inline unsigned long create_zero_mask(unsigned long bits)
129 bits = (bits - 1) & ~bits;
130 return bits >> 7;
139 static inline unsigned long has_zero(unsigned long a, unsigned long *bits, const struct word_at_a_time *c)
142 *bits = mask;
146 static inline unsigned long prep_zero_mask(unsigned long a, unsigned long bits, const struct word_at_a_time *c)
148 return bits;