Searched refs:__builtin_popcountl (Results 1 – 5 of 5) sorted by relevance
25 #define __builtin_popcountl(x) __builtin_popcountll(x) macro27 #define __builtin_popcountl(x) __builtin_popcount(x) macro
137 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];
99 _LIBCPP_ALWAYS_INLINE int __builtin_popcountl(unsigned long x) in __builtin_popcountl() function
398 BUILTIN(__builtin_popcountl , "iULi" , "nc")
803 …IBCPP_INLINE_VISIBILITY int __pop_count(unsigned long __x) {return __builtin_popcountl (__x);}