Searched refs:cache (Results 376 - 400 of 1307) sorted by relevance

<<11121314151617181920>>

/external/junit/src/junit/framework/
H A DJUnit4TestAdapter.java28 JUnit4TestAdapterCache cache) {
29 fCache = cache;
27 JUnit4TestAdapter(final Class<?> newTestClass, JUnit4TestAdapterCache cache) argument
/external/libnl/
H A DAndroid.mk5 LOCAL_SRC_FILES := lib/cache.c \
/external/llvm/bindings/python/llvm/tests/
H A Dtest_object.py31 section.cache()
47 symbol.cache()
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dgen7_urb.c72 .cache = 0,
144 .cache = (CACHE_NEW_VS_PROG | CACHE_NEW_GS_PROG),
H A Dgen7_viewport_state.c79 .cache = 0,
100 .cache = CACHE_NEW_CC_VP
/external/openssl/crypto/x509v3/
H A Dpcy_int.h186 X509_POLICY_DATA *policy_cache_find_data(const X509_POLICY_CACHE *cache,
195 void policy_cache_free(X509_POLICY_CACHE *cache);
/external/oprofile/events/mips/24K/
H A Devents16 event:0xb counters:0,1 um:zero minimum:500 name:DCACHE_MISSES : 11-0 Data cache misses
28 event:0x9 counters:0 um:zero minimum:500 name:ICACHE_ACCESSES : 9-0 Instruction cache accesses
29 event:0xa counters:0 um:zero minimum:500 name:DCACHE_ACCESSES : 10-0 Data cache accesses
31 event:0xd counters:0 um:zero minimum:500 name:STORE_MISS_INSNS : 13-0 Cacheable stores that miss in the cache
39 event:0x15 counters:0 um:zero minimum:500 name:L2_CACHE_WRITEBACKS : 21-0 L2 cache lines written back to memory
40 event:0x16 counters:0 um:zero minimum:500 name:L2_CACHE_MISSES : 22-0 L2 cache accesses that missed in the cache
55 event:0x25 counters:0 um:zero minimum:500 name:ICACHE_MISS_STALLS : 37-0 Stall cycles due to an instruction cache miss
57 event:0x27 counters:0 um:zero minimum:500 name:DCACHE_MISS_CYCLES : 39-0 Cycles a data cache miss is outstanding, but not necessarily stalling the pipeline
66 event:0x30 counters:0 um:zero minimum:500 name:IFU_FB_FULL_REFETCHES : 48-0 Refetches due to cache misse
[all...]
/external/oprofile/events/mips/34K/
H A Devents16 event:0xb counters:0,1 um:zero minimum:500 name:DCACHE_MISSES : 11-0 Data cache misses
28 event:0x9 counters:0 um:zero minimum:500 name:ICACHE_ACCESSES : 9-0 Instruction cache accesses
29 event:0xa counters:0 um:zero minimum:500 name:DCACHE_ACCESSES : 10-0 Data cache accesses
31 event:0xd counters:0 um:zero minimum:500 name:STORE_MISS_INSNS : 13-0 Cacheable stores that miss in the cache
39 event:0x15 counters:0 um:zero minimum:500 name:L2_CACHE_WRITEBACKS : 21-0 L2 cache lines written back to memory
40 event:0x16 counters:0 um:zero minimum:500 name:L2_CACHE_MISSES : 22-0 L2 cache accesses that missed in the cache
59 event:0x25 counters:0 um:zero minimum:500 name:ICACHE_MISS_STALLS : 37-0 Stall cycles due to an instruction cache miss
61 event:0x27 counters:0 um:zero minimum:500 name:DCACHE_MISS_CYCLES : 39-0 Cycles a data cache miss is outstanding, but not necessarily stalling the pipeline
71 event:0x30 counters:0 um:zero minimum:500 name:IFU_FB_FULL_REFETCHES : 48-0 Refetches due to cache misse
[all...]
/external/protobuf/
H A Dautogen.sh40 rm -rf autom4te.cache config.h.in~
/external/zopfli/
H A DAndroid.mk5 src/zopfli/blocksplitter.c src/zopfli/cache.c\
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERObjectIdentifier.java391 private static ASN1ObjectIdentifier[][] cache = new ASN1ObjectIdentifier[256][]; field in class:DERObjectIdentifier
406 synchronized (cache)
408 ASN1ObjectIdentifier[] first = cache[idx1];
411 first = cache[idx1] = new ASN1ObjectIdentifier[128];
426 first = cache[idx1];
429 first = cache[idx1] = new ASN1ObjectIdentifier[128];
/external/chromium_org/content/browser/appcache/
H A Dmock_appcache_storage.h63 AppCache* cache, const GURL& url,
109 void AddStoredCache(AppCache* cache);
110 void RemoveStoredCache(AppCache* cache);
112 bool IsCacheStored(const AppCache* cache) { argument
113 return stored_caches_.find(cache->cache_id()) != stored_caches_.end();
130 bool ShouldCacheLoadAppearAsync(const AppCache* cache);
132 // Lazily constructed in-memory disk cache.
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_cache_listener.cc202 const scoped_refptr<ServiceWorkerCache>& cache,
210 CacheID cache_id = StoreCacheReference(cache);
234 const scoped_refptr<ServiceWorkerCache>& cache,
241 CacheID cache_id = StoreCacheReference(cache);
277 const scoped_refptr<ServiceWorkerCache>& cache) {
279 id_to_cache_map_[cache_id] = cache;
200 OnCacheStorageGetCallback( int request_id, const scoped_refptr<ServiceWorkerCache>& cache, ServiceWorkerCacheStorage::CacheStorageError error) argument
232 OnCacheStorageCreateCallback( int request_id, const scoped_refptr<ServiceWorkerCache>& cache, ServiceWorkerCacheStorage::CacheStorageError error) argument
276 StoreCacheReference( const scoped_refptr<ServiceWorkerCache>& cache) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFormControlsCollection.cpp156 OwnPtrWillBeRawPtr<NamedItemCache> cache = NamedItemCache::create();
168 cache->addElementWithId(idAttrVal, element);
172 cache->addElementWithName(nameAttrVal, element);
185 cache->addElementWithId(idAttrVal, element);
187 cache->addElementWithName(nameAttrVal, element);
191 // Set the named item cache last as traversing the tree may cause cache invalidation.
192 setNamedItemCache(cache.release());
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pt_emit.c42 struct translate_cache *cache; member in struct:pt_emit
112 emit->translate = translate_cache_find(emit->cache, &hw_key);
278 emit->cache = translate_cache_create();
279 if (!emit->cache) {
291 if (emit->cache)
292 translate_cache_destroy(emit->cache);
H A Ddraw_pt_fetch.c45 struct translate_cache *cache; member in struct:pt_fetch
144 fetch->translate = translate_cache_find(fetch->cache, &key);
211 fetch->cache = translate_cache_create();
212 if (!fetch->cache) {
224 if (fetch->cache)
225 translate_cache_destroy(fetch->cache);
/external/chromium_org/ui/gfx/
H A Dfont_render_params_linux.cc36 // Number of recent GetFontRenderParams() results to cache.
39 // A cache and the lock that must be held while accessing it.
43 SynchronizedCache() : cache(kCacheSize) {}
46 Cache cache; member in struct:gfx::__anon16830::SynchronizedCache
159 // cache key.
173 // can only return a value from the cache if it wasn't requested.
176 Cache::const_iterator it = synchronized_cache->cache.Get(hash);
177 if (it != synchronized_cache->cache.end()) {
223 synchronized_cache->cache.Put(hash, params);
231 synchronized_cache->cache
[all...]
/external/libnl/lib/route/
H A Dclass_obj.c133 * @arg cache a qdisc cache including at laest all qdiscs of the
135 * @return The qdisc from the cache or NULL if the class has no leaf qdisc
138 struct nl_cache *cache)
145 leaf = rtnl_qdisc_get_by_parent(cache, class->c_ifindex,
164 * @arg cache a class cache including all classes of the interface
169 void rtnl_class_foreach_child(struct rtnl_class *class, struct nl_cache *cache, argument
182 nl_cache_foreach_filter(cache, (struct nl_object *) filter, cb, arg);
189 * @arg cache
137 rtnl_class_leaf_qdisc(struct rtnl_class *class, struct nl_cache *cache) argument
194 rtnl_class_foreach_cls(struct rtnl_class *class, struct nl_cache *cache, void (*cb)(struct nl_object *, void *), void *arg) argument
[all...]
H A Dqdisc.c56 * // Qdisc object from a cache can be used.
376 * Build a qdisc cache including all qdiscs currently configured in
381 * Allocates a new cache, initializes it properly and updates it to
392 * Look up qdisc by its parent in the provided cache
393 * @arg cache qdisc cache
396 * @return pointer to qdisc inside the cache or NULL if no match was found.
398 struct rtnl_qdisc * rtnl_qdisc_get_by_parent(struct nl_cache *cache, argument
403 if (cache->c_ops != &rtnl_qdisc_ops)
406 nl_list_for_each_entry(q, &cache
423 rtnl_qdisc_get(struct nl_cache *cache, int ifindex, uint32_t handle) argument
[all...]
/external/llvm/utils/lit/lit/
H A Ddiscovery.py21 def getTestSuite(item, litConfig, cache):
22 """getTestSuite(item, litConfig, cache) -> (suite, relative_path)
55 res = cache.get(path)
57 cache[path] = res = search1(path)
76 def getLocalConfig(ts, path_in_suite, litConfig, cache):
102 res = cache.get(key)
104 cache[key] = res = search1(path_in_suite)
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pt_emit.c42 struct translate_cache *cache; member in struct:pt_emit
112 emit->translate = translate_cache_find(emit->cache, &hw_key);
278 emit->cache = translate_cache_create();
279 if (!emit->cache) {
291 if (emit->cache)
292 translate_cache_destroy(emit->cache);
H A Ddraw_pt_fetch.c45 struct translate_cache *cache; member in struct:pt_fetch
144 fetch->translate = translate_cache_find(fetch->cache, &key);
211 fetch->cache = translate_cache_create();
212 if (!fetch->cache) {
224 if (fetch->cache)
225 translate_cache_destroy(fetch->cache);
/external/chromium_org/third_party/icu/source/i18n/
H A Dastro.cpp1531 void CalendarCache::createCache(CalendarCache** cache, UErrorCode& status) { argument
1533 if(cache == NULL) {
1536 *cache = new CalendarCache(32, status);
1538 delete *cache;
1539 *cache = NULL;
1544 int32_t CalendarCache::get(CalendarCache** cache, int32_t key, UErrorCode &status) { argument
1552 if(*cache == NULL) {
1553 createCache(cache, status);
1560 res = uhash_igeti((*cache)->fTable, key);
1561 U_DEBUG_ASTRO_MSG(("%p: GET: [%d] == %d\n", (*cache)
1567 put(CalendarCache** cache, int32_t key, int32_t value, UErrorCode &status) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DSkGr.cpp139 bool cache,
146 if (cache) {
147 // This texture is likely to be used again so leave it in the cache
159 // cache so no one else can find it. Additionally, once unlocked, the
171 static GrTexture *load_etc1_texture(GrContext* ctx, bool cache, argument
217 return sk_gr_allocate_texture(ctx, cache, params, bm, desc, bytes, 0);
221 static GrTexture *load_yuv_texture(GrContext* ctx, bool cache, const GrTextureParams* params, argument
269 GrTexture* result = sk_gr_allocate_texture(ctx, cache, params, bm, rtDesc, NULL, 0);
293 bool cache,
315 return sk_gr_allocate_texture(ctx, cache, param
138 sk_gr_allocate_texture(GrContext* ctx, bool cache, const GrTextureParams* params, const SkBitmap& bm, GrTextureDesc desc, const void* pixels, size_t rowBytes) argument
292 sk_gr_create_bitmap_texture(GrContext* ctx, bool cache, const GrTextureParams* params, const SkBitmap& origBitmap) argument
377 bool cache = !bitmap.isVolatile(); local
[all...]
/external/icu/icu4c/source/i18n/
H A Dastro.cpp1531 void CalendarCache::createCache(CalendarCache** cache, UErrorCode& status) { argument
1533 if(cache == NULL) {
1536 *cache = new CalendarCache(32, status);
1538 delete *cache;
1539 *cache = NULL;
1544 int32_t CalendarCache::get(CalendarCache** cache, int32_t key, UErrorCode &status) { argument
1552 if(*cache == NULL) {
1553 createCache(cache, status);
1560 res = uhash_igeti((*cache)->fTable, key);
1561 U_DEBUG_ASTRO_MSG(("%p: GET: [%d] == %d\n", (*cache)
1567 put(CalendarCache** cache, int32_t key, int32_t value, UErrorCode &status) argument
[all...]

Completed in 2512 milliseconds

<<11121314151617181920>>