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

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/src/libdw/
dwarf_cfi_end.c 38 dwarf_cfi_end (cache)
39 Dwarf_CFI *cache;
41 if (cache != NULL)
43 __libdw_destroy_frame_cache (cache);
44 free (cache);
  /external/iptables/
autogen.sh 4 rm -Rf autom4te*.cache;
  /external/libnl/
autogen.sh 4 rm -Rf autom4te.cache;
  /external/mesa3d/src/gallium/auxiliary/util/
u_cache.c 30 * Improved cache implementation.
85 ensure_sanity(const struct util_cache *cache);
95 struct util_cache *cache; local
97 cache = CALLOC_STRUCT(util_cache);
98 if(!cache)
101 cache->hash = hash;
102 cache->compare = compare;
103 cache->destroy = destroy;
105 make_empty_list(&cache->lru);
108 cache->size = size
    [all...]
  /system/core/libutils/tests/
LruCache_test.cpp 122 LruCache<SimpleKey, StringValue> cache(100);
124 EXPECT_EQ(NULL, cache.get(0));
125 EXPECT_EQ(0u, cache.size());
129 LruCache<SimpleKey, StringValue> cache(100);
131 cache.put(1, "one");
132 cache.put(2, "two");
133 cache.put(3, "three");
134 EXPECT_STREQ("one", cache.get(1));
135 EXPECT_STREQ("two", cache.get(2));
136 EXPECT_STREQ("three", cache.get(3))
    [all...]
  /external/squashfs-tools/squashfs-tools/
caches-queues-lists.c 148 /* Called with the cache mutex held */
265 /* define cache hash tables */
268 /* Called with the cache mutex held */
269 INSERT_HASH_TABLE(cache, struct cache, CALCULATE_CACHE_HASH, index, hash)
271 /* Called with the cache mutex held */
272 REMOVE_HASH_TABLE(cache, struct cache, CALCULATE_CACHE_HASH, index, hash);
274 /* define cache free list */
276 /* Called with the cache mutex held *
286 struct cache *cache = malloc(sizeof(struct cache)); local
454 struct cache *cache = entry->cache; local
468 struct cache *cache; local
602 struct cache *cache = buffer->cache; local
627 struct cache *cache = entry->cache; local
    [all...]
  /external/libnl/lib/
cache.c 2 * lib/cache.c Caching Module
14 * @defgroup cache Cache
17 * Cache Management | | Type Specific Cache Operations
26 * 2) destroy old cache +----------- pp_cb ---------|---+
45 #include <netlink/cache.h>
55 * Return the number of items in the cache
56 * @arg cache cache handl
175 struct nl_cache *cache; local
192 struct nl_cache *cache; local
215 struct nl_cache *cache; local
237 struct nl_cache *cache; local
380 struct nl_cache *cache = obj->ce_cache; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
LruCacheTest.java 34 LruCache<String, String> cache = new LruCache<String, String>(3); local
35 assertStatistics(cache);
37 assertEquals(null, cache.put("a", "A"));
39 assertStatistics(cache);
40 assertHit(cache, "a", "A");
41 assertSnapshot(cache, "a", "A");
43 assertEquals(null, cache.put("b", "B"));
45 assertStatistics(cache);
46 assertHit(cache, "a", "A");
47 assertHit(cache, "b", "B")
83 LruCache<String, String> cache = newCreatingCache(); local
107 LruCache<String, String> cache = newCreatingCache(); local
113 LruCache<String, String> cache = newCreatingCache(); local
127 LruCache<String, String> cache = new LruCache<String, String>(3); local
136 LruCache<String, String> cache = new LruCache<String, String>(3); local
145 LruCache<String, String> cache = new LruCache<String, String>(3); local
163 LruCache<String, String> cache = new LruCache<String, String>(1); local
171 LruCache<String, String> cache = newRemovalLogCache(log); local
188 LruCache<String, String> cache = newRemovalLogCache(log); local
199 LruCache<String, String> cache = new LruCache<String, String>(10) { local
215 LruCache<String, String> cache = new LruCache<String, String>(4) { local
244 LruCache<String, int[]> cache = new LruCache<String, int[]>(4) { local
266 LruCache<String, String> cache = new LruCache<String, String>(4) { local
285 LruCache<String, String> cache = new LruCache<String, String>(10) { local
303 LruCache<String, String> cache = newRemovalLogCache(log); local
313 LruCache<String, String> cache = new LruCache<String, String>(10) { local
326 LruCache<String, String> cache = new LruCache<String, String>(10) { local
338 LruCache<String, String> cache = new LruCache<String, String>(10); local
346 LruCache<String, String> cache = new LruCache<String, String>(10); local
356 LruCache<String, String> cache = newRemovalLogCache(log); local
364 LruCache<String, String> cache = newRemovalLogCache(log); local
371 LruCache<String, String> cache = new LruCache<String, String>(3) { local
388 LruCache<String, String> cache = new LruCache<String, String>(3) { local
405 LruCache<String, String> cache = new LruCache<String, String>(3) { local
427 LruCache<String, Integer> cache = new LruCache<String, Integer>(3) { local
    [all...]
  /external/selinux/policycoreutils/restorecond/
restorecond_user.conf 6 ~/.cache/*
  /external/guava/guava-tests/test/com/google/common/cache/
CacheBuilderGwtTest.java 17 package com.google.common.cache;
57 final Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
69 cache.put(0, 10);
71 assertEquals(Integer.valueOf(10), cache.get(0, loader));
72 assertEquals(Integer.valueOf(1), cache.get(20, loader));
73 assertEquals(Integer.valueOf(2), cache.get(34, loader));
75 cache.invalidate(0);
76 assertEquals(Integer.valueOf(3), cache.get(0, loader));
78 cache.put(0, 10)
84 final Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
119 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
137 final Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
154 final Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
181 final Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
212 Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
279 Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
318 Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
336 Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
351 Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
377 Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
395 Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
413 Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
431 Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
453 Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
471 Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
491 Cache<Integer, Integer> cache = CacheBuilder.newBuilder() local
    [all...]
CacheEvictionTest.java 15 package com.google.common.cache;
17 import static com.google.common.cache.TestingCacheLoaders.identityLoader;
18 import static com.google.common.cache.TestingRemovalListeners.countingRemovalListener;
19 import static com.google.common.cache.TestingWeighers.constantWeigher;
20 import static com.google.common.cache.TestingWeighers.intKeyWeigher;
24 import com.google.common.cache.CacheTesting.Receiver;
25 import com.google.common.cache.LocalCache.ReferenceEntry;
26 import com.google.common.cache.TestingCacheLoaders.IdentityLoader;
27 import com.google.common.cache.TestingRemovalListeners.CountingRemovalListener;
35 * Tests relating to cache eviction: what does and doesn't count toward maximumSize, what happen
46 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
56 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
66 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
81 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
98 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
117 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
136 final LoadingCache<Integer, Integer> cache = local
149 final LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
166 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
198 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
241 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
264 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state_cache.c 34 * This file implements a simple static state cache for 965. The
38 * the cache may not have relocations (pointers to other BOs) in them.
43 * Replacement is not implemented. Instead, when the cache gets too
44 * big we throw out all of the cache data and let it get regenerated.
82 search_cache(struct brw_cache *cache, GLuint hash,
90 for (c = cache->items[hash % cache->size]; c; c = c->next)
93 fprintf(stderr, "bucket %d/%d = %d/%d items\n", hash % cache->size,
94 cache->size, bucketcount, cache->n_items)
324 struct brw_cache *cache = &brw->cache; local
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /external/guava/guava/src/com/google/common/cache/
package-info.java 20 * <p>The core interface used to represent caches is {@link com.google.common.cache.Cache}.
22 * {@link com.google.common.cache.CacheBuilder}, with cache entries being loaded by
23 * {@link com.google.common.cache.CacheLoader}. Statistics about cache performance are exposed using
24 * {@link com.google.common.cache.CacheStats}.
35 package com.google.common.cache;
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
LongAddables.java 17 package com.google.common.cache;
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/9/platforms/android-12/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/9/platforms/android-13/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/9/platforms/android-15/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/9/platforms/android-16/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/9/platforms/android-17/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>

Completed in 601 milliseconds

1 2 3 4 5 6 7 8 91011>>