Searched refs:MinAlignment (Results 1 – 2 of 2) sorted by relevance
/external/compiler-rt/lib/scudo/ |
D | scudo_allocator.cpp | 266 static const uptr MinAlignment = 1 << MinAlignmentLog; member 325 if (Alignment < MinAlignment) in allocate() 326 Alignment = MinAlignment; in allocate() 331 uptr RoundedSize = RoundUpTo(Size, MinAlignment); in allocate() 333 if (Alignment > MinAlignment) in allocate() 341 Ptr = BackendAllocator.Allocate(&Cache, NeededSize, MinAlignment); in allocate() 345 MinAlignment); in allocate() 385 if (!IsAligned(ChunkBeg, MinAlignment)) { in deallocate() 486 void *NewPtr = allocate(NewSize, MinAlignment, FromMalloc); in reallocate() 511 void *Ptr = allocate(Total, MinAlignment, FromMalloc); in calloc() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 3030 unsigned MinAlignment; in mergeConditionalStoreToAddress() local 3032 std::tie(MinAlignment, MaxAlignment) = std::minmax(PAlignment, QAlignment); in mergeConditionalStoreToAddress() 3037 if (MinAlignment != 0) { in mergeConditionalStoreToAddress() 3039 SI->setAlignment(MinAlignment); in mergeConditionalStoreToAddress()
|