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

References

projects/compiler-rt/lib/scudo/standalone/quarantine.h
   28     Count = 1;
   38     Batch[Count++] = Ptr;
   43     return Count + From->Count <= MaxCount;
   43     return Count + From->Count <= MaxCount;
   50     for (uptr I = 0; I < From->Count; ++I)
   51       Batch[Count + I] = From->Batch[I];
   52     Count += From->Count;
   52     Count += From->Count;
   55     From->Count = 0;
   59   void shuffle(u32 State) { ::scudo::shuffle(Batch, Count, &State); }
   79     if (List.empty() || List.back()->Count == QuarantineBatch::MaxCount) {
  142       TotalQuarantineChunks += Batch.Count;
  277       for (uptr I = 0, Count = B->Count; I < Count; I++) {