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

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_allocator_local_cache.h
   37     if (UNLIKELY(c->count == 0)) {
   42     CompactPtrT chunk = c->chunks[--c->count];
   55     if (UNLIKELY(c->count == c->max_count))
   60     c->chunks[c->count++] = chunk;
   67       while (c->count > 0)
   68         Drain(c, allocator, i, c->count);
  105     c->count = num_requested_chunks;
  111     CHECK_GE(c->count, count);
  112     const uptr first_idx_to_drain = c->count - count;
  113     c->count -= count;