reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
93 typedef RingBuffer<HeapAllocationRecord> HeapAllocationsRingBuffer;
projects/compiler-rt/lib/hwasan/hwasan_report.cpp129 HeapAllocationRecord *har) { 132 auto h = (*rb)[i]; 311 HeapAllocationRecord har;projects/compiler-rt/lib/sanitizer_common/sanitizer_ring_buffer.h
29 RB->last_ = RB->next_ = reinterpret_cast<T*>(End - sizeof(T)); 38 2 * sizeof(T *)); 42 return Size * sizeof(T) + 2 * sizeof(T*); 42 return Size * sizeof(T) + 2 * sizeof(T*); 47 void push(T t) { 55 T operator[](uptr Idx) const { 74 T *last_; 75 T *next_; 76 T data_[1]; // flexible array.