Searched refs:AlignLog (Results 1 – 3 of 3) sorted by relevance
60 auto AlignLog = llvm::Log2_64(Alignment.getQuantity()); in AddressImpl() local61 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() local69 return CharUnits::fromQuantity(CharUnits::QuantityType(1) << AlignLog); in getAlignment()
127 for (scudo::uptr AlignLog = FIRST_32_SECOND_64(3, 4); AlignLog <= 16; in TEST_F() local128 AlignLog++) { in TEST_F()129 const scudo::uptr Align = 1U << AlignLog; in TEST_F()
153 for (scudo::uptr AlignLog = MinAlignLog; AlignLog <= 16U; AlignLog++) { in BasicTest() local154 const scudo::uptr Align = 1U << AlignLog; in BasicTest()