HomeSort by relevance Sort by last modified time
    Searched refs:__builtin_clzll (Results 26 - 50 of 100) sorted by null

12 3 4

  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/
support.h 41 #define __builtin_clzll(x) __cntlz8(x) macro
43 #define __builtin_clzl(x) __builtin_clzll(x)
  /external/clang/test/CodeGen/
count-builtins.c 26 leading = __builtin_clzll(P);
  /external/compiler-rt/lib/builtins/
floatunditf.c 28 const int exponent = (aWidth - 1) - __builtin_clzll(a);
floatditf.c 37 const int exponent = (aWidth - 1) - __builtin_clzll(aAbs);
floatdixf.c 37 int clz = __builtin_clzll(a);
floatundisf.c 33 int sd = N - __builtin_clzll(a); /* number of significant digits */
int_lib.h 112 uint32_t __inline __builtin_clzll(uint64_t value) { function
119 uint32_t __inline __builtin_clzll(uint64_t value) { function
130 #define __builtin_clzl __builtin_clzll
floatdisf.c 35 int sd = N - __builtin_clzll(a); /* number of significant digits */
udivmodti4.c 104 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high);
144 sr = 1 + n_udword_bits + __builtin_clzll(d.s.low)
145 - __builtin_clzll(n.s.high);
179 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high);
floatdidf.c 60 int sd = N - __builtin_clzll(a); /* number of significant digits */
floatundidf.c 60 int sd = N - __builtin_clzll(a); /* number of significant digits */
  /external/flac/libFLAC/include/private/
bitmath.h 150 return sizeof(FLAC__uint64) * CHAR_BIT - 1 - __builtin_clzll(v);
  /external/libhevc/common/x86/
ihevc_platform_macros.h 125 r = 63 - __builtin_clzll(word); \
  /external/vixl/src/vixl/
compiler-intrinsics.h 120 return (value == 0) ? 64 : __builtin_clzll(value);
  /system/core/include/utils/
BitSet.h 220 static inline uint32_t firstMarkedBit(uint64_t value) { return __builtin_clzll(value); }
226 static inline uint32_t firstUnmarkedBit(uint64_t value) { return __builtin_clzll(~ value); }
  /external/libcxx/include/support/win32/
support.h 168 _LIBCPP_ALWAYS_INLINE int __builtin_clzll(unsigned long long mask) function
185 #error "Implementation of __builtin_clzll required"
  /external/libhevc/common/arm/
ihevc_platform_macros.h 173 r = 63 - __builtin_clzll(word); \
  /external/valgrind/coregrind/
m_compiler.c 96 __builtin_clzll(ULong x) function
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
support.h 165 _LIBCPP_ALWAYS_INLINE int __builtin_clzll(unsigned long long mask) function
182 #error "Implementation of __builtin_clzll required"
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
hwint.h 204 return __builtin_clzll (x);
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
support.h 165 _LIBCPP_ALWAYS_INLINE int __builtin_clzll(unsigned long long mask) function
182 #error "Implementation of __builtin_clzll required"
  /toolchain/binutils/binutils-2.25/gas/
sb.c 142 : __builtin_clzll ((long long) want)));
  /external/clang/lib/Headers/
arm_acle.h 149 return __builtin_clzll(t);
  /external/clang/test/Sema/
constant-builtins-2.c 120 char clz6[__builtin_clzll(0xFFLL) == BITSIZE(long long) - 8 ? 1 : -1];
  /external/v8/src/base/
bits.h 82 return value ? __builtin_clzll(value) : 64;

Completed in 955 milliseconds

12 3 4