Home
last modified time | relevance | path

Searched refs:__builtin_clzl (Results 1 – 18 of 18) sorted by relevance

/external/libcxx/include/support/ibm/
Dsupport.h43 #define __builtin_clzl(x) __builtin_clzll(x) macro
45 #define __builtin_clzl(x) __builtin_clz(x) macro
/external/libcxx/include/support/win32/
Dsupport.h190 _LIBCPP_ALWAYS_INLINE int __builtin_clzl(unsigned long mask) in __builtin_clzl() function
202 return __builtin_clzl(x); in __builtin_clz()
/external/libopus/celt/
Decintrin.h73 # define EC_CLZ(_x) (__builtin_clzl(_x))
/external/compiler-rt/lib/builtins/
Dfp_extend.h33 return __builtin_clzl(a); in src_rep_t_clz()
Dfp_lib.h71 return __builtin_clzl(a); in rep_clz()
/external/fio/t/
Dlfsr-test.c69 printf("Size is %u\n", 64 - __builtin_clzl(fl->cached_bit)); in main()
/external/jemalloc/include/jemalloc/internal/
Dutil.h208 return (((8 << LG_SIZEOF_PTR) - 1) - __builtin_clzl(x)); in lg_floor()
Djemalloc_internal_defs.h.in54 * Defined if __builtin_clz() and __builtin_clzl() are available.
/external/clang/test/Sema/
Dconstant-builtins-2.c119 char clz5[__builtin_clzl(0xFL) == BITSIZE(long) - 4 ? 1 : -1];
/external/freetype/include/internal/
Dftcalc.h341 #define FT_MSB( x ) ( 31 - __builtin_clzl( x ) )
/external/pdfium/third_party/freetype/include/internal/
Dftcalc.h341 #define FT_MSB( x ) ( 31 - __builtin_clzl( x ) )
/external/clang/lib/Headers/
Darm_acle.h144 return __builtin_clzl(t); in __clzl()
DIntrin.h513 *_Index = 31 - __builtin_clzl(_Mask); in _BitScanReverse()
/external/mesa3d/src/mesa/main/
Dimports.h485 return (1 + y) << ((__builtin_clzl(x - y) ^ 63)); in _mesa_next_pow_two_64()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.h346 up = SANITIZER_WORDSIZE - 1 - __builtin_clzl(x); in MostSignificantSetBitIndex()
/external/jemalloc/
Dconfigure.ac1370 dnl Check for __builtin_clz() and __builtin_clzl().
1382 int y = __builtin_clzl(x);
/external/clang/include/clang/Basic/
DBuiltins.def383 BUILTIN(__builtin_clzl , "iULi" , "nc")
/external/libcxx/include/
Dalgorithm792 return static_cast<unsigned long>(__builtin_clzl (__x));