Searched refs:__builtin_clzll (Results 1 - 25 of 25) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dclzti2.c25 return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) +
H A Dfloatundixf.c29 int clz = __builtin_clzll(a);
H A Dfloatunditf.c28 const int exponent = (aWidth - 1) - __builtin_clzll(a);
H A Dfloatditf.c36 const int exponent = (aWidth - 1) - __builtin_clzll(aAbs);
H A Dfloatdixf.c32 int clz = __builtin_clzll(a);
H A Dfloatdisf.c28 int sd = N - __builtin_clzll(a); // number of significant digits
H A Dfloatundisf.c26 int sd = N - __builtin_clzll(a); // number of significant digits
H A Dudivmodti4.c85 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high);
118 sr = 1 + n_udword_bits + __builtin_clzll(d.s.low) -
119 __builtin_clzll(n.s.high);
144 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high);
H A Dint_lib.h149 uint32_t __inline __builtin_clzll(uint64_t value) { function
156 uint32_t __inline __builtin_clzll(uint64_t value) { function
167 #define __builtin_clzl __builtin_clzll
H A Dfloatdidf.c54 int sd = N - __builtin_clzll(a); // number of significant digits
H A Dfloatundidf.c58 int sd = N - __builtin_clzll(a); // number of significant digits
H A Dfp_lib.h137 return __builtin_clzll(word) + add;
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerBuiltins.h28 inline uint32_t Clzll(unsigned long long X) { return __builtin_clzll(X); }
/freebsd-12-stable/contrib/gcc/
H A Dtoplev.h168 # define CLZ_HWI __builtin_clzll
/freebsd-12-stable/contrib/llvm-project/clang/lib/Headers/
H A Dia32intrin.h107 return 63 - __builtin_clzll(__A);
H A Darm_acle.h141 return __builtin_clzll(__t);
/freebsd-12-stable/sys/contrib/zstd/lib/compress/
H A Dzstd_compress_internal.h364 # elif defined(__GNUC__) && (__GNUC__ >= 4) && __has_builtin(__builtin_clzll)
365 return (__builtin_clzll(val) >> 3);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMathExtras.h204 #if __has_builtin(__builtin_clzll) || defined(__GNUC__)
205 return __builtin_clzll(Val);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h356 up = SANITIZER_WORDSIZE - 1 - __builtin_clzll(x);
/freebsd-12-stable/sys/cddl/contrib/opensolaris/common/lz4/
H A Dlz4.c405 return (__builtin_clzll(val) >> 3);
/freebsd-12-stable/contrib/gcc/config/
H A Dfp-bit.c197 return __builtin_clzll (n);
/freebsd-12-stable/contrib/gcc/config/soft-fp/
H A Dop-common.h1305 r = __builtin_clzll (x); \
/freebsd-12-stable/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c139 return (__builtin_clzll(val) >> 3);
/freebsd-12-stable/contrib/subversion/subversion/libsvn_subr/lz4/
H A Dlz4.c335 return (__builtin_clzll((U64)val) >> 3);
/freebsd-12-stable/contrib/sqlite3/
H A Dsqlite3.c[all...]

Completed in 520 milliseconds