Searched defs:IsPowerOfTwo (Results 1 – 3 of 3) sorted by relevance
/llvm-project/compiler-rt/lib/sanitizer_common/ | ||
H A D | sanitizer_common.h | 447 inline constexpr bool IsPowerOfTwo(uptr x) { return (x & (x - 1)) == 0; } IsPowerOfTwo() function |
/llvm-project/llvm/lib/CodeGen/SelectionDAG/ | ||
H A D | DAGCombiner.cpp | 4785 auto IsPowerOfTwo = [](ConstantSDNode *C) { isDivisorPowerOfTwo() local |
/llvm-project/llvm/lib/Transforms/Vectorize/ | ||
H A D | SLPVectorizer.cpp | 7669 const bool IsPowerOfTwo = all_of(Ops, [](Value *V) { getOperandInfo() local |