HomeSort by relevance Sort by last modified time
    Searched refs:Cache (Results 76 - 100 of 432) sorted by null

1 2 34 5 6 7 8 91011>>

  /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/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/pdfium/third_party/freetype/include/freetype/
ftmoderr.h 146 FT_MODERRDEF( Cache, 0x400, "cache module" )
  /external/volley/src/test/java/com/android/volley/
ResponseDeliveryTest.java 44 Cache.Entry cacheEntry = CacheTestUtils.makeRandomCacheEntry(data);
  /libcore/ojluni/src/main/java/sun/util/locale/
BaseLocale.java 40 private static final Cache CACHE = new Cache();
68 CACHE.put(new Key(language, region), base);
86 BaseLocale baseLocale = CACHE.get(key);
290 private static class Cache extends LocaleObjectCache<Key, BaseLocale> {
292 public Cache() {
  /packages/apps/DocumentsUI/src/com/android/documentsui/
ThumbnailCache.java 38 * An LRU cache that supports finding the thumbnail of the requested uri with a different size than
50 private final Cache mCache;
53 * Creates a thumbnail LRU cache.
55 * @param maxCacheSizeInBytes the maximum size of thumbnails in bytes this cache can hold.
59 mCache = new Cache(maxCacheSizeInBytes);
112 // Cache miss.
117 * Puts a thumbnail for the given uri and size in to the cache.
120 * @param thumbnail the thumbnail to put in cache
143 * Removes all thumbnail cache associated to the given uri.
144 * @param uri the uri which thumbnail cache to remov
    [all...]
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftmoderr.h 146 FT_MODERRDEF( Cache, 0x400, "cache module" )
  /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/javassist/src/main/javassist/
CtClassType.java 138 CtMember.Cache memCache = getMembers();
799 CtMember.Cache cache = hasMemberCache(); local
800 if (cache != null) {
801 CtMember mth = cache.methodHead();
802 CtMember tail = cache.lastMethod();
813 protected CtMember.Cache hasMemberCache() {
815 return (CtMember.Cache)memberCache.get();
820 protected synchronized CtMember.Cache getMembers() {
821 CtMember.Cache cache = null local
1494 CtMember.Cache cache = hasMemberCache(); local
    [all...]
CtMember.java 30 static class Cache extends CtMember {
49 Cache(CtClassType decl) {
  /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());
  /external/compiler-rt/lib/scudo/
scudo_allocator.cpp 161 static thread_local AllocatorCache Cache;
169 // quarantine and swallowing the cache.
175 getAllocator().DestroyCache(&Cache);
201 getAllocator().InitCache(&Cache);
206 explicit QuarantineCallback(AllocatorCache *Cache)
207 : Cache_(Cache) {}
243 typedef ScudoQuarantine::Cache QuarantineCache;
341 Ptr = BackendAllocator.Allocate(&Cache, NeededSize, MinAlignment);
419 QuarantineCallback(&Cache), Chunk, Size);
494 QuarantineCallback(&Cache), Chunk, OldSize)
    [all...]
  /device/linaro/bootloader/edk2/IntelFspPkg/Library/SecFspSecPlatformLibNull/Ia32/
SecCarInit.asm 34 ; Description: This function initializes the Cache for Data, Stack, and Code
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
linux_based_platform_backend.py 37 @decorators.Cache
91 @decorators.Cache
  /external/guice/core/src/com/google/inject/internal/
WeakKeySet.java 21 import com.google.common.cache.Cache;
22 import com.google.common.cache.CacheBuilder;
23 import com.google.common.cache.RemovalCause;
24 import com.google.common.cache.RemovalListener;
25 import com.google.common.cache.RemovalNotification;
55 private final Cache<State, Set<KeyAndSource>> evictionCache = CacheBuilder.newBuilder()
  /external/llvm/lib/CodeGen/
InterferenceCache.h 38 /// Entry - A cache entry containing interference information for all aliases
44 /// Tag - Cache tag is changed when any of the underlying LiveIntervalUnions
100 assert(!hasRefs() && "Cannot clear cache entry with references");
132 // We don't keep a cache entry for every physical register, that would use too
133 // much memory. Instead, a fixed number of cache entries are used in a round-
145 // The actual cache entries.
162 /// init - Prepare cache for a new function.
170 /// Cursor - The primary query interface for the block interference cache.
202 void setPhysReg(InterferenceCache &Cache, unsigned PhysReg) {
207 setEntry(Cache.get(PhysReg))
    [all...]
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
URLFetcher.java 21 import com.android.volley.Cache;
105 connection.addRequestProperty("Cache-Control", "max-stale=60");
166 Cache.Entry cachePolicy = HttpHeaderParser.parseCacheHeaders(response);
169 // Cache is disabled, set the expire time to 0.
172 // Cache policy is not specified, set the expire time to 0.
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/ArmV7/
ArmV7Support.asm 29 mcr p15, 0, r0, c7, c6, 1 ; invalidate single data cache line
33 mcr p15, 0, r0, c7, c10, 1 ; clean single data cache line
38 mcr p15, 0, r0, c7, c11, 1 ; clean single data cache line to PoU
43 mcr p15, 0, r0, c7, c14, 1 ; clean and invalidate single data cache line
63 mcr p15,0,R0,c7,c5,0 ;Invalidate entire instruction cache
89 bic r0, r0, #CTRL_C_BIT ; Disable D Cache
90 bic r0, r0, #CTRL_I_BIT ; Disable I Cache
102 ldr R1,=DC_ON ; Specify SCTLR.C bit : (Data) Cache enable bit
111 ldr R1,=DC_ON ; Specify SCTLR.C bit : (Data) Cache enable bit
120 ldr R1,=IC_ON ; Specify SCTLR.I bit : Instruction cache enable bit
    [all...]

Completed in 325 milliseconds

1 2 34 5 6 7 8 91011>>