Searched defs:IsPow2 (Results 1 – 2 of 2) sorted by relevance
/llvm-project/libc/src/__support/ | ||
H A D | freelist_heap.h | 27 inline constexpr bool IsPow2(size_t x) { return x && (x & (x - 1)) == 0; } IsPow2() function |
/llvm-project/llvm/lib/MC/MCParser/ | ||
H A D | AsmParser.cpp | 2068 bool IsPow2 = !getContext().getAsmInfo()->getAlignmentIsInBytes(); parseStatement() local |