Searched refs:__builtin_clzll (Results 1 – 25 of 47) sorted by relevance
12
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)
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()
36 # __builtin_clzll111 [__builtin_clzll], [$1(0)],
150 return sizeof(FLAC__uint64) * CHAR_BIT - 1 - __builtin_clzll(v); in FLAC__bitmath_ilog2_wide()
126 return (value == 0) ? 64 : __builtin_clzll(value);
186 return u == 0 ? 0 : 64 - __builtin_clzll(u); in util_last_bit64()
149 _LIBCPP_ALWAYS_INLINE int __builtin_clzll(unsigned long long mask) in __builtin_clzll() function
127 r = 63 - __builtin_clzll(word); \
174 r = 63 - __builtin_clzll(word); \
257 return (1 + y) << ((__builtin_clzll(x - y) ^ 63)); in _mesa_next_pow_two_64()
96 __builtin_clzll(ULong x) in __builtin_clzll() function