Lines Matching refs:cache
146 cache.remove(p);
154 cache.remove(p);
162 cache.erase(cache.begin(), cache.end());
204 * Add an address range map entry to the cache.
212 // If there's a cache, add this element to it.
213 if (cache.size() >= max_cache_size) {
214 // If the cache is full, move the last element to the
217 auto last = cache.end();
221 cache.splice(cache.begin(), cache, last);
223 cache.push_front(it);
242 // Check the cache first
243 for (auto c = cache.begin(); c != cache.end(); c++) {
247 // of the cache and return it.
248 cache.splice(cache.begin(), cache, c);
290 mutable std::list<iterator> cache;