Home
last modified time | relevance | path

Searched refs:__builtin_popcountl (Results 1 – 7 of 7) sorted by relevance

/external/libcxx/include/support/ibm/
Dsupport.h25 #define __builtin_popcountl(x) __builtin_popcountll(x) macro
27 #define __builtin_popcountl(x) __builtin_popcount(x) macro
/external/clang/test/Sema/
Dconstant-builtins-2.c137 char popcount5[__builtin_popcountl(0L) == 0 ? 1 : -1];
138 char popcount6[__builtin_popcountl(0xF0F0L) == 8 ? 1 : -1];
139 char popcount7[__builtin_popcountl(~0L) == BITSIZE(long) ? 1 : -1];
/external/mesa3d/m4/
Dax_gcc_builtin.m471 # __builtin_popcountl
146 [__builtin_popcountl], [$1(0)],
/external/llvm/lib/Fuzzer/
DFuzzerTracePC.cpp31 Res += __builtin_popcountl(Map[i] |= Other.Map[i]); in MergeFrom()
/external/libcxx/include/support/win32/
Dsupport.h81 _LIBCPP_ALWAYS_INLINE int __builtin_popcountl(unsigned long x) in __builtin_popcountl() function
/external/clang/include/clang/Basic/
DBuiltins.def404 BUILTIN(__builtin_popcountl , "iULi" , "nc")
/external/libcxx/include/
Dalgorithm829 …IBCPP_INLINE_VISIBILITY int __pop_count(unsigned long __x) {return __builtin_popcountl (__x);}