Home
last modified time | relevance | path

Searched refs:__builtin_popcountl (Results 1 – 5 of 5) 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/libcxx/include/support/win32/
Dsupport.h99 _LIBCPP_ALWAYS_INLINE int __builtin_popcountl(unsigned long x) in __builtin_popcountl() function
/external/clang/include/clang/Basic/
DBuiltins.def398 BUILTIN(__builtin_popcountl , "iULi" , "nc")
/external/libcxx/include/
Dalgorithm803 …IBCPP_INLINE_VISIBILITY int __pop_count(unsigned long __x) {return __builtin_popcountl (__x);}