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

References

projects/compiler-rt/lib/scudo/scudo_allocator_secondary.h
   82     ReservedSize = RoundUpTo(ReservedSize, PageSize);
   84     ReservedSize += 2 * PageSize;
   96     uptr CommittedBeg = ReservedBeg + PageSize;
   99     uptr CommittedEnd = RoundUpTo(UserEnd, PageSize);
  107         CommittedBeg = RoundDownTo(UserBeg - HeadersSize, PageSize);
  108         const uptr NewReservedBeg = CommittedBeg - PageSize;
  115         CommittedEnd = RoundUpTo(UserEnd, PageSize);
  117       const uptr NewReservedEnd = CommittedEnd + PageSize;