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

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libdw/
dwarf_cfi_end.c 38 dwarf_cfi_end (Dwarf_CFI *cache)
40 if (cache != NULL)
42 __libdw_destroy_frame_cache (cache);
43 free (cache);
dwarf_cfi_addrframe.c 36 dwarf_cfi_addrframe (Dwarf_CFI *cache, Dwarf_Addr address, Dwarf_Frame **frame)
39 if (cache == NULL)
42 struct dwarf_fde *fde = __libdw_find_fde (cache, address);
46 int error = __libdw_frame_at_address (cache, fde, address, frame);
  /external/iptables/
autogen.sh 4 rm -Rf autom4te*.cache;
  /external/libnl/doc/
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...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
cache.s 1 # Source file to test offsets used with the CACHE and PREF instruction.
3 # By default test CACHE.
7 .macro cache ops:vararg
19 cache 5, 255($2)
20 cache 5, -256($3)
22 cache 5, 2047($2)
23 cache 5, -2048($3)
29 cache 5, 2048($4)
30 cache 5, -2049($5)
31 cache 5, 32767($6
    [all...]
  /external/syslinux/core/include/
cache.h 9 /* The cache structure */
10 struct cache { struct
12 struct cache *prev;
13 struct cache *next;
17 /* functions defined in cache.c */
20 struct cache *_get_cache_block(struct device *, block_t);
21 void cache_lock_block(struct cache *);
24 #endif /* cache.h */
  /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 ---------|---+
48 * #include <netlink/cache.h>
54 #include <netlink/cache.h>
65 * Return the number of items in the cache
66 * @arg cache cache handl
185 struct nl_cache *cache; local
236 struct nl_cache *cache; local
267 struct nl_cache *cache; local
300 struct nl_cache *cache; local
554 struct nl_cache *cache = obj->ce_cache; local
713 struct nl_cache *cache = (struct nl_cache *)p->pp_arg; 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/restorecond/
restorecond_user.conf 6 ~/.cache/*
  /system/core/libutils/tests/
LruCache_test.cpp 154 LruCache<SimpleKey, StringValue> cache(100);
156 EXPECT_EQ(NULL, cache.get(0));
157 EXPECT_EQ(0u, cache.size());
161 LruCache<SimpleKey, StringValue> cache(100);
163 cache.put(1, "one");
164 cache.put(2, "two");
165 cache.put(3, "three");
166 EXPECT_STREQ("one", cache.get(1));
167 EXPECT_STREQ("two", cache.get(2));
168 EXPECT_STREQ("three", cache.get(3))
    [all...]
  /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...]
LongAdderTest.java 15 package com.google.common.cache;
  /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/r10/platforms/android-12/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/r10/platforms/android-13/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/r10/platforms/android-14/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/r10/platforms/android-15/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/r10/platforms/android-16/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/r10/platforms/android-17/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>
  /prebuilts/ndk/r10/platforms/android-18/arch-mips/usr/include/asm/
dma-mapping.h 22 #include <asm/cache.h>

Completed in 938 milliseconds

1 2 3 4 5 6 7 8 91011>>