Home
last modified time | relevance | path

Searched refs:__builtin_ctz (Results 1 – 25 of 38) sorted by relevance

12

/external/compiler-rt/lib/builtins/
Dffsdi2.c30 return __builtin_ctz(x.s.high) + (1 + sizeof(si_int) * CHAR_BIT); in __ffsdi2()
32 return __builtin_ctz(x.s.low) + 1; in __ffsdi2()
Dctzdi2.c27 return __builtin_ctz((x.s.high & f) | (x.s.low & ~f)) + in __ctzdi2()
Dudivmoddi4.c96 return n.s.high >> __builtin_ctz(d.s.high); in __udivmoddi4()
133 sr = __builtin_ctz(d.s.low); in __udivmoddi4()
Dint_lib.h97 uint32_t __inline __builtin_ctz(uint32_t value) { in __builtin_ctz() function
/external/clang/test/Sema/
Dconstant-builtins-2.c125 char ctz1[__builtin_ctz(1) == 0 ? 1 : -1];
126 char ctz2[__builtin_ctz(8) == 3 ? 1 : -1];
127 char ctz3[__builtin_ctz(1 << (BITSIZE(int) - 1)) == BITSIZE(int) - 1 ? 1 : -1];
128 int ctz4 = __builtin_ctz(0); // expected-error {{not a compile-time constant}}
/external/libcxx/include/support/ibm/
Dsupport.h31 #define __builtin_ctz(x) __cnttz4(x) macro
36 #define __builtin_ctzl(x) __builtin_ctz(x)
/external/vixl/src/vixl/
Dcompiler-intrinsics.h56 #define COMPILER_HAS_BUILTIN_CTZ (__has_builtin(__builtin_ctz))
144 return (value == 0) ? 32 : __builtin_ctz(static_cast<unsigned>(value));
/external/clang/test/CodeGen/
Dbuiltin-count-zeros.c4 int a(int a) {return __builtin_ctz(a) + __builtin_clz(a);} in a()
Dmips-count-builtins.c19 trailing = __builtin_ctz(P); in test_i32()
Dcount-builtins.c16 trailing = __builtin_ctz(P); in test_i32()
/external/libmpeg2/common/x86/
Dicv_platform_macros.h62 index = __builtin_ctz(u4_word); in CTZ()
/external/libavc/common/mips/
Dih264_platform_macros.h87 index = __builtin_ctz(u4_word); in CTZ()
/external/libmpeg2/common/mips/
Dicv_platform_macros.h62 index = __builtin_ctz(u4_word); in CTZ()
/external/libhevc/common/mips/
Dihevc_platform_macros.h81 index = __builtin_ctz(u4_word); in CTZ()
/external/libavc/common/x86/
Dih264_platform_macros.h86 index = __builtin_ctz(u4_word); in CTZ()
/external/clang/lib/Headers/
Dbmiintrin.h94 return __X ? __builtin_ctz(__X) : 32; in __tzcnt_u32()
/external/libavc/common/armv8/
Dih264_platform_macros.h145 index = __builtin_ctz(u4_word); in CTZ()
/external/libavc/common/arm/
Dih264_platform_macros.h145 index = __builtin_ctz(u4_word); in CTZ()
/external/libhevc/common/x86/
Dihevc_platform_macros.h94 index = __builtin_ctz(u4_word); in CTZ()
/external/libcxx/include/support/win32/
Dsupport.h158 _LIBCPP_ALWAYS_INLINE int __builtin_ctz(unsigned int mask) in __builtin_ctz() function
/external/libhevc/common/arm/
Dihevc_platform_macros.h141 index = __builtin_ctz(u4_word); in CTZ()
/external/valgrind/coregrind/
Dm_compiler.c118 __builtin_ctz(UInt x) in __builtin_ctz() function
/external/llvm/include/llvm/Support/
DMathExtras.h72 #if __has_builtin(__builtin_ctz) || LLVM_GNUC_PREREQ(4, 0, 0)
73 return __builtin_ctz(Val);
/external/v8/src/base/
Dbits.h100 return value ? __builtin_ctz(value) : 32; in CountTrailingZeros32()
/external/v8/include/
Dv8config.h223 # define V8_HAS_BUILTIN_CTZ (__has_builtin(__builtin_ctz))

12