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
  123   typedef typename Allocator::TransferBatch TransferBatch;
projects/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary32.h
  103     TransferBatch *next;
  110   static const uptr kBatchSize = sizeof(TransferBatch);
  166   NOINLINE TransferBatch *AllocateBatch(AllocatorStats *stat, AllocatorCache *c,
  176     TransferBatch *b = sci->free_list.front();
  182                                 TransferBatch *b) {
  280     IntrusiveList<TransferBatch> free_list;
  316                        TransferBatch **current_batch, uptr max_count,
  322     TransferBatch *b = *current_batch;
  351     const uptr max_count = TransferBatch::MaxCached(size);
  353     TransferBatch *b = nullptr;
projects/compiler-rt/lib/sanitizer_common/sanitizer_list.h
   39   void push_back(Item *x) {
   52   void push_front(Item *x) {
   72   void extract(Item *prev, Item *x) {
   72   void extract(Item *prev, Item *x) {
   83   Item *front() { return first_; }
   84   const Item *front() const { return first_; }
   85   Item *back() { return last_; }
   86   const Item *back() const { return last_; }
   88   void append_front(IntrusiveList<Item> *l) {
  102   void append_back(IntrusiveList<Item> *l) {
  149   typedef IteratorBase<Item> Iterator;
  150   typedef IteratorBase<const Item> ConstIterator;
  160   Item *first_;
  161   Item *last_;