HomeSort by relevance Sort by last modified time
    Searched refs:Cache (Results 101 - 125 of 317) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/ImageMagick/MagickCore/
cache.c 13 % MagickCore Pixel Cache Methods %
47 #include "MagickCore/cache.h"
48 #include "MagickCore/cache-private.h"
52 #include "MagickCore/distribute-cache-private.h"
108 static Cache
180 % AcquirePixelCache() acquires a pixel cache.
184 % Cache AcquirePixelCache(const size_t number_threads)
191 MagickPrivate Cache AcquirePixelCache(const size_t number_threads)
225 value=GetPolicyValue("cache:synchronize");
236 return((Cache ) cache_info)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Cache.java 53 * <h3>Cache Optimization</h3>
54 * To measure cache effectiveness, this class tracks three statistics:
57 * requests issued since this cache was created.
61 * responses were served by the cache.
64 * Sometimes a request will result in a conditional cache hit. If the cache contains a stale copy of
69 * <p>The best way to improve the cache hit rate is by configuring the web server to return
71 * href="http://tools.ietf.org/html/rfc7234">HTTP/1.1 (RFC 7234)</a> cache headers, it doesn't cache
76 * the cache, and fetch data directly from the server. To force a full refresh, add the {@cod
159 private final DiskLruCache cache; field in class:Cache
    [all...]
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/
Cache.java 54 * <h3>Cache Optimization</h3>
55 * To measure cache effectiveness, this class tracks three statistics:
58 * requests issued since this cache was created.
62 * responses were served by the cache.
65 * Sometimes a request will result in a conditional cache hit. If the cache contains a stale copy of
70 * <p>The best way to improve the cache hit rate is by configuring the web server to return
72 * href="http://tools.ietf.org/html/rfc7234">HTTP/1.1 (RFC 7234)</a> cache headers, it doesn't cache
77 * the cache, and fetch data directly from the server. To force a full refresh, add the {@cod
161 private final DiskLruCache cache; field in class:Cache
    [all...]
  /device/linaro/bootloader/edk2/IntelFspPkg/Library/SecFspSecPlatformLibNull/Ia32/
SecCarInit.s 22 # Description: This function initializes the Cache for Data, Stack, and Code
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Route.h 2 EFI IP4 route table and route cache table defintions.
23 #define IP4_ROUTE_CACHE_MAX 64 // Max NO. of cache entry per hash bucket
44 /// The route cache entry. The route cache entry is optional.
48 /// The cache entry field Tag is used to tag all the route
49 /// cache entry spawned from a route table entry. This makes
50 /// it simple to delete all the route cache entries from a
63 /// The route cache table is organized as a hash table. Each
64 /// IP4 route table has a embedded route cache. For now the
65 /// route cache and route table are binded togehter. But keep
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformPei/
CommonHeader.h 36 #include <Ppi/Cache.h>
  /external/freetype/include/freetype/
ftmoderr.h 146 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(Object, Callable)} or {@link #put(Object, Object)}, and are stored in the cache until
50 public interface Cache<K, V> {
53 * Returns the value associated with {@code key} in this cache, or {@code null} if there is no
62 * Returns the value associated with {@code key} in this cache, obtaining that value from
63 * {@code valueLoader} if necessary. No observable state associated with this cache is modified
65 * "if cached, return; otherwise create, cache and return" pattern.
80 * Returns a map of the values associated with {@code keys} in this cache. The returned map will
81 * only contain entries which are already present in the cache
    [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.
36 * <p>When evaluated as a {@link Function}, a cache yields the same result as invoking
49 public interface LoadingCache<K, V> extends Cache<K, V>, Function<K, V> {
52 * Returns the value associated with {@code key} in this cache, first loading that value if
53 * necessary. No observable state associated with this cache is modified until loading completes.
60 * into the cache. Newly loaded values are added to the cache using
61 * {@code Cache.asMap().putIfAbsent} after loading has completed; if another value was associate
    [all...]
  /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
46 assertNull(cache.getIfPresent(new Object()));
50 assertSame(newValue, cache.getIfPresent(new Object()));
54 Cache<Object, Object> cache = new AbstractCache<Object, Object>() { local
63 cache.getAllPresent(ImmutableList.of(new Object())))
69 Cache<Object, Object> cache = new AbstractCache<Object, Object>() { local
83 Cache<Integer, Integer> cache = new AbstractCache<Integer, Integer>() { local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
BaseLocale.java 23 private static final Cache CACHE = new Cache();
65 BaseLocale baseLocale = CACHE.get(key);
255 private static class Cache extends LocaleObjectCache<Key, BaseLocale> {
257 public Cache() {
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
BaseLocale.java 19 private static final Cache CACHE = new Cache();
61 BaseLocale baseLocale = CACHE.get(key);
245 private static class Cache extends LocaleObjectCache<Key, BaseLocale> {
247 public Cache() {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
BaseLocale.java 19 private static final Cache CACHE = new Cache();
61 BaseLocale baseLocale = CACHE.get(key);
251 private static class Cache extends LocaleObjectCache<Key, BaseLocale> {
253 public Cache() {
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typesolvers/
JavaParserTypeSolver.java 26 import com.google.common.cache.Cache;
27 import com.google.common.cache.CacheBuilder;
48 private Cache<String, Optional<CompilationUnit>> parsedFiles = CacheBuilder.newBuilder().softValues().build();
49 private Cache<String, List<CompilationUnit>> parsedDirectories = CacheBuilder.newBuilder().softValues().build();
50 private Cache<String, SymbolReference<ResolvedReferenceTypeDeclaration>> foundTypes = CacheBuilder.newBuilder().softValues().build();
  /external/llvm/lib/Transforms/ObjCARC/
PtrState.cpp 165 bool BottomUpPtrState::InitBottomUp(ARCMDKindCache &Cache, Instruction *I) {
180 I->getMetadata(Cache.get(ARCMDKindID::ImpreciseRelease));
321 bool TopDownPtrState::MatchWithRelease(ARCMDKindCache &Cache,
328 Release->getMetadata(Cache.get(ARCMDKindID::ImpreciseRelease));
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 56 /// Evict the given function from cache
67 /// Ensures that the given function is available in the cache.
68 /// Returns the appropriate entry from the cache.
71 /// Inserts the given Function into the cache.
81 /// in the cache as an Optional without a value. This way, if we
84 DenseMap<const Function *, Optional<FunctionInfo>> Cache;
  /external/u-boot/arch/arc/lib/
start.S 15 ; Disable/enable I-cache according to configuration
35 ; Disable/enable D-cache according to configuration
53 ; Disable System-Level Cache (SLC)
  /external/u-boot/arch/arm/cpu/arm1136/
start.S 81 orr r0, r0, #0x00001000 @ set bit 12 (I) I-Cache
  /external/u-boot/arch/arm/cpu/arm1176/
start.S 77 mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */
87 orr r0, r0, #0x00001000 @ set bit 12 (I) I-Cache
95 /* Run in a single cache-line */
  /external/u-boot/arch/arm/cpu/arm920t/
start.S 87 mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */
97 orr r0, r0, #0x00001000 @ set bit 12 (I) I-Cache
  /external/volley/src/main/java/com/android/volley/toolbox/
HttpHeaderParser.java 19 import com.android.volley.Cache;
43 * Extracts a {@link com.android.volley.Cache.Entry} from a {@link NetworkResponse}.
46 * @return a cache entry for the given response, or null if the response is not cacheable.
48 public static Cache.Entry parseCacheHeaders(NetworkResponse response) {
71 headerValue = headers.get("Cache-Control");
77 if (token.equals("no-cache") || token.equals("no-store")) {
107 // Cache-Control takes precedence over an Expires header, even if both exist and Expires
118 Cache.Entry entry = new Cache.Entry();
  /external/volley/src/test/java/com/android/volley/
NetworkDispatcherTest.java 50 private @Mock Cache mCache;
133 verify(mCache, never()).put(anyString(), any(Cache.Entry.class));
142 ArgumentCaptor<Cache.Entry> entry = ArgumentCaptor.forClass(Cache.Entry.class);
ResponseDeliveryTest.java 44 Cache.Entry cacheEntry = CacheTestUtils.makeRandomCacheEntry(data);
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Route.c 20 as the index of the route cache bucket according to the prefix of two IPv6 addresses.
161 Allocate and initialize a IP6 route cache entry.
166 @param[in] Tag The tag from the caller. This marks all the cache entries
169 @return NULL if failed to allocate memory for the cache. Otherwise, point
170 to the created route cache entry.
200 Free the route cache entry. It is reference counted.
202 @param[in, out] RtCacheEntry The route cache entry to free.
218 Find a route cache with the destination and source address. This is
221 @param[in] RtTable The route table to search the cache for.
226 to the correct route cache entry.
    [all...]
  /external/llvm/lib/Analysis/
CFLSteensAliasAnalysis.cpp 240 auto InsertPair = Cache.insert(std::make_pair(Fn, Optional<FunctionInfo>()));
245 // Note that we can't do Cache[Fn] = buildSetsFrom(Fn) here: the function call
249 Cache[Fn] = std::move(FunInfo);
254 void CFLSteensAAResult::evict(Function *Fn) { Cache.erase(Fn); }
256 /// Ensures that the given function is available in the cache, and returns the
260 auto Iter = Cache.find(Fn);
261 if (Iter == Cache.end()) {
263 Iter = Cache.find(Fn);
264 assert(Iter != Cache.end());

Completed in 3128 milliseconds

1 2 3 45 6 7 8 91011>>