/external/xz-java/src/org/tukaani/xz/ |
D | BasicArrayCache.java | 107 private static class CacheMap<T> class in BasicArrayCache 118 public CacheMap() { in CacheMap() method in BasicArrayCache.CacheMap 161 private final CacheMap<byte[]> byteArrayCache = new CacheMap<byte[]>(); 166 private final CacheMap<int[]> intArrayCache = new CacheMap<int[]>(); 172 private static <T> T getArray(CacheMap<T> cache, int size) { in getArray() 204 private static <T> void putArray(CacheMap<T> cache, T array, int size) { in putArray()
|
/external/icu/android_icu4j/libcore_bridge/src/java/com/android/i18n/timezone/internal/ |
D | BasicLruCache.java | 28 private static class CacheMap<K, V> extends LinkedHashMap<K, V> { class in BasicLruCache 32 private CacheMap(int maxSize) { in CacheMap() method in BasicLruCache.CacheMap 43 private final CacheMap<K, V> map; 49 this.map = new CacheMap<K, V>(maxSize); in BasicLruCache()
|
/external/crosvm/disk/src/qcow/ |
D | vec_cache.rs | 87 pub struct CacheMap<T: Cacheable> { struct 92 impl<T: Cacheable> CacheMap<T> { implementation 94 CacheMap { in new() 148 let mut cache = CacheMap::<NumCache>::new(3); in evicts_when_full()
|
D | refcount.rs | 11 use crate::qcow::vec_cache::{CacheMap, Cacheable, VecCache}; 54 refblock_cache: CacheMap<VecCache<u16>>, 82 refblock_cache: CacheMap::new(50), in new()
|
D | mod.rs | 26 use crate::qcow::vec_cache::{CacheMap, Cacheable, VecCache}; 410 l2_cache: CacheMap<VecCache<u64>>, 554 l2_cache: CacheMap::new(100), in from()
|
/external/llvm/lib/DebugInfo/PDB/Raw/ |
D | MappedBlockStream.cpp | 53 auto CacheIter = CacheMap.find(Offset); in readBytes() 54 if (CacheIter != CacheMap.end()) { in readBytes() 67 for (auto &CacheItem : CacheMap) { in readBytes() 111 if (CacheIter != CacheMap.end()) { in readBytes() 116 CacheMap.insert(std::make_pair(Offset, List)); in readBytes() 260 for (const auto &MapEntry : CacheMap) { in writeBytes()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/MSF/ |
D | MappedBlockStream.cpp | 97 auto CacheIter = CacheMap.find(Offset); in readBytes() 98 if (CacheIter != CacheMap.end()) { in readBytes() 111 for (auto &CacheItem : CacheMap) { in readBytes() 155 if (CacheIter != CacheMap.end()) { in readBytes() 160 CacheMap.insert(std::make_pair(Offset, List)); in readBytes() 272 void MappedBlockStream::invalidateCache() { CacheMap.shrink_and_clear(); } in invalidateCache() 280 for (const auto &MapEntry : CacheMap) { in fixCacheAfterWrite()
|
/external/llvm-project/llvm/lib/DebugInfo/MSF/ |
D | MappedBlockStream.cpp | 97 auto CacheIter = CacheMap.find(Offset); in readBytes() 98 if (CacheIter != CacheMap.end()) { in readBytes() 111 for (auto &CacheItem : CacheMap) { in readBytes() 155 if (CacheIter != CacheMap.end()) { in readBytes() 160 CacheMap.insert(std::make_pair(Offset, List)); in readBytes() 272 void MappedBlockStream::invalidateCache() { CacheMap.shrink_and_clear(); } in invalidateCache() 280 for (const auto &MapEntry : CacheMap) { in fixCacheAfterWrite()
|
/external/llvm-project/lldb/include/lldb/DataFormatters/ |
D | FormatCache.h | 48 typedef std::map<ConstString, Entry> CacheMap; typedef 49 CacheMap m_map;
|
/external/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 664 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute() 666 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second)) in compute() 667 CacheMap.erase(CacheIt); in compute() 685 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_() 686 if (CacheIt != CacheMap.end()) in compute_() 721 CacheMap[V] = Result; in compute_() 805 CacheMap[&PHI] = std::make_pair(SizePHI, OffsetPHI); in visitPHINode()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 848 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute() 850 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second)) in compute() 851 CacheMap.erase(CacheIt); in compute() 876 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_() 877 if (CacheIt != CacheMap.end()) in compute_() 913 CacheMap[V] = Result; in compute_() 996 CacheMap[&PHI] = std::make_pair(SizePHI, OffsetPHI); in visitPHINode()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 873 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal); in compute() 875 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second)) in compute() 876 CacheMap.erase(CacheIt); in compute() 901 CacheMapTy::iterator CacheIt = CacheMap.find(V); in compute_() 902 if (CacheIt != CacheMap.end()) in compute_() 938 CacheMap[V] = Result; in compute_() 1021 CacheMap[&PHI] = std::make_pair(SizePHI, OffsetPHI); in visitPHINode()
|
/external/llvm/include/llvm/DebugInfo/PDB/Raw/ |
D | MappedBlockStream.h | 62 mutable DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap; variable
|
/external/llvm-project/llvm/include/llvm/DebugInfo/MSF/ |
D | MappedBlockStream.h | 102 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap; variable
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/MSF/ |
D | MappedBlockStream.h | 104 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap; variable
|
/external/llvm/include/llvm/Analysis/ |
D | MemoryBuiltins.h | 222 CacheMapTy CacheMap; variable
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | MemoryBuiltins.h | 297 CacheMapTy CacheMap; variable
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | MemoryBuiltins.h | 303 CacheMapTy CacheMap; variable
|