reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/scudo/scudo_allocator.cpp
  312     if (UNLIKELY(Alignment > MaxAlignment)) {
  315       reportAllocationAlignmentTooBig(Alignment, MaxAlignment);
  317     if (UNLIKELY(Alignment < MinAlignment))
  318       Alignment = MinAlignment;
  322     const uptr AlignedSize = (Alignment > MinAlignment) ?
  323         NeededSize + (Alignment - Chunk::getHeaderSize()) : NeededSize;
  354       BackendPtr = Backend.allocateSecondary(BackendSize, Alignment);
  369     if (UNLIKELY(!IsAligned(UserPtr, Alignment))) {
  374       const uptr AlignedUserPtr = RoundUpTo(UserPtr, Alignment);