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

/external/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp78 // multiples of MinAlignment. See comment about its
266 static const uptr MinAlignment = 1 << MinAlignmentLog; member in struct:__scudo::Allocator
325 if (Alignment < MinAlignment)
326 Alignment = MinAlignment;
331 uptr RoundedSize = RoundUpTo(Size, MinAlignment);
333 if (Alignment > MinAlignment)
341 Ptr = BackendAllocator.Allocate(&Cache, NeededSize, MinAlignment);
345 MinAlignment);
385 if (!IsAligned(ChunkBeg, MinAlignment)) {
486 void *NewPtr = allocate(NewSize, MinAlignment, FromMallo
[all...]

Completed in 55 milliseconds