HomeSort by relevance Sort by last modified time
    Searched refs:cache (Results 1 - 25 of 3014) 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);
frame-cache.c 1 /* Frame cache handling.
61 __libdw_destroy_frame_cache (Dwarf_CFI *cache)
64 tdestroy (cache->fde_tree, free_fde);
65 tdestroy (cache->cie_tree, free_cie);
66 tdestroy (cache->expr_tree, free_expr);
68 if (cache->ebl != NULL && cache->ebl != (void *) -1l)
69 ebl_closebackend (cache->ebl);
  /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.
76 /** Max entries in the cache */
82 /** Number of entries in the cache */
91 ensure_sanity(const struct util_cache *cache);
96 * Create a new cache with 'size' entries. Also provide functions for
105 struct util_cache *cache; local
107 cache = CALLOC_STRUCT(util_cache);
108 if (!cache)
111 cache->hash = hash;
112 cache->compare = compare
    [all...]
u_cache.h 30 * Simple cache.
48 * Least Recently Used (LRU) cache.
54 * Create a cache.
68 util_cache_set(struct util_cache *cache,
73 util_cache_get(struct util_cache *cache,
77 util_cache_clear(struct util_cache *cache);
80 util_cache_destroy(struct util_cache *cache);
83 util_cache_remove(struct util_cache *cache,
  /toolchain/binutils/binutils-2.27/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/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;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
CharCache.java 24 private char[] cache; field in class:CharCache
28 cache = new char[capacity];
33 int available = cache.length - pos;
35 System.arraycopy(chars, 0, cache, pos, toWrite);
40 return new String(cache, 0, pos);
48 if (pos < cache.length - 1) {
49 cache[pos] = c;
  /frameworks/base/libs/hwui/tests/unit/
GradientCacheTests.cpp 28 GradientCache cache(extensions);
29 ASSERT_LT(1000u, cache.getMaxSize()) << "Expect non-trivial size";
33 Texture* texture = cache.get(colors, positions, 3);
36 ASSERT_EQ((uint32_t)texture->objectSize(), cache.getSize());
37 ASSERT_TRUE(cache.getSize());
38 cache.clear();
39 ASSERT_EQ(cache.getSize(), 0u);
  /external/mesa3d/src/util/
disk_cache.h 34 /* Size of cache keys in bytes. */
41 /* Provide inlined stub functions if the shader cache is disabled. */
46 * Create a new cache object.
51 * This cache provides two distinct operations:
75 * Destroy a cache object, (freeing all associated resources).
78 disk_cache_destroy(struct disk_cache *cache);
81 * Store an item in the cache under the name \key.
87 * evicted from the cache.
90 disk_cache_put(struct disk_cache *cache, cache_key key,
94 * Retrieve an item previously stored in the cache with the name <key>
    [all...]
  /external/freetype/src/cache/
ftccache.c 5 /* The FreeType internal cache interface (body). */
42 /***** CACHE NODE DEFINITIONS *****/
87 /* get a top bucket for specified hash from cache,
88 * body for FTC_NODE_TOP_FOR_HASH( cache, hash )
91 ftc_get_top_node_for_hash( FTC_Cache cache,
98 idx = hash & cache->mask;
99 if ( idx < cache->p )
100 idx = hash & ( 2 * cache->mask + 1 );
101 pnode = cache->buckets + idx;
113 ftc_cache_resize( FTC_Cache cache )
276 FTC_Cache cache; local
    [all...]
  /external/mesa3d/src/mesa/program/
prog_cache.c 83 rehash(struct gl_program_cache *cache)
89 cache->last = NULL;
91 size = cache->size * 3;
95 for (i = 0; i < cache->size; i++)
96 for (c = cache->items[i]; c; c = next) {
102 free(cache->items);
103 cache->items = items;
104 cache->size = size;
109 clear_cache(struct gl_context *ctx, struct gl_program_cache *cache,
115 cache->last = NULL
142 struct gl_program_cache *cache = CALLOC_STRUCT(gl_program_cache); local
    [all...]
  /external/boringssl/src/crypto/x509v3/
pcy_cache.c 71 * Set cache entry according to CertificatePolicies extension. Note: this
80 X509_POLICY_CACHE *cache = x->policy_cache; local
85 cache->data = sk_X509_POLICY_DATA_new(policy_data_cmp);
86 if (!cache->data)
97 if (cache->anyPolicy) {
101 cache->anyPolicy = data;
102 } else if (sk_X509_POLICY_DATA_find(cache->data, NULL, data)) {
105 } else if (!sk_X509_POLICY_DATA_push(cache->data, data))
117 sk_X509_POLICY_DATA_pop_free(cache->data, policy_data_free);
118 cache->data = NULL
125 X509_POLICY_CACHE *cache; local
240 X509_POLICY_CACHE *cache; local
    [all...]
  /external/guava/guava-gwt/test/com/google/common/cache/
CacheBuilderGwtTest_gwt.java 16 package com.google.common.cache;
19 return "com.google.common.cache.testModule";
22 com.google.common.cache.CacheBuilderGwtTest testCase = new com.google.common.cache.CacheBuilderGwtTest();
28 com.google.common.cache.CacheBuilderGwtTest testCase = new com.google.common.cache.CacheBuilderGwtTest();
34 com.google.common.cache.CacheBuilderGwtTest testCase = new com.google.common.cache.CacheBuilderGwtTest();
40 com.google.common.cache.CacheBuilderGwtTest testCase = new com.google.common.cache.CacheBuilderGwtTest()
    [all...]

Completed in 806 milliseconds

1 2 3 4 5 6 7 8 91011>>