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

12

/freebsd-13-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 Dint_lib.h134 int __inline __builtin_clzll(uint64_t value) { function
141 int __inline __builtin_clzll(uint64_t value) { function
152 #define __builtin_clzl __builtin_clzll
H A Dudivmodti4.c34 s = __builtin_clzll(v);
135 __builtin_clzll(divisor.s.high) - __builtin_clzll(dividend.s.high);
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-13-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-13-stable/sys/contrib/openzfs/cmd/zpool/
H A Dzpool_util.c111 return (NBBY * sizeof (uint64_t) - __builtin_clzll(i));
/freebsd-13-stable/sys/arm/include/
H A Dcpufunc.h241 8 * sizeof(mask) - __builtin_clzll((unsigned long long)mask));
/freebsd-13-stable/sys/arm64/include/
H A Dcpufunc.h95 8 * sizeof(mask) - __builtin_clzll((unsigned long long)mask));
/freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/
H A Dia32intrin.h107 return 63 - __builtin_clzll(__A);
H A Darm_acle.h153 return __builtin_clzll(__t);
/freebsd-13-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dbit_util.h96 msb_on_index = (63 ^ __builtin_clzll(x - 1));
/freebsd-13-stable/sys/contrib/dpdk_rte_lpm/
H A Drte_common.h688 return (x == 0) ? 0 : 64 - __builtin_clzll(x);
/freebsd-13-stable/sys/contrib/openzfs/cmd/zstream/
H A Dzstream_redup.c66 return (NBBY * sizeof (uint64_t) - __builtin_clzll(i));
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMathExtras.h205 #if __has_builtin(__builtin_clzll) || defined(__GNUC__)
206 return __builtin_clzll(Val);
/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Dlz4.c390 return (__builtin_clzll(val) >> 3);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h357 up = SANITIZER_WORDSIZE - 1 - __builtin_clzll(x);
/freebsd-13-stable/sys/contrib/openzfs/lib/libzpool/
H A Dkernel.c671 * The __builtin_clzll() function is supported by both GCC and Clang.
679 return (NBBY * sizeof (uint64_t) - __builtin_clzll(i));

Completed in 104 milliseconds

12