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