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

References

projects/compiler-rt/lib/gwp_asan/guarded_pool_allocator.cpp
  333   if (Ptr <= GuardedPagePool + PageSize)
  335   if (Ptr > GuardedPagePoolEnd - PageSize)
  338   if (!isGuardPage(Ptr))
  339     return addrToSlot(Ptr);
  341   if (Ptr % PageSize <= PageSize / 2)
  342     return addrToSlot(Ptr - PageSize); // Round down.
  343   return addrToSlot(Ptr + PageSize);   // Round up.