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

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_quarantine.h
   35     count = 1;
   46     CHECK_LT(count, kSize);
   47     batch[count++] = ptr;
   52     return count + from->count <= kSize;
   52     return count + from->count <= kSize;
   56     CHECK_LE(count + from->count, kSize);
   56     CHECK_LE(count + from->count, kSize);
   59     for (uptr i = 0; i < from->count; ++i)
   60       batch[count + i] = from->batch[i];
   61     count += from->count;
   61     count += from->count;
   64     from->count = 0;
  189       for (uptr i = 0, count = b->count; i < count; i++) {
  222     if (list_.empty() || list_.back()->count == QuarantineBatch::kSize) {
  262         CHECK_EQ(extracted->count, 0);
  285       total_quarantine_chunks += (*it).count;