Lines Matching +full:clang +full:- +full:8
32 #include "globals-vixl.h"
55 // clang-format off
61 // clang-format on
65 // https://gcc.gnu.org/onlinedocs/gcc-$MAJOR.$MINOR.$PATCHLEVEL/gcc//Other-Builtins.html
67 // clang-format off
73 // clang-format on
79 // clang-format off
86 // clang-format on
93 return (value != 0) && ((value & (value - 1)) == 0); in IsPowerOf2()
111 inline int CountLeadingSignBits(V value, int width = (sizeof(V) * 8)) {
116 int result = __builtin_clrsbll(value) - (ll_width - width);
128 inline int CountLeadingZeros(V value, int width = (sizeof(V) * 8)) {
141 inline int CountSetBits(V value, int width = (sizeof(V) * 8)) {
154 inline int CountTrailingZeros(V value, int width = (sizeof(V) * 8)) {