/external/swiftshader/src/Device/ |
D | LRUCache.hpp | 26 class LRUCache class 29 LRUCache(int n); 31 virtual ~LRUCache(); 51 class LRUConstCache : public LRUCache<Key, Data> 53 using LRUBase = LRUCache<Key, Data>; 94 LRUCache<Key, Data>::LRUCache(int n) in LRUCache() function in sw::LRUCache 112 LRUCache<Key, Data>::~LRUCache() in ~LRUCache() 125 Data LRUCache<Key, Data>::query(const Key &key) const in query() 157 Data LRUCache<Key, Data>::add(const Key &key, const Data &data) in add()
|
D | RoutineCache.hpp | 27 using RoutineCache = LRUCache<State, std::shared_ptr<Routine>>; 30 using RoutineCacheT = LRUCache<State, RoutineT<FunctionType>>;
|
/external/swiftshader/src/Renderer/ |
D | LRUCache.hpp | 26 class LRUCache class 29 LRUCache(int n); 31 ~LRUCache(); 94 LRUCache<Key, Data>::LRUCache(int n) in LRUCache() function in sw::LRUCache 112 LRUCache<Key, Data>::~LRUCache() in ~LRUCache() 125 Data LRUCache<Key, Data>::query(const Key &key) const in query() 157 Data LRUCache<Key, Data>::add(const Key &key, const Data &data) in add()
|
D | RoutineCache.hpp | 27 using RoutineCache = LRUCache<State, std::shared_ptr<Routine>>;
|
/external/libphonenumber/repackaged/libphonenumber/src/com/android/i18n/phonenumbers/internal/ |
D | RegexCache.java | 31 private LRUCache<String, Pattern> cache; 34 cache = new LRUCache<String, Pattern>(size); in RegexCache() 51 private static class LRUCache<K, V> { class in RegexCache 57 public LRUCache(int size) { in LRUCache() method in RegexCache.LRUCache 63 return size() > LRUCache.this.size; in LRUCache()
|
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/internal/ |
D | RegexCache.java | 29 private LRUCache<String, Pattern> cache; 32 cache = new LRUCache<String, Pattern>(size); in RegexCache() 49 private static class LRUCache<K, V> { class in RegexCache 55 public LRUCache(int size) { in LRUCache() method in RegexCache.LRUCache 61 return size() > LRUCache.this.size; in LRUCache()
|
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/ |
D | LoadPathToFileCache.java | 34 private final LRUCache<String, String> cache; 38 cache = new LRUCache<String, String>(capacity); in LoadPathToFileCache() 114 static class LRUCache<K, V> extends LinkedHashMap<K, V> { class in LoadPathToFileCache 118 LRUCache(int capacity) { in LRUCache() method in LoadPathToFileCache.LRUCache
|
/external/tensorflow/tensorflow/compiler/tf2tensorrt/utils/ |
D | trt_lru_cache.h | 38 class LRUCache { 47 LRUCache() : capacity_(0) {} in LRUCache() function 48 explicit LRUCache(size_t capacity) : capacity_(capacity) {} in LRUCache() function 178 LRUCache<std::vector<TensorShape>, std::unique_ptr<EngineContext>,
|
D | trt_lru_cache_test.cc | 24 LRUCache<int, int, std::hash<int>> cache; in TEST()
|
/external/autotest/site_utils/rpm_control_system/ |
D | utils_unittest.py | 89 cache = utils.LRUCache(2, expiration_secs=None) 115 cache = utils.LRUCache(1, expiration_secs=10) 138 cache = utils.LRUCache(1, expiration_secs=10)
|
D | utils.py | 74 class LRUCache(object): class
|
D | frontend_server.py | 96 self._rpm_info = utils.LRUCache(size=LRU_SIZE)
|
/external/libchrome/third_party/jinja2/ |
D | environment.py | 29 from jinja2.utils import import_string, LRUCache, Markup, missing, \ 37 _spontaneous_environments = LRUCache(10) 66 return LRUCache(size) 75 return LRUCache(cache.capacity)
|
D | utils.py | 306 class LRUCache(object): class 486 MutableMapping.register(LRUCache)
|
D | lexer.py | 23 from jinja2.utils import LRUCache 27 _lexer_cache = LRUCache(50)
|
/external/tensorflow/tensorflow/core/util/ |
D | mkl_util_test.cc | 89 LRUCache<int> lru_cache(capacity); in TEST()
|
D | mkl_util.h | 1860 class LRUCache { 1862 explicit LRUCache(size_t capacity) { function 1982 static inline LRUCache<MklPrimitive>& GetLRUCache() { 1984 static thread_local LRUCache<MklPrimitive> lru_cache_(kCapacity);
|
/external/tensorflow/tensorflow/compiler/tf2tensorrt/kernels/ |
D | trt_engine_op.cc | 92 LRUCache<std::vector<TensorShape>, std::unique_ptr<EngineContext>,
|