Searched refs:__builtin_clzll (Results 1 – 25 of 74) 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); \
48 ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_clzll)181 #if ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_clzll) in CountLeadingZeroes64()190 return x == 0 ? 64 : __builtin_clzll(x); in CountLeadingZeroes64()
11 return SANITIZER_WORDSIZE - __builtin_clzll(vma); in SystemVMA()
27 leading = __builtin_clzll(P); in test_i64()
26 leading = __builtin_clzll(P); in test_i64()
35 #define BUILTIN_CLZLL(x) __builtin_clzll(x)
28 inline uint32_t Clzll(unsigned long long X) { return __builtin_clzll(X); } in Clzll()
123 *Index = 63 - __builtin_clzll(Mask); in _BitScanReverse64()241 *Index = 63 - __builtin_clzll(Mask); in _BitScanReverse64()