Home
last modified time | relevance | path

Searched refs:LRUCache (Results 1 – 17 of 17) sorted by relevance

/external/swiftshader/src/Device/
DLRUCache.hpp23 class LRUCache class
26 LRUCache(int n);
28 ~LRUCache();
51 LRUCache<Key, Data>::LRUCache(int n) in LRUCache() function in sw::LRUCache
71 LRUCache<Key, Data>::~LRUCache() in ~LRUCache()
93 Data *LRUCache<Key, Data>::query(const Key &key) const in query()
125 Data *LRUCache<Key, Data>::add(const Key &key, Data *data) in add()
DRoutineCache.hpp27 class RoutineCache : public LRUCache<State, Routine>
41 …RoutineCache<State>::RoutineCache(int n, const char *precache) : LRUCache<State, Routine>(n), prec… in RoutineCache()
/external/swiftshader/src/Renderer/
DLRUCache.hpp23 class LRUCache class
26 LRUCache(int n);
28 ~LRUCache();
51 LRUCache<Key, Data>::LRUCache(int n) in LRUCache() function in sw::LRUCache
71 LRUCache<Key, Data>::~LRUCache() in ~LRUCache()
93 Data *LRUCache<Key, Data>::query(const Key &key) const in query()
125 Data *LRUCache<Key, Data>::add(const Key &key, Data *data) in add()
DRoutineCache.hpp27 class RoutineCache : public LRUCache<State, Routine>
41 …RoutineCache<State>::RoutineCache(int n, const char *precache) : LRUCache<State, Routine>(n), prec… in RoutineCache()
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/internal/
DRegexCache.java29 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/libphonenumber/repackaged/libphonenumber/src/com/android/i18n/phonenumbers/internal/
DRegexCache.java31 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/jsilver/src/com/google/clearsilver/jsilver/adaptor/
DLoadPathToFileCache.java34 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/
Dtrt_lru_cache.h35 class LRUCache {
44 LRUCache() : capacity_(0) {} in LRUCache() function
45 explicit LRUCache(size_t capacity) : capacity_(capacity) {} in LRUCache() function
179 LRUCache<std::vector<TensorShape>, std::unique_ptr<EngineContext>,
Dtrt_lru_cache_test.cc24 LRUCache<int, int, std::hash<int>> cache; in TEST()
/external/autotest/site_utils/rpm_control_system/
Dutils_unittest.py89 cache = utils.LRUCache(2, expiration_secs=None)
115 cache = utils.LRUCache(1, expiration_secs=10)
138 cache = utils.LRUCache(1, expiration_secs=10)
Dutils.py74 class LRUCache(object): class
Dfrontend_server.py98 self._rpm_info = utils.LRUCache(size=LRU_SIZE)
/external/libchrome/third_party/jinja2/
Denvironment.py29 from jinja2.utils import import_string, LRUCache, Markup, missing, \
37 _spontaneous_environments = LRUCache(10)
66 return LRUCache(size)
75 return LRUCache(cache.capacity)
Dutils.py306 class LRUCache(object): class
486 MutableMapping.register(LRUCache)
Dlexer.py23 from jinja2.utils import LRUCache
27 _lexer_cache = LRUCache(50)
/external/tensorflow/tensorflow/core/util/
Dmkl_util_test.cc91 LRUCache<int> lru_cache(capacity); in TEST()
Dmkl_util.h2080 class LRUCache {
2082 explicit LRUCache(size_t capacity) { in LRUCache() function
2202 static inline LRUCache<MklPrimitive>& GetLRUCache() { in GetLRUCache()
2204 static thread_local LRUCache<MklPrimitive> lru_cache_(kCapacity); in GetLRUCache()