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
  159   BytesRequired = MaxSimultaneousAllocations * sizeof(*FreeSlots);
  160   FreeSlots = reinterpret_cast<size_t *>(mapMemory(BytesRequired));
  161   markReadWrite(FreeSlots, BytesRequired);
  297   size_t SlotIndex = FreeSlots[ReservedIndex];
  298   FreeSlots[ReservedIndex] = FreeSlots[--FreeSlotsLength];
  298   FreeSlots[ReservedIndex] = FreeSlots[--FreeSlotsLength];
  304   FreeSlots[FreeSlotsLength++] = SlotIndex;