Searched refs:ordered_allocs_ (Results 1 – 2 of 2) sorted by relevance
62 for (const auto& alloc : ordered_allocs_) { in Allocate()86 auto insertion_it = ordered_allocs_.begin(); in Allocate()87 while (insertion_it != ordered_allocs_.end() && *insertion_it < *new_alloc) { in Allocate()90 ordered_allocs_.insert(insertion_it, *new_alloc); in Allocate()101 auto it = ordered_allocs_.begin(); in Deallocate()102 while (it != ordered_allocs_.end()) { in Deallocate()105 it = ordered_allocs_.erase(it); in Deallocate()159 ordered_allocs_.clear(); in ClearPlan()
69 ordered_allocs_() {} in SimpleMemoryArena()117 std::vector<ArenaAllocWithUsageInterval> ordered_allocs_; variable