HomeSort by relevance Sort by last modified time
    Searched refs:Cache (Results 26 - 50 of 98) sorted by null

12 3 4

  /external/oprofile/events/mips/25K/
events 48 # I-Cache Efficiency:
50 event:0x18 counters:0,1 um:zero minimum:500 name:INSNS_FETCHED_FROM_ICACHE : Total number of instructions fetched from the I-Cache
52 event:0x1a counters:0,1 um:zero minimum:500 name:ICACHE_MISSES : I-Cache miss
55 # D-Cache Efficiency:
57 event:0x1b counters:0,1 um:zero minimum:500 name:DCACHE_MISSES : D-Cache miss
58 event:0x1c counters:0,1 um:zero minimum:500 name:DCACHE_WRITEBACKS : D-Cache number of write-backs
59 event:0x1d counters:0,1 um:zero minimum:500 name:CACHEABLE_DCACHE_REQUEST : number of cacheable requests to D-Cache
62 # Level 2 Cache Efficiency:
64 event:0x1e counters:0,1 um:zero minimum:500 name:L2_MISSES : L2 Cache miss
65 event:0x1f counters:0,1 um:zero minimum:500 name:L2_WBACKS : L2 Cache number of write-back
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
ScriptCachedFrameData.h 58 // On Android we do use WebKit's page cache. For now we don't support isolated worlds
89 #error You need to consider whether you want Page Cache and either add a stub or a real implementation.
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
Cache.java 36 * objects they are returned from the cache, if not - newly generated
37 * objects can be saved in the cache.<br>
45 * determine whether object to be generated is in the cache or not.
65 * If it is so - the cached object is returned from the cache,
66 * if not - new object should be generated and saved in the cache.<br>
71 public class Cache {
92 // size of the cache
103 // to the object cached at cache[N]
110 private final Object[] cache; field in class:Cache
112 // This array is used to speed up the process of the search in the cache
    [all...]
X509CertFactoryImpl.java 54 * @see Cache
60 // certificate cache
61 private static final Cache CERT_CACHE = new Cache(CERT_CACHE_SEED_LENGTH);
64 // crl cache
65 private static final Cache CRL_CACHE = new Cache(CRL_CACHE_SEED_LENGTH);
82 * the cache. If the cache contains the certificate with requested encoded
593 * Resulting object is retrieved from the cache
    [all...]
  /external/llvm/include/llvm/ADT/
ImmutableList.h 145 CacheTy Cache;
168 // Profile the new list to see if it already exists in our cache.
174 ListTy* L = Cache.FindNodeOrInsertPos(ID, InsertPos);
177 // The list does not exist in our cache. Create it.
182 // Insert the new list into the cache.
183 Cache.InsertNode(L, InsertPos);
  /external/llvm/lib/CodeGen/
InterferenceCache.h 37 /// Entry - A cache entry containing interference information for all aliases
43 /// Tag - Cache tag is changed when any of the underlying LiveIntervalUnions
81 assert(!hasRefs() && "Cannot clear cache entry with references");
113 // We don't keep a cache entry for every physical register, that would use too
114 // much memory. Instead, a fixed number of cache entries are used in a round-
125 // The actual cache entries.
134 /// init - Prepare cache for a new function.
142 /// Cursor - The primary query interface for the block interference cache.
174 void setPhysReg(InterferenceCache &Cache, unsigned PhysReg) {
179 setEntry(Cache.get(PhysReg))
    [all...]
  /external/doclava/src/com/google/doclava/
Converter.java 221 private static Cache mClasses = new Cache() {
331 private static Cache mMethods = new Cache() {
417 private static Cache mFields = new Cache() {
435 private static Cache mPackagees = new Cache() {
447 private static Cache mTypes = new Cache() {
    [all...]
  /external/freetype/include/freetype/
ftmoderr.h 109 FT_MODERRDEF( Cache, 0x400, "cache module" )
  /external/guava/guava/src/com/google/common/cache/
Cache.java 17 package com.google.common.cache;
33 * A semi-persistent mapping from keys to values. Cache entries are manually added using
34 * {@link #get(K, Callable)} or {@link #put(K, V)}, and are stored in the cache until either
37 * <p><b>Note:</b> in release 12.0, all methods moved from {@code Cache} to {@link LoadingCache}
38 * will be deleted from {@code Cache}. As part of this transition {@code Cache} will no longer
51 public interface Cache<K, V> extends Function<K, V> {
54 * Returns the value associated with {@code key} in this cache, or {@code null} if there is no
63 * Returns the value associated with {@code key} in this cache, obtaining that value from
64 * {@code valueLoader} if necessary. No observable state associated with this cache is modifie
    [all...]
LoadingCache.java 17 package com.google.common.cache;
30 * A semi-persistent mapping from keys to values. Values are automatically loaded by the cache,
31 * and are stored in the cache until either evicted or manually invalidated.
38 * <p>When evaluated as a {@link Function}, a cache yields the same result as invoking
46 public interface LoadingCache<K, V> extends Cache<K, V>, Function<K, V> {
49 * Returns the value associated with {@code key} in this cache, first loading that value if
50 * necessary. No observable state associated with this cache is modified until loading completes.
57 * into the cache. Newly loaded values are added to the cache using
58 * {@code Cache.asMap().putIfAbsent} after loading has completed; if another value was associate
    [all...]
AbstractCache.java 17 package com.google.common.cache;
32 * This class provides a skeletal implementation of the {@code Cache} interface to minimize the
35 * <p>To implement a cache, the programmer needs only to extend this class and provide an
46 public abstract class AbstractCache<K, V> implements Cache<K, V> {
136 * Accumulates statistics during the operation of a {@link Cache} for presentation by {@link
137 * Cache#stats}. This is solely intended for consumption by {@code Cache} implementors.
144 * Records cache hits. This should be called when a cache request returns a cached value.
152 * Records cache misses. This should be called when a cache request returns a value that wa
    [all...]
  /frameworks/support/volley/src/com/android/volley/
RequestQueue.java 37 * resolving from either cache or network on a worker thread, and then delivering
50 * <li>containsKey(cacheKey) indicates that there is a request in flight for the given cache
52 * <li>get(cacheKey) returns waiting requests for the given cache key. The in flight request
66 /** The cache triage queue. */
77 /** Cache interface for retrieving and storing respones. */
78 private final Cache mCache;
89 /** The cache dispatcher. */
95 * @param cache A Cache to use for persisting responses to disk
100 public RequestQueue(Cache cache, Network network, int threadPoolSize
    [all...]
Request.java 77 * When a request can be retrieved from cache but must be refreshed from
78 * the network, the cache entry will be stored here so that in the event of
79 * a "Not Modified" response, we can be sure it hasn't been evicted from cache.
81 private Cache.Entry mCacheEntry = null;
216 * Returns the cache key for this request. By default, this is the URL.
223 * Annotates this request with an entry retrieved for it from cache.
224 * Used for cache coherency support.
226 public void setCacheEntry(Cache.Entry entry) {
231 * Returns the annotated cache entry, or null if there isn't one.
233 public Cache.Entry getCacheEntry()
    [all...]
  /external/javassist/src/main/javassist/
CtClassType.java 138 CtMember.Cache memCache = getMembers();
799 CtMember.Cache cache = hasMemberCache(); local
800 if (cache != null) {
801 CtMember mth = cache.methodHead();
802 CtMember tail = cache.lastMethod();
813 protected CtMember.Cache hasMemberCache() {
815 return (CtMember.Cache)memberCache.get();
820 protected synchronized CtMember.Cache getMembers() {
821 CtMember.Cache cache = null local
1494 CtMember.Cache cache = hasMemberCache(); local
    [all...]
CtMember.java 30 static class Cache extends CtMember {
49 Cache(CtClassType decl) {
  /external/oprofile/events/mips/rm7000/
events 12 event:0x08 counters:0,1 um:zero minimum:500 name:EXTERNAL_CACHE_MISSES : External Cache Misses
14 event:0x0a counters:0,1 um:zero minimum:500 name:SCACHE_MISSES : Secondary cache misses
15 event:0x0b counters:0,1 um:zero minimum:500 name:ICACHE_MISSES : Instruction cache misses
16 event:0x0c counters:0,1 um:zero minimum:500 name:DCACHE_MISSES : Data cache misses
23 event:0x13 counters:0,1 um:zero minimum:500 name:SCACHE_WRITEBACKS : Secondary cache writebacks
24 event:0x14 counters:0,1 um:zero minimum:500 name:PCACHE_WRITEBACKS : Primary cache writebacks
25 event:0x15 counters:0,1 um:zero minimum:500 name:DCACHE_MISS_STALL_CYCLES : Dcache miss stall cycles (cycles where both cache miss tokens taken and a third try is requested)
26 event:0x16 counters:0,1 um:zero minimum:500 name:CACHE_MISSES : Cache misses
32 event:0x1d counters:0,1 um:zero minimum:500 name:CACHE_INSTRUCTION_STALL_CYCLES : Cache instruction stall cycles
  /external/guava/guava-tests/test/com/google/common/cache/
AbstractCacheTest.java 17 package com.google.common.cache;
19 import com.google.common.cache.AbstractCache.SimpleStatsCounter;
20 import com.google.common.cache.AbstractCache.StatsCounter;
39 Cache<Object, Object> cache = new AbstractCache<Object, Object>() { local
52 assertNull(cache.getIfPresent(new Object()));
56 assertSame(newValue, cache.getIfPresent(new Object()));
61 Cache<Integer, Integer> cache = new AbstractCache<Integer, Integer>() { local
79 cache.invalidateAll(toInvalidate)
    [all...]
CacheManualTest.java 15 package com.google.common.cache;
30 Cache<Object, Object> cache = CacheBuilder.newBuilder().build(); local
31 CacheStats stats = cache.stats();
40 assertNull(cache.getIfPresent(one));
41 stats = cache.stats();
46 assertNull(cache.asMap().get(one));
47 assertFalse(cache.asMap().containsKey(one));
48 assertFalse(cache.asMap().containsValue(two));
50 assertNull(cache.getIfPresent(two))
106 Cache<Integer, Integer> cache = CacheBuilder.newBuilder().build(); local
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
no-page-cache.js 1 description("Tests that pages that use Geolocation are not put in the page cache.<br><br>Currently, Geolocation does not work with the page cache so pages that use Geolocation are explicitly prevented from entering the cache. This test checks for accidental enabling of the page Cache for Geolocation. See https://bugs.webkit.org/show_bug.cgi?id=43956 for details.");
  /frameworks/support/volley/tests/src/com/android/volley/
ResponseDeliveryTest.java 43 Cache.Entry cacheEntry = CacheTestUtils.makeRandomCacheEntry(data);
  /external/clang/lib/AST/
Type.cpp     [all...]
  /frameworks/support/volley/src/com/android/volley/toolbox/
BasicNetwork.java 22 import com.android.volley.Cache;
97 // Handle cache validation.
179 private void addCacheHeaders(Map<String, String> headers, Cache.Entry entry) {
180 // If there's no cache entry, we're done.
  /external/chromium/chrome/browser/extensions/
image_loading_tracker_unittest.cc 97 // Tests asking ImageLoadingTracker to cache pushes the result to the Extension.
98 TEST_F(ImageLoadingTrackerTest, Cache) {
111 ImageLoadingTracker::CACHE);
135 ImageLoadingTracker::CACHE);
157 ImageLoadingTracker::CACHE);
  /external/clang/lib/Lex/
PTHLexer.cpp 520 // Get the location of the spelling cache.
528 // Get the number of IdentifierInfos and pre-allocate the identifier cache.
531 // Pre-allocate the persistent ID -> IdentifierInfo* cache. We use calloc()
570 // Store the new IdentifierInfo in the cache.
675 CacheTy Cache;
679 Cache(FL.getNumBuckets(), FL.getNumEntries(), FL.getBuckets(),
687 CacheTy::iterator I = Cache.find(Path);
690 if (I == Cache.end())
  /bionic/libc/netbsd/resolv/
res_cache.c 47 /* This code implements a small and *simple* DNS resolver cache.
49 * It is only used to cache DNS answers for a time defined by the smallest TTL
51 * to be a full DNS cache, since we plan to implement that in the future in a
63 * to keep an answer in the cache.
66 * (and should be solved by the later full DNS cache process).
72 * that a full DNS cache is expected to do.
76 * - the client calls _resolv_cache_get() to obtain a handle to the cache.
77 * this will initialize the cache on first usage. the result can be NULL
78 * if the cache is disabled.
87 * answer to the cache
1186 Cache* cache; member in struct:resolv_cache_info
1257 struct resolv_cache* cache; local
1641 struct resolv_cache *cache; local
1675 struct resolv_cache* cache = _find_named_cache_locked(ifname); local
1720 struct resolv_cache* cache = _get_res_cache_for_iface_locked(ifname); local
1762 struct resolv_cache* cache = _find_named_cache_locked(ifname); local
    [all...]

Completed in 794 milliseconds

12 3 4