Searched refs:cached_bag_resid_stacks_ (Results 1 – 2 of 2) sorted by relevance
1171 auto it = cached_bag_resid_stacks_.find(resid); in GetBagResIdStack()1172 if (it != cached_bag_resid_stacks_.end()) { in GetBagResIdStack()1180 it = cached_bag_resid_stacks_.emplace(resid, std::move(stacks)).first; in GetBagResIdStack()1198 auto resid_stacks_it = cached_bag_resid_stacks_.find(resid); in GetBag()1199 if (resid_stacks_it == cached_bag_resid_stacks_.end()) { in GetBag()1200 resid_stacks_it = cached_bag_resid_stacks_.emplace(resid, std::vector<uint32_t>{}).first; in GetBag()1204 cached_bag_resid_stacks_.erase(resid_stacks_it); in GetBag()1527 cached_bag_resid_stacks_.clear(); in InvalidateCaches()1533 for (auto stack_it = cached_bag_resid_stacks_.begin(); in InvalidateCaches()1534 stack_it != cached_bag_resid_stacks_.end();) { in InvalidateCaches()[all …]
487 mutable std::unordered_map<uint32_t, std::vector<uint32_t>> cached_bag_resid_stacks_; variable