Home
last modified time | relevance | path

Searched defs:IsPowerOfTwo (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libc/test/src/string/memory_utils/
H A Dutils_test.cpp27 TEST(LlvmLibcUtilsTest, IsPowerOfTwo) { in TEST() argument
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h434 inline constexpr bool IsPowerOfTwo(uptr x) { return (x & (x - 1)) == 0; } in IsPowerOfTwo() function
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp4368 auto IsPowerOfTwo = [](ConstantSDNode *C) { in isDivisorPowerOfTwo() local