Lines Matching defs:count_leading_zeros
83 5) count_leading_zeros(count, x) counts the number of zero-bits from the
88 6) count_trailing_zeros(count, x) like count_leading_zeros, but counts
128 #define count_leading_zeros(COUNT, X) ((COUNT) = __builtin_clz (X))
134 #define count_leading_zeros(COUNT, X) ((COUNT) = __builtin_clzll (X))
163 #define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clzl (X))
167 #define count_leading_zeros(COUNT,X) \
216 #define count_leading_zeros(count, x) \
286 /* Let gcc decide how best to implement count_leading_zeros. */
287 #define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clz (X))
295 #define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clz (X))
301 #define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clzl (X))
307 #define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clzll (X))
317 #define count_leading_zeros(COUNT, X) ((COUNT) = __builtin_clz (X))
385 #define count_leading_zeros(count, x) \
486 #define count_leading_zeros(count, x) ((count) = __builtin_clz (x))
522 #define count_leading_zeros(count, x) ((count) = __builtin_clzll (x))
570 #define count_leading_zeros(count, x) \
740 #define count_leading_zeros(count, x) \
747 #define count_leading_zeros(count,x) ((count) = __builtin_clz (x))
769 #define count_leading_zeros(count, x) \
812 # define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clz (X))
858 #define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clz (X))
907 #define count_leading_zeros(count, x) \
968 #define count_leading_zeros(count, x) \
1039 #define count_leading_zeros(count, x) \
1292 #define count_leading_zeros(count, x) \
1528 #define count_leading_zeros(count, x) ((count) = __builtin_clz (x))
1549 #define count_leading_zeros(COUNT, X) ((COUNT) = __builtin_clz (X))
1555 #define count_leading_zeros(count, x) \
1736 #if !defined (count_leading_zeros)
1737 #define count_leading_zeros(count, x) \
1761 /* Define count_trailing_zeros using count_leading_zeros. The latter might be
1767 count_leading_zeros (__ctz_c, __ctz_x & -__ctz_x); \