/llvm-project/libcxx/include/__bit/ |
H A D | countl.h | 39 return __builtin_clzll(__x); in __libcpp_clz() 56 return ((__x >> 64) == 0) ? (64 + __builtin_clzll(static_cast<unsigned long long>(__x))) in __libcpp_clz() 57 : __builtin_clzll(static_cast<unsigned long long>(__x >> 64)); in __libcpp_clz()
|
/llvm-project/compiler-rt/lib/builtins/ |
H A D | int_lib.h | 137 static int __inline __builtin_clzll(uint64_t value) { in __builtin_clzll() function 144 static int __inline __builtin_clzll(uint64_t value) { in __builtin_clzll() function 155 #define __builtin_clzl __builtin_clzll
|
H A D | udivmodti4.c | 34 s = __builtin_clzll(v); in udiv128by64to64default() 135 __builtin_clzll(divisor.s.high) - __builtin_clzll(dividend.s.high); in __udivmodti4()
|
H A D | int_to_fp.h | 22 static __inline int clzSrcT(usrc_t x) { return __builtin_clzll(x); } in clzSrcT() 27 static __inline int clzSrcT(usrc_t x) { return __builtin_clzll(x); } in clzSrcT()
|
H A D | clzti2.c | 25 return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) + in __clzti2()
|
H A D | floatundixf.c | 29 int clz = __builtin_clzll(a); in __floatundixf()
|
H A D | floatunditf.c | 28 const int exponent = (aWidth - 1) - __builtin_clzll(a); in __floatunditf()
|
H A D | floatdixf.c | 32 int clz = __builtin_clzll(a); in __floatdixf()
|
H A D | floatditf.c | 36 const int exponent = (aWidth - 1) - __builtin_clzll(aAbs); in __floatditf()
|
H A D | int_div_impl.inc | 13 #define clz(a) (sizeof(a) == sizeof(unsigned long long) ? __builtin_clzll(a) : clzsi(a))
|
H A D | fp_lib.h | 61 static inline int rep_clz(rep_t a) { return __builtin_clzll(a); } in rep_clz() 125 return __builtin_clzll(word) + add; in rep_clz()
|
/llvm-project/compiler-rt/test/msan/ |
H A D | test.h | 11 return SANITIZER_WORDSIZE - __builtin_clzll(vma); in SystemVMA()
|
/llvm-project/compiler-rt/test/ubsan/TestCases/Misc/ |
H A D | builtins.cpp | 28 __builtin_clzll(n); in check_clz()
|
/llvm-project/clang/test/CodeGen/ |
H A D | ubsan-builtin-checks.c | 49 __builtin_clzll(n); in check_clz()
|
H A D | mips-count-builtins.c | 27 leading = __builtin_clzll(P); in test_i64()
|
H A D | count-builtins.c | 26 leading = __builtin_clzll(P); in test_i64()
|
/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerBuiltins.h | 28 inline uint32_t Clzll(unsigned long long X) { return __builtin_clzll(X); } in Clzll()
|
/llvm-project/clang/test/AST/ |
H A D | ast-dump-pragma-unroll.cpp | 15 return Flag ? ix & ~(1ULL << __builtin_clzll(ix)) : ix + 1; in value_dependent()
|
/llvm-project/clang/test/CodeGenCXX/ |
H A D | pragma-unroll.cpp | 128 return Flag ? ix & ~(1ULL << __builtin_clzll(ix)) : ix + 1; in value_dependent()
|
H A D | pragma-gcc-unroll.cpp | 128 return Flag ? ix & ~(1ULL << __builtin_clzll(ix)) : ix + 1; in value_dependent()
|
/llvm-project/llvm/include/llvm/ADT/ |
H A D | bit.h | 262 #if __has_builtin(__builtin_clzll) || defined(__GNUC__) 263 return __builtin_clzll(Val);
|
/llvm-project/clang/test/Parser/ |
H A D | pragma-unroll.cpp | 136 return Flag ? ix & ~(1ULL << __builtin_clzll(ix)) : ix + 1; in FailToBuild()
|
/llvm-project/clang/lib/Headers/ |
H A D | ia32intrin.h | 159 return 63 - __builtin_clzll((unsigned long long)__A); in __bsrq()
|
/llvm-project/llvm/lib/Support/BLAKE3/ |
H A D | blake3_impl.h | 96 return 63 ^ __builtin_clzll(x); in highest_one()
|
/llvm-project/libc/src/__support/CPP/ |
H A D | bit.h | 150 ADD_SPECIALIZATION(countl_zero, unsigned long long, __builtin_clzll)
|