Home | History | Annotate | Download | only in lsan

Lines Matching full:root_regions

86 InternalMmapVector<RootRegion> *root_regions;
89 CHECK(!root_regions);
91 root_regions = new(placeholder) InternalMmapVector<RootRegion>(1);
268 CHECK(root_regions);
269 for (uptr i = 0; i < root_regions->size(); i++) {
270 RootRegion region = (*root_regions)[i];
648 CHECK(root_regions);
650 root_regions->push_back(region);
659 CHECK(root_regions);
661 for (uptr i = 0; i < root_regions->size(); i++) {
662 RootRegion region = (*root_regions)[i];
665 uptr last_index = root_regions->size() - 1;
666 (*root_regions)[i] = (*root_regions)[last_index];
667 root_regions->pop_back();