HomeSort by relevance Sort by last modified time
    Searched refs:LRUCache (Results 1 - 25 of 27) sorted by null

1 2

  /external/swiftshader/src/Renderer/
RoutineCache.hpp 18 #include "LRUCache.hpp"
25 class RoutineCache : public LRUCache<State, Routine>
39 RoutineCache<State>::RoutineCache(int n, const char *precache) : LRUCache<State, Routine>(n), precache(precache)
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/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/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) {
  /libcore/ojluni/src/main/java/sun/misc/
LRUCache.java 33 public abstract class LRUCache<N,V> {
38 public LRUCache(int size) {
  /system/extras/simpleperf/
CallChainJoiner_test.cpp 26 static bool JoinCallChain(LRUCache& cache, uint32_t tid,
37 TEST(LRUCache, different_nodes) {
38 LRUCache cache(sizeof(CacheNode) * 2, 1);
69 TEST(LRUCache, extend_chains) {
73 LRUCache cache1(sizeof(CacheNode) * 4, 1);
81 LRUCache cache2(sizeof(CacheNode) * 4, 2);
89 LRUCache cache3(sizeof(CacheNode) * 4, 2);
97 TEST(LRUCache, avoid_ip_sp_loop) {
98 LRUCache cache(sizeof(CacheNode) * 2, 1);
108 TEST(LRUCache, one_chain)
    [all...]
CallChainJoiner.cpp 27 LRUCache::LRUCache(size_t cache_size, size_t matched_node_count_to_extend_callchain)
41 LRUCache::~LRUCache() {
45 void LRUCache::AddCallChain(pid_t tid, std::vector<uint64_t>& ips, std::vector<uint64_t>& sps) {
104 bool LRUCache::CacheNodeEqual(const CacheNode* n1, const CacheNode* n2) {
108 size_t LRUCache::CacheNodeHash(const CacheNode* n) {
112 CacheNode* LRUCache::GetNode(uint32_t tid, uint64_t ip, uint64_t sp) {
134 CacheNode* LRUCache::AllocNode() {
150 void LRUCache::LinkParent(CacheNode* child, CacheNode* new_parent)
    [all...]
CallChainJoiner.h 62 // LRUCache caches call chains in memory, and supports extending a call chain if the (tid, ip, sp)
64 class LRUCache {
69 LRUCache(size_t cache_size = 8 * 1024 * 1024, size_t matched_node_count_to_extend_callchain = 1);
70 ~LRUCache();
146 // The parameters are used in LRUCache.
  /external/autotest/site_utils/rpm_control_system/
utils_unittest.py 78 """Test LRUCache."""
89 cache = utils.LRUCache(2, expiration_secs=None)
105 """Test LRUCache expires."""
115 cache = utils.LRUCache(1, expiration_secs=10)
138 cache = utils.LRUCache(1, expiration_secs=10)
frontend_server.py 94 self._rpm_info = utils.LRUCache(size=LRU_SIZE)
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
lookup.py 223 self._collection = util.LRUCache(collection_size)
224 self._uri_cache = util.LRUCache(collection_size)
util.py 147 class LRUCache(dict):
151 this is a rewrite of LRUCache from Myghty to use a periodic timestamp-based
  /external/libmojo/third_party/jinja2/
utils.py 294 class LRUCache(object):
474 MutableMapping.register(LRUCache)
environment.py 28 from jinja2.utils import import_string, LRUCache, Markup, missing, \
37 _spontaneous_environments = LRUCache(10)
66 return LRUCache(size)
75 return LRUCache(cache.capacity)
    [all...]
lexer.py 22 from jinja2.utils import LRUCache
29 _lexer_cache = LRUCache(50)
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.tycho.core.shared/0.18.1/
org.eclipse.tycho.core.shared-0.18.1.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
  /libcore/ojluni/src/main/java/java/util/
Scanner.java 40 import sun.misc.LRUCache;
365 private LRUCache<String,Pattern> patternCache =
366 new LRUCache<String,Pattern>(7) {
    [all...]
  /frameworks/base/config/
preloaded-classes     [all...]
  /prebuilts/tools/common/m2/repository/net/sf/saxon/Saxon-HE/9.8.0-5/
Saxon-HE-9.8.0-5.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 
  /frameworks/opt/setupwizard/tools/docs/
jsilver.jar 
  /prebuilts/devtools/tools/lib/
jsilver-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/jsilver/jsilver/1.0.0/
jsilver-1.0.0.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.jdt.core_3.11.0.v20150602-1242.jar 

Completed in 932 milliseconds

1 2