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

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_allocator_secondary.h
   89       map_size += alignment;
   91     if (map_size < size) {
   94              SanitizerToolName, map_size, alignment);
   98         MmapOrDieOnFatalError(map_size, SecondaryAllocatorName));
  102     MapUnmapCallback().OnMap(map_beg, map_size);
  103     uptr map_end = map_beg + map_size;
  114     h->map_size = map_size;
  115     uptr size_log = MostSignificantSetBitIndex(map_size);
  125       stats.currently_allocated += map_size;
  128       stat->Add(AllocatorStatAllocated, map_size);
  129       stat->Add(AllocatorStatMapped, map_size);