Searched defs:IsPowerOfTwo (Results 1 – 5 of 5) sorted by relevance
370 INLINE bool IsPowerOfTwo(uptr x) { in IsPowerOfTwo() function
374 INLINE bool IsPowerOfTwo(uptr x) { in IsPowerOfTwo() function
423 inline constexpr bool IsPowerOfTwo(uptr x) { return (x & (x - 1)) == 0; } in IsPowerOfTwo() function
4185 auto IsPowerOfTwo = [](ConstantSDNode *C) { in visitSDIVLike() local
15232 #define IsPowerOfTwo(X) (((X)&((X)-1))==0) macro