Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h448 inline constexpr bool IsPowerOfTwo(uptr x) { return (x & (x - 1)) == 0; } IsPowerOfTwo() function
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp4802 auto IsPowerOfTwo = [](ConstantSDNode *C) { isDivisorPowerOfTwo() local
27558 auto IsPowerOfTwo = [&Pow2Constants](ConstantSDNode *C) { takeInexpensiveLog2() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp6554 const bool IsPowerOfTwo = all_of(Ops, [](Value *V) { getOperandInfo() local
/freebsd-src/contrib/sqlite3/
H A Dsqlite3.c15278 #define IsPowerOfTwo(X) (((X)&((X)-1))==0) macro
[all...]