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

References

projects/compiler-rt/lib/scudo/standalone/secondary.cpp
   30       roundUpTo(Size + LargeBlock::getHeaderSize(), PageSize) + 2 * PageSize;
   30       roundUpTo(Size + LargeBlock::getHeaderSize(), PageSize) + 2 * PageSize;
   37   uptr CommitBase = MapBase + PageSize;
   42   if (UNLIKELY(AlignmentHint >= PageSize)) {
   46     CommitBase = roundUpTo(MapBase + PageSize + 1, AlignmentHint) - PageSize;
   46     CommitBase = roundUpTo(MapBase + PageSize + 1, AlignmentHint) - PageSize;
   47     const uptr NewMapBase = CommitBase - PageSize;
   55     const uptr NewMapEnd = CommitBase + PageSize +
   56                            roundUpTo((Size - AlignmentHint), PageSize) +
   57                            PageSize;
   65   const uptr CommitSize = MapEnd - PageSize - CommitBase;