Lines Matching refs:m_L1_cache
24 : m_mutex(), m_L1_cache(), m_L2_cache(), m_invalid_ranges(), in MemoryCache()
33 m_L1_cache.clear(); in Clear()
49 m_L1_cache[addr] = data_buffer_sp; in AddL1CacheData()
59 if (!m_L1_cache.empty()) { in Flush()
61 BlockMap::iterator pos = m_L1_cache.upper_bound(addr); in Flush()
62 if (pos != m_L1_cache.begin()) { in Flush()
65 while (pos != m_L1_cache.end()) { in Flush()
69 pos = m_L1_cache.erase(pos); in Flush()
137 if (!m_L1_cache.empty()) { in Read()
139 BlockMap::iterator pos = m_L1_cache.upper_bound(addr); in Read()
140 if (pos != m_L1_cache.begin()) { in Read()