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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/tools/clang/blink_gc_plugin/
RecordInfo.cpp 12 RecordInfo::RecordInfo(CXXRecordDecl* record, RecordCache* cache)
13 : cache_(cache),
198 Cache::iterator it = cache_.find(record);
  /frameworks/base/libs/hwui/
VectorDrawable.cpp 453 // draw bitmap cache
509 bool Tree::allocateBitmapIfNeeded(Cache& cache, int width, int height) {
510 if (!canReuseBitmap(cache.bitmap.get(), width, height)) {
517 cache.bitmap = Bitmap::allocateHeapBitmap(info);
  /prebuilts/tools/common/m2/repository/oro/oro/2.0.8/
oro-2.0.8.jar 
  /external/mesa3d/src/mesa/main/
ff_fragment_shader.cpp     [all...]
ffvertex_prog.c     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RegAllocGreedy.cpp 196 void reset(InterferenceCache &Cache, unsigned Reg) {
199 Intf.setPhysReg(Cache, Reg);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
tables.go     [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
tables.go     [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 326 // Cache the results.
767 llvm::DIType *&Cache) {
768 if (Cache)
769 return Cache;
770 Cache = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type, Name,
773 Cache = DBuilder.createPointerType(Cache, Size);
774 return Cache;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
oleidl.h 359 virtual HRESULT STDMETHODCALLTYPE Cache(
399 HRESULT (STDMETHODCALLTYPE *Cache)(
436 #define IOleCache_Cache(This,pformatetc,advf,pdwConnection) (This)->lpVtbl->Cache(This,pformatetc,advf,pdwConnection)
454 return This->lpVtbl->Cache(This,pformatetc,advf,pdwConnection);
587 HRESULT (STDMETHODCALLTYPE *Cache)(
635 #define IOleCache2_Cache(This,pformatetc,advf,pdwConnection) (This)->lpVtbl->Cache(This,pformatetc,advf,pdwConnection)
656 return This->lpVtbl->Cache(This,pformatetc,advf,pdwConnection);
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
CacheTest.java 82 private Cache cache; field in class:CacheTest
87 cache = new Cache(new File("/cache/"), Integer.MAX_VALUE, fileSystem);
88 client.setCache(cache);
95 cache.delete();
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
    [all...]
CallTest.java 97 private Cache cache = new Cache(new File("/cache/"), Integer.MAX_VALUE, fileSystem); field in class:CallTest
105 cache.delete();
    [all...]
  /external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/
UrlConnectionCacheTest.java 87 private Cache cache; field in class:UrlConnectionCacheTest
92 cache = new Cache(new File("/cache/"), Integer.MAX_VALUE, fileSystem);
93 client.client().setCache(cache);
100 cache.delete();
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())
    [all...]
  /frameworks/opt/setupwizard/tools/docs/
doclava.jar 
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformInitPei/
PlatformEarlyInit.h 79 #include <Ppi/Cache.h>
    [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);
  /external/clang/include/clang/Sema/
Sema.h 209 void threadSafetyCleanup(BeforeSet* Cache);
237 /// A single-element cache based on the file ID.
241 } Cache;
245 // Check the single-element cache.
246 if (file == Cache.File)
247 return Cache.Nullability;
249 // It's not in the single-element cache; flush the cache if we have one.
250 if (!Cache.File.isInvalid()) {
251 Map[Cache.File] = Cache.Nullability
    [all...]
  /frameworks/support/samples/SupportLeanbackShowcase/libs/
gson-1.7.2.jar 
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/
Variable.c 36 /// Define a memory cache that improves the search performance for a variable.
41 /// Memory cache of Fv Header.
121 A read that hits in the cache will have Read and Cache true for
131 @param[in] Cache TRUE for a cache hit.
142 IN BOOLEAN Cache
182 if (Cache) {
800 // Update the data in NV cache.
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformSecLib/Ia32/
Flat32.asm 40 ; CR0 cache control bit definition
142 ; Protected mode portion initializes stack, configures cache, and calls C entry point
245 ; (1) Disable Cache
261 ; Ensure cache is disabled.
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/
Variable.c 38 // Other common variables are only accessed a single time. This is why this cache algorithm
40 // a Cache you would need a cache that improves the search performance for a variable.
693 A read that hits in the cache will have Read and Cache true for
703 @param[in] Cache TRUE for a cache hit.
714 IN BOOLEAN Cache
762 if (Cache) {
790 Updates variable in cache.
    [all...]
  /external/ImageMagick/www/api/
cache-view.php 9 <title>ImageMagick: MagickCore, C API for ImageMagick: Cache Views</title>
15 <meta name="keywords" content="magickcore, c, api, for, imagemagick:, cache, views, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert"/>
55 <p class="text-center"><a href="cache-view.php#AcquireAuthenticCacheView">AcquireAuthenticCacheView</a> &bull; <a href="cache-view.php#AcquireVirtualCacheView">AcquireVirtualCacheView</a> &bull; <a href="cache-view.php#CloneCacheView">CloneCacheView</a> &bull; <a href="cache-view.php#DestroyCacheView">DestroyCacheView</a> &bull; <a href="cache-view.php#GetCacheViewAuthenticPixels">GetCacheViewAuthenticPixels</a> &bull; <a href="cache-view.php#GetCacheViewAuthenticMetacontent">GetCacheViewAuthenticMetacontent</a> &bull; <a href="cache-view.php#GetCacheViewAuthenticPixelQueue">GetCacheViewAuthenticPixelQueue</a> &bull; <a href="cache-view.php#GetCacheViewColorspace">GetCacheViewColorspace</a> &bull; <a href="cache-view.php#GetCach (…)
    [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp     [all...]
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 275 void reset(InterferenceCache &Cache, unsigned Reg) {
278 Intf.setPhysReg(Cache, Reg);
    [all...]

Completed in 1169 milliseconds

1 2 3 4 5 6 7 8 91011>>