Lines Matching defs:Align
122 unsigned Align = getContext().getTypeAlign(Ty);
128 Align = Size <= 32 ? 32 : 64;
129 if (Size <= Align) {
191 uint64_t Align = CGF.getContext().getTypeAlign(Ty) / 8;
192 if (Align > 4) {
194 assert((Align & (Align - 1)) == 0 && "Alignment is not power of 2!");
197 llvm::Value *Offset = llvm::ConstantInt::get(CGF.Int64Ty, Align - 1);
207 llvm::Value *Mask = llvm::ConstantInt::get(CGF.Int32Ty, -(int)Align);
217 Address(__overflow_area_pointer, PTy, CharUnits::fromQuantity(Align));
358 // Align the overflow area pointer according to the alignment of the argument