Searched refs:AlignedSize (Results 1 - 7 of 7) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp363 unsigned AlignedSize = alignTo(Type.RecordData.size(), 4);
369 DestIdx = Dest.insertRecordAs(H, AlignedSize, DoSerialize);
374 RemapStorage.resize(AlignedSize);
392 unsigned AlignedSize = alignTo(OriginalType.RecordData.size(), 4);
393 assert(Storage.size() == AlignedSize &&
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp322 const uptr AlignedSize = (Alignment > MinAlignment) ? local
325 UNLIKELY(AlignedSize >= MaxAllowedMallocSize)) {
328 reportAllocationSizeTooBig(Size, AlignedSize, MaxAllowedMallocSize);
343 if (PrimaryT::CanAllocate(AlignedSize, MinAlignment)) {
344 BackendSize = AlignedSize;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp773 size_t AlignedSize = alignTo(Size, Mapping.getObjectAlignment()); local
775 Size = AlignedSize;
781 ConstantInt::get(IntptrTy, AlignedSize)});
793 if (Size != AlignedSize) {
799 AlignedSize - 1));
1166 uint64_t AlignedSize = alignTo(Size, Mapping.getObjectAlignment()); local
1169 if (Size != AlignedSize) {
1177 AllocatedType, ArrayType::get(Int8Ty, AlignedSize - Size));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp468 uint64_t AlignedSize = alignTo(Size, kTagGranuleSize); local
469 if (Size == AlignedSize)
480 ArrayType::get(Type::getInt8Ty(F->getContext()), AlignedSize - Size);
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp147 CharUnits AlignedSize = Size.alignTo(Align); local
148 if (AlignedSize > Offset || Offset.alignTo(Align) != Offset)
150 else if (AlignedSize < Offset) {
437 CharUnits AlignedSize = Size.alignTo(Align); local
442 if ((DesiredSize < AlignedSize && !AllowOversized) ||
447 } else if (DesiredSize > AlignedSize) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp1004 uint64_t AlignedSize = 0; local
1011 AlignedSize += computeFragmentSize(Layout, *F);
1016 uint64_t NewSize = needPadding(AlignedOffset, AlignedSize, BoundaryAlignment)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp451 uint64_t AlignedSize = local
453 TotalSize += AlignedSize;

Completed in 83 milliseconds