Searched refs:__builtin_clzll (Results 1 – 25 of 56) sorted by relevance
123
104 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high); in __udivmodti4()144 sr = 1 + n_udword_bits + __builtin_clzll(d.s.low) in __udivmodti4()145 - __builtin_clzll(n.s.high); in __udivmodti4()179 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high); in __udivmodti4()
108 uint32_t __inline __builtin_clzll(uint64_t value) { in __builtin_clzll() function115 uint32_t __inline __builtin_clzll(uint64_t value) { in __builtin_clzll() function126 #define __builtin_clzl __builtin_clzll
29 return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) + in __clzti2()
34 int clz = __builtin_clzll(a); in __floatundixf()
28 const int exponent = (aWidth - 1) - __builtin_clzll(a); in __floatunditf()
37 int clz = __builtin_clzll(a); in __floatdixf()
37 const int exponent = (aWidth - 1) - __builtin_clzll(aAbs); in __floatditf()
33 int sd = N - __builtin_clzll(a); /* number of significant digits */ in ARM_EABI_FNALIAS()
35 int sd = N - __builtin_clzll(a); /* number of significant digits */ in ARM_EABI_FNALIAS()
60 int sd = N - __builtin_clzll(a); /* number of significant digits */
56 return __X ? __builtin_clzll(__X) : 64; in __lzcnt64()62 return __X ? __builtin_clzll(__X) : 64; in _lzcnt_u64()
41 #define __builtin_clzll(x) __cntlz8(x) macro43 #define __builtin_clzl(x) __builtin_clzll(x)
106 return __builtin_clzll(v); in FLAC__clz_uint64()176 return __builtin_clzll(v) ^ 63U; in FLAC__bitmath_ilog2_wide()
128 r = 63 - __builtin_clzll(word); \163 r = 64 - __builtin_clzll(llword); \
189 r = 63 - __builtin_clzll(word); \225 r = 64 - __builtin_clzll(llword); \
11 return SANITIZER_WORDSIZE - __builtin_clzll(vma); in SystemVMA()
36 # __builtin_clzll111 [__builtin_clzll], [$1(0)],
27 leading = __builtin_clzll(P); in test_i64()
26 leading = __builtin_clzll(P); in test_i64()
84 return __builtin_clzll(n); in CountLeadingZeros64()
88 return __builtin_clzll(n); in CountLeadingZeros64()
43 return n == 0 ? -1 : 63 ^ __builtin_clzll(n); in Log2Floor64()
91 return LIKELY(x) ? __builtin_clzll(x) : 64; in CountLeadingZeroBits64()