Searched defs:IsPowerOfTwo (Results 1 – 5 of 5) sorted by relevance
229 struct IsPowerOfTwo { struct230 static const bool value = !(N & (N - 1));
440 INLINE bool IsPowerOfTwo(uptr x) { in IsPowerOfTwo() function
10101 static bool IsPowerOfTwo(unsigned x) { in IsPowerOfTwo() function
12064 #define IsPowerOfTwo(X) (((X)&((X)-1))==0) macro