Home
last modified time | relevance | path

Searched refs:AlignLog (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DAddress.h60 auto AlignLog = llvm::Log2_64(Alignment.getQuantity()); in AddressImpl() local
61 assert(AlignLog < (1 << 6) && "cannot fit alignment into 6 bits"); in AddressImpl()
62 this->Pointer.setInt(AlignLog >> 3); in AddressImpl()
63 this->ElementType.setInt(AlignLog & 7); in AddressImpl()
68 unsigned AlignLog = (Pointer.getInt() << 3) | ElementType.getInt(); in getAlignment() local
69 return CharUnits::fromQuantity(CharUnits::QuantityType(1) << AlignLog); in getAlignment()
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dsecondary_test.cpp127 for (scudo::uptr AlignLog = FIRST_32_SECOND_64(3, 4); AlignLog <= 16; in TEST_F() local
128 AlignLog++) { in TEST_F()
129 const scudo::uptr Align = 1U << AlignLog; in TEST_F()
H A Dcombined_test.cpp153 for (scudo::uptr AlignLog = MinAlignLog; AlignLog <= 16U; AlignLog++) { in BasicTest() local
154 const scudo::uptr Align = 1U << AlignLog; in BasicTest()