HomeSort by relevance Sort by last modified time
    Searched refs:Cache (Results 176 - 200 of 363) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/guava/guava/src/com/google/common/cache/
CacheBuilder.java 17 package com.google.common.cache;
32 import com.google.common.cache.AbstractCache.SimpleStatsCounter;
33 import com.google.common.cache.AbstractCache.StatsCounter;
34 import com.google.common.cache.LocalCache.Strength;
47 * <p>A builder of {@link LoadingCache} and {@link Cache} instances having any combination of the
51 * <li>automatic loading of entries into the cache
58 * <li>accumulation of cache access statistics
62 * cache instances created by {@code CacheBuilder} will not perform any type of eviction.
91 * <p>The returned cache is implemented as a hash table with similar performance characteristics to
93 * {@link Cache} interfaces. The {@code asMap} view (and its collection views) have <i>weakl
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 391 /// This is a cache of the values we have analyzed so far.
499 /// Cache the backedge-taken count of the loops for this function as they
544 DenseMap<const SCEV *, ConstantRange> &Cache =
548 Cache.insert(std::make_pair(S, CR));
    [all...]
  /external/llvm/test/MC/PowerPC/
ppc64-encoding-bookII.s 5 # Cache management instruction
  /external/webrtc/webrtc/tools/rtcbot/
botmanager.js 88 // TODO(andresp): Cache browserify result for future serves.
  /external/skia/src/gpu/
SkGpuDevice.cpp 95 // Either get the texture directly from the bitmap, or else use the cache and
810 // cache size and we don't require most of it for this draw then tile to
811 // reduce the amount of upload and cache spill.
    [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h     [all...]
ff_fragment_shader.cpp     [all...]
ffvertex_prog.c     [all...]
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
resolver.py 160 class Cache(object):
161 """Simple DNS answer cache.
168 @ivar next_cleaning: The time the cache should next be cleaned (in seconds
174 """Initialize a DNS cache.
186 """Clean the cache if it's time to do so."""
215 """Associate key and value in the cache.
227 """Flush the cache.
230 the entire cache is flushed.
277 @ivar cache: The cache to use. The default is None
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.h 83 /// Cache of previously constructed Types.
97 /// Cache of previously constructed interfaces which may change.
100 /// Cache of references to clang modules and precompiled headers.
106 /// Cache of forward declared types to RAUW at the end of
110 /// Cache of replaceable forward declarartions (functions and
130 /// Cache declarations relevant to DW_TAG_imported_declarations (C++
183 /// Get the type from the cache or return null type if it doesn't
203 llvm::DIType *getOrCreateStructPtrType(StringRef Name, llvm::DIType *&Cache);
414 /// Get the type from the cache or create a new type if necessary.
426 /// Get the type from the cache or create a new partial type i
    [all...]
CGDebugInfo.cpp 287 // Cache the results.
741 llvm::DIType *&Cache) {
742 if (Cache)
743 return Cache;
744 Cache = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type, Name,
747 Cache = DBuilder.createPointerType(Cache, Size);
748 return Cache;
    [all...]
  /external/guice/extensions/persist/lib/
oro-2.0.8.jar 
  /external/pdfium/third_party/lcms2-2.6/src/
lcms2_internal.h 941 // 1-pixel cache (16 bits only)
957 // Formatters, cannot be embedded into LUT because cache
    [all...]
  /external/skia/src/core/
SkDevice.cpp 416 SkAutoTUnref<SkImageFilter::Cache> cache(this->getImageFilterCache());
417 SkImageFilter::Context ctx(matrix, clipBounds, cache.get());
  /prebuilts/tools/common/m2/repository/oro/oro/2.0.8/
oro-2.0.8.jar 
  /external/clang/include/clang/Sema/
Sema.h 206 void threadSafetyCleanup(BeforeSet* Cache);
234 /// A single-element cache based on the file ID.
238 } Cache;
242 // Check the single-element cache.
243 if (file == Cache.File)
244 return Cache.Nullability;
246 // It's not in the single-element cache; flush the cache if we have one.
247 if (!Cache.File.isInvalid()) {
248 Map[Cache.File] = Cache.Nullability
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
oleidl.h 207 virtual HRESULT WINAPI Cache(FORMATETC *pformatetc,DWORD advf,DWORD *pdwConnection) = 0;
219 HRESULT (WINAPI *Cache)(IOleCache *This,FORMATETC *pformatetc,DWORD advf,DWORD *pdwConnection);
233 #define IOleCache_Cache(This,pformatetc,advf,pdwConnection) (This)->lpVtbl->Cache(This,pformatetc,advf,pdwConnection)
283 HRESULT (WINAPI *Cache)(IOleCache2 *This,FORMATETC *pformatetc,DWORD advf,DWORD *pdwConnection);
299 #define IOleCache2_Cache(This,pformatetc,advf,pdwConnection) (This)->lpVtbl->Cache(This,pformatetc,advf,pdwConnection)
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
CacheTest.java 83 private Cache cache; field in class:CacheTest
88 cache = new Cache(new File("/cache/"), Integer.MAX_VALUE, fileSystem);
89 client.setCache(cache);
116 assertCached(false, 206); //Electing to not cache partial responses
184 Response cached = cache.get(request);
218 // Make sure that calling skip() doesn't omit bytes from the cache.
228 assertEquals(1, cache.getWriteSuccessCount())
    [all...]
  /external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/
UrlConnectionCacheTest.java 88 private Cache cache; field in class:UrlConnectionCacheTest
93 cache = new Cache(new File("/cache/"), Integer.MAX_VALUE, fileSystem);
94 client.client().setCache(cache);
104 assertSame(cache, client.client().getCache());
125 assertCached(false, 206); //Electing to not cache partial responses
188 Response cached = cache.get(new Request.Builder().url(url).build());
222 // Make sure that calling skip() doesn't omit bytes from the cache
    [all...]
  /external/chromium-trace/catapult/third_party/coverage/coverage/htmlfiles/
coverage_html.js 43 // Cache elements.
  /frameworks/opt/setupwizard/tools/docs/
doclava.jar 
  /external/chromium-trace/catapult/third_party/gsutil/gslib/third_party/storage_apitools/
storage_v1_messages.py 424 cacheControl: Cache-Control directive for the object data.
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage/
storage_v1_messages.py 412 cacheControl: Cache-Control directive for the object data.
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator.cc 132 explicit QuarantineCallback(AllocatorCache *cache)
133 : cache_(cache) {
174 typedef AsanQuarantine::Cache QuarantineCache;
196 // static THREADLOCAL AllocatorCache cache;
366 AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage()); local
368 allocator.Allocate(cache, needed_size, 8, false, check_rss_limit);
371 AllocatorCache *cache = &fallback_allocator_cache; local
373 allocator.Allocate(cache, needed_size, 8, false, check_rss_limit);

Completed in 2249 milliseconds

1 2 3 4 5 6 78 91011>>