Searched refs:__builtin_clzll (Results 1 – 25 of 43) 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()
150 return sizeof(FLAC__uint64) * CHAR_BIT - 1 - __builtin_clzll(v); in FLAC__bitmath_ilog2_wide()
126 return (value == 0) ? 64 : __builtin_clzll(value);
127 r = 63 - __builtin_clzll(word); \
149 _LIBCPP_ALWAYS_INLINE int __builtin_clzll(unsigned long long mask) in __builtin_clzll() function
174 r = 63 - __builtin_clzll(word); \
120 char clz6[__builtin_clzll(0xFFLL) == BITSIZE(long long) - 8 ? 1 : -1];
96 __builtin_clzll(ULong x) in __builtin_clzll() function
97 unsigned r; r = (unsigned) __builtin_clzll(v); return r; in lzo_bitops_ctlz64_func()98 #define lzo_bitops_ctlz64(v) ((unsigned) __builtin_clzll(v)) in lzo_bitops_ctlz64_func()
159 #if __has_builtin(__builtin_clzll) || LLVM_GNUC_PREREQ(4, 0, 0)160 return __builtin_clzll(Val);