Searched refs:MinAlignment (Results 1 – 7 of 7) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/ |
| H A D | scudo_allocator.cpp | 85 return IsAligned(reinterpret_cast<uptr>(Ptr), MinAlignment); in isAligned() 311 if (UNLIKELY(Alignment < MinAlignment)) in allocate() 312 Alignment = MinAlignment; in allocate() 324 const uptr NeededSize = RoundUpTo(Size ? Size : 1, MinAlignment) + in allocate() 326 const uptr AlignedSize = (Alignment > MinAlignment) ? in allocate() 347 if (PrimaryT::CanAllocate(AlignedSize, MinAlignment)) { in allocate() 500 void *NewPtr = allocate(NewSize, MinAlignment, FromMalloc); in reallocate() 534 void *NewPtr = allocate(NewSize, MinAlignment, FromMalloc); in reallocate() 570 return allocate(NMemB * Size, MinAlignment, FromMalloc, true); in calloc() 615 1 << MostSignificantSetBitIndex(SizeClassMap::kMaxSize - MinAlignment); in performSanityChecks() [all …]
|
| H A D | scudo_allocator_secondary.h | 58 return RoundUpTo(sizeof(Header), MinAlignment); in getHeaderSize() 79 if (UNLIKELY(Alignment > MinAlignment)) in Allocate() 104 if (UNLIKELY(Alignment > MinAlignment)) { in Allocate()
|
| H A D | scudo_allocator.h | 58 const uptr MinAlignment = 1 << MinAlignmentLog; variable 69 return RoundUpTo(sizeof(PackedHeader), MinAlignment); in getHeaderSize()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | combined.h | 289 uptr Alignment = MinAlignment, 299 if (Alignment < MinAlignment) 300 Alignment = MinAlignment; 327 roundUpTo(Size, MinAlignment) + 328 ((Alignment > MinAlignment) ? Alignment : Chunk::getHeaderSize()); 504 UNUSED uptr Alignment = MinAlignment) { 530 if (UNLIKELY(!isAligned(reinterpret_cast<uptr>(Ptr), MinAlignment))) 841 if (!Ptr || !isAligned(reinterpret_cast<uptr>(Ptr), MinAlignment)) in isOwned() 955 static const uptr MinAlignment = 1UL << MinAlignmentLog; variable 960 static_assert(MinAlignment >= sizeof(Chunk::PackedHeader), [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUInstructions.td | 359 int MinAlignment = Bytes;
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | TargetSelectionDAG.td | 821 int MinAlignment = ?;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMInstrMVE.td | 7077 let MinAlignment = 2 in {
|