HomeSort by relevance Sort by last modified time
    Searched defs:LRUCache (Results 1 - 10 of 10) sorted by null

  /external/swiftshader/src/Device/
LRUCache.hpp 23 class LRUCache
26 LRUCache(int n);
28 ~LRUCache();
51 LRUCache<Key, Data>::LRUCache(int n)
71 LRUCache<Key, Data>::~LRUCache()
93 Data *LRUCache<Key, Data>::query(const Key &key) const
125 Data *LRUCache<Key, Data>::add(const Key &key, Data *data)
  /external/swiftshader/src/Renderer/
LRUCache.hpp 23 class LRUCache
26 LRUCache(int n);
28 ~LRUCache();
51 LRUCache<Key, Data>::LRUCache(int n)
71 LRUCache<Key, Data>::~LRUCache()
93 Data *LRUCache<Key, Data>::query(const Key &key) const
125 Data *LRUCache<Key, Data>::add(const Key &key, Data *data)
  /external/autotest/site_utils/rpm_control_system/
utils.py 74 class LRUCache(object):
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/internal/
RegexCache.java 29 private LRUCache<String, Pattern> cache;
32 cache = new LRUCache<String, Pattern>(size);
49 private static class LRUCache<K, V> {
55 public LRUCache(int size) {
61 return size() > LRUCache.this.size;
  /external/libphonenumber/repackaged/libphonenumber/src/com/android/i18n/phonenumbers/internal/
RegexCache.java 31 private LRUCache<String, Pattern> cache;
34 cache = new LRUCache<String, Pattern>(size);
51 private static class LRUCache<K, V> {
57 public LRUCache(int size) {
63 return size() > LRUCache.this.size;
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
LoadPathToFileCache.java 34 private final LRUCache<String, String> cache;
38 cache = new LRUCache<String, String>(capacity);
110 * This code is copied from {@link com.google.common.cache.LRUCache} but is distilled to basics in
114 static class LRUCache<K, V> extends LinkedHashMap<K, V> {
118 LRUCache(int capacity) {
  /external/libchrome/third_party/jinja2/
utils.py 306 class LRUCache(object):
486 MutableMapping.register(LRUCache)
  /external/tensorflow/tensorflow/compiler/tf2tensorrt/utils/
trt_lru_cache.h 35 class LRUCache {
44 LRUCache() : capacity_(0) {}
45 explicit LRUCache(size_t capacity) : capacity_(capacity) {}
164 oss << "LRUCache = " << hex << &cache_ << dec << endl;
179 LRUCache<std::vector<TensorShape>, std::unique_ptr<EngineContext>,
  /external/tensorflow/tensorflow/core/util/
mkl_util.h     [all...]
  /external/testng/ant/3rdparty/
doclava-1.0.3.jar 

Completed in 3803 milliseconds