Home
last modified time | relevance | path

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

12

/external/compiler-rt/lib/builtins/
Dudivmodti4.c104 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()
Dint_lib.h112 uint32_t __inline __builtin_clzll(uint64_t value) { in __builtin_clzll() function
119 uint32_t __inline __builtin_clzll(uint64_t value) { in __builtin_clzll() function
130 #define __builtin_clzl __builtin_clzll
Dclzti2.c29 return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) + in __clzti2()
Dfloatundixf.c34 int clz = __builtin_clzll(a); in __floatundixf()
Dfloatunditf.c28 const int exponent = (aWidth - 1) - __builtin_clzll(a); in __floatunditf()
Dfloatdixf.c37 int clz = __builtin_clzll(a); in __floatdixf()
Dfloatditf.c37 const int exponent = (aWidth - 1) - __builtin_clzll(aAbs); in __floatditf()
Dfloatundisf.c33 int sd = N - __builtin_clzll(a); /* number of significant digits */ in ARM_EABI_FNALIAS()
Dfloatdisf.c35 int sd = N - __builtin_clzll(a); /* number of significant digits */ in ARM_EABI_FNALIAS()
Dfloatundidf.c60 int sd = N - __builtin_clzll(a); /* number of significant digits */
Dfloatdidf.c60 int sd = N - __builtin_clzll(a); /* number of significant digits */
/external/clang/lib/Headers/
Dlzcntintrin.h56 return __X ? __builtin_clzll(__X) : 64; in __lzcnt64()
62 return __X ? __builtin_clzll(__X) : 64; in _lzcnt_u64()
/external/libcxx/include/support/ibm/
Dsupport.h41 #define __builtin_clzll(x) __cntlz8(x) macro
43 #define __builtin_clzl(x) __builtin_clzll(x)
/external/compiler-rt/test/msan/
Dtest.h11 return SANITIZER_WORDSIZE - __builtin_clzll(vma); in SystemVMA()
/external/clang/test/CodeGen/
Dmips-count-builtins.c27 leading = __builtin_clzll(P); in test_i64()
Dcount-builtins.c26 leading = __builtin_clzll(P); in test_i64()
/external/flac/libFLAC/include/private/
Dbitmath.h150 return sizeof(FLAC__uint64) * CHAR_BIT - 1 - __builtin_clzll(v); in FLAC__bitmath_ilog2_wide()
/external/vixl/src/vixl/
Dcompiler-intrinsics.h120 return (value == 0) ? 64 : __builtin_clzll(value);
/external/libhevc/common/x86/
Dihevc_platform_macros.h125 r = 63 - __builtin_clzll(word); \
/external/libcxx/include/support/win32/
Dsupport.h168 _LIBCPP_ALWAYS_INLINE int __builtin_clzll(unsigned long long mask) in __builtin_clzll() function
/external/libhevc/common/arm/
Dihevc_platform_macros.h173 r = 63 - __builtin_clzll(word); \
/external/clang/test/Sema/
Dconstant-builtins-2.c120 char clz6[__builtin_clzll(0xFFLL) == BITSIZE(long long) - 8 ? 1 : -1];
/external/valgrind/coregrind/
Dm_compiler.c96 __builtin_clzll(ULong x) in __builtin_clzll() function
/external/llvm/include/llvm/Support/
DMathExtras.h157 #if __has_builtin(__builtin_clzll) || LLVM_GNUC_PREREQ(4, 0, 0)
158 return __builtin_clzll(Val);
/external/v8/src/base/
Dbits.h82 return value ? __builtin_clzll(value) : 64; in CountLeadingZeros64()

12