Home
last modified time | relevance | path

Searched refs:AlignedSize (Results 1 – 17 of 17) sorted by relevance

/external/google-breakpad/src/common/linux/
Delf_core_dump.cc71 return content_.Subrange(AlignedSize(sizeof(Nhdr) + header->n_namesz), in GetDescription()
81 size_t next_offset = AlignedSize(sizeof(Nhdr) + header->n_namesz); in GetNextNote()
82 next_offset = AlignedSize(next_offset + header->n_descsz); in GetNextNote()
90 size_t ElfCoreDump::Note::AlignedSize(size_t size) { in AlignedSize() function in google_breakpad::ElfCoreDump::Note
Delf_core_dump.h98 static size_t AlignedSize(size_t size);
/external/llvm-project/compiler-rt/lib/scudo/
Dscudo_allocator.cpp323 const uptr AlignedSize = (Alignment > MinAlignment) ? in allocate() local
326 UNLIKELY(AlignedSize >= MaxAllowedMallocSize)) { in allocate()
329 reportAllocationSizeTooBig(Size, AlignedSize, MaxAllowedMallocSize); in allocate()
344 if (PrimaryT::CanAllocate(AlignedSize, MinAlignment)) { in allocate()
345 BackendSize = AlignedSize; in allocate()
/external/llvm-project/llvm/lib/DebugInfo/CodeView/
DTypeStreamMerger.cpp363 unsigned AlignedSize = alignTo(Type.RecordData.size(), 4); in remapType() local
369 DestIdx = Dest.insertRecordAs(H, AlignedSize, DoSerialize); in remapType()
374 RemapStorage.resize(AlignedSize); in remapType()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DHWAddressSanitizer.cpp773 size_t AlignedSize = alignTo(Size, Mapping.getObjectAlignment()); in tagAlloca() local
775 Size = AlignedSize; in tagAlloca()
781 ConstantInt::get(IntptrTy, AlignedSize)}); in tagAlloca()
793 if (Size != AlignedSize) { in tagAlloca()
799 AlignedSize - 1)); in tagAlloca()
1166 uint64_t AlignedSize = alignTo(Size, Mapping.getObjectAlignment()); in sanitizeFunction() local
1169 if (Size != AlignedSize) { in sanitizeFunction()
1177 AllocatedType, ArrayType::get(Int8Ty, AlignedSize - Size)); in sanitizeFunction()
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
DHWAddressSanitizer.cpp880 size_t AlignedSize = alignTo(Size, Mapping.getObjectAlignment()); in tagAlloca() local
882 Size = AlignedSize; in tagAlloca()
888 ConstantInt::get(IntptrTy, AlignedSize)}); in tagAlloca()
900 if (Size != AlignedSize) { in tagAlloca()
906 AlignedSize - 1)); in tagAlloca()
1271 uint64_t AlignedSize = alignTo(Size, Mapping.getObjectAlignment()); in sanitizeFunction() local
1274 if (Size != AlignedSize) { in sanitizeFunction()
1282 AllocatedType, ArrayType::get(Int8Ty, AlignedSize - Size)); in sanitizeFunction()
/external/llvm-project/openmp/libomptarget/src/
Domptarget.cpp900 const int64_t AlignedSize; member
907 HstPtrEnd(HstPtrBegin + Size), AlignedSize(Size + Size % Alignment), in FirstPrivateArgInfoTy()
985 FirstPrivateArgSize += FirstPrivateArgInfo.back().AlignedSize; in addArg()
1002 Itr = std::next(Itr, Info.AlignedSize); in packAndTransfer()
1027 TP += Info.AlignedSize; in packAndTransfer()
/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITCAPITest.cpp100 uintptr_t AlignedSize = (Size + Alignment - 1) / Alignment * Alignment; in useSpace() local
102 *UsedSize = AlignedBegin + AlignedSize; in useSpace()
/external/llvm-project/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITCAPITest.cpp100 uintptr_t AlignedSize = (Size + Alignment - 1) / Alignment * Alignment; in useSpace() local
102 *UsedSize = AlignedBegin + AlignedSize; in useSpace()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64StackTagging.cpp468 uint64_t AlignedSize = alignTo(Size, kTagGranuleSize); in alignAndPadAlloca() local
469 if (Size == AlignedSize) in alignAndPadAlloca()
480 ArrayType::get(Type::getInt8Ty(F->getContext()), AlignedSize - Size); in alignAndPadAlloca()
/external/llvm-project/llvm/lib/Target/AArch64/
DAArch64StackTagging.cpp492 uint64_t AlignedSize = alignTo(Size, kTagGranuleSize); in alignAndPadAlloca() local
493 if (Size == AlignedSize) in alignAndPadAlloca()
504 ArrayType::get(Type::getInt8Ty(F->getContext()), AlignedSize - Size); in alignAndPadAlloca()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCAssembler.cpp1004 uint64_t AlignedSize = 0; in relaxBoundaryAlign() local
1011 AlignedSize += computeFragmentSize(Layout, *F); in relaxBoundaryAlign()
1016 uint64_t NewSize = needPadding(AlignedOffset, AlignedSize, BoundaryAlignment) in relaxBoundaryAlign()
/external/llvm-project/llvm/lib/MC/
DMCAssembler.cpp1072 uint64_t AlignedSize = 0; in relaxBoundaryAlign() local
1075 AlignedSize += computeFragmentSize(Layout, *F); in relaxBoundaryAlign()
1078 uint64_t NewSize = needPadding(AlignedOffset, AlignedSize, BoundaryAlignment) in relaxBoundaryAlign()
/external/llvm-project/clang/lib/CodeGen/
DCGExprConstant.cpp147 CharUnits AlignedSize = Size.alignTo(Align); in add() local
148 if (AlignedSize > Offset || Offset.alignTo(Align) != Offset) in add()
150 else if (AlignedSize < Offset) { in add()
446 CharUnits AlignedSize = Size.alignTo(Align); in buildFrom() local
451 if ((DesiredSize < AlignedSize && !AllowOversized) || in buildFrom()
456 } else if (DesiredSize > AlignedSize) { in buildFrom()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp346 uint64_t AlignedSize = in computeAllocationSizeForSections() local
348 TotalSize += AlignedSize; in computeAllocationSizeForSections()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp451 uint64_t AlignedSize = in computeAllocationSizeForSections() local
453 TotalSize += AlignedSize; in computeAllocationSizeForSections()
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp461 uint64_t AlignedSize = in computeAllocationSizeForSections() local
463 TotalSize += AlignedSize; in computeAllocationSizeForSections()