/external/skia/tools/gpu/ |
D | MemoryCache.h | 25 class MemoryCache : public GrContextOptions::PersistentCache { 27 MemoryCache() = default; 28 MemoryCache(const MemoryCache&) = delete; 29 MemoryCache& operator=(const MemoryCache&) = delete;
|
D | MemoryCache.cpp | 32 sk_sp<SkData> MemoryCache::load(const SkData& key) { in load() 48 void MemoryCache::store(const SkData& key, const SkData& data) { in store()
|
/external/skqp/tools/gpu/ |
D | MemoryCache.h | 25 class MemoryCache : public GrContextOptions::PersistentCache { 27 MemoryCache() = default; 28 MemoryCache(const MemoryCache&) = delete; 29 MemoryCache& operator=(const MemoryCache&) = delete;
|
D | MemoryCache.cpp | 32 sk_sp<SkData> MemoryCache::load(const SkData& key) { in load() 48 void MemoryCache::store(const SkData& key, const SkData& data) { in store()
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/ |
D | BitmapPreFillRunner.java | 11 import com.bumptech.glide.load.engine.cache.MemoryCache; 57 private final MemoryCache memoryCache; 66 …public BitmapPreFillRunner(BitmapPool bitmapPool, MemoryCache memoryCache, PreFillQueue allocation… in BitmapPreFillRunner() 71 …BitmapPreFillRunner(BitmapPool bitmapPool, MemoryCache memoryCache, PreFillQueue allocationOrder, … in BitmapPreFillRunner()
|
D | BitmapPreFiller.java | 9 import com.bumptech.glide.load.engine.cache.MemoryCache; 21 private final MemoryCache memoryCache; 28 …public BitmapPreFiller(MemoryCache memoryCache, BitmapPool bitmapPool, DecodeFormat defaultFormat)… in BitmapPreFiller()
|
/external/glide/library/src/main/java/com/bumptech/glide/ |
D | GlideBuilder.java | 15 import com.bumptech.glide.load.engine.cache.MemoryCache; 30 private MemoryCache memoryCache; 59 public GlideBuilder setMemoryCache(MemoryCache memoryCache) { in setMemoryCache()
|
D | Glide.java | 22 import com.bumptech.glide.load.engine.cache.MemoryCache; 89 private final MemoryCache memoryCache; 187 …Glide(Engine engine, MemoryCache memoryCache, BitmapPool bitmapPool, Context context, DecodeFormat… in Glide()
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/ |
D | Engine.java | 12 import com.bumptech.glide.load.engine.cache.MemoryCache; 28 public class Engine implements EngineJobListener, MemoryCache.ResourceRemovedListener, EngineResour… 32 private final MemoryCache cache; 56 public Engine(MemoryCache memoryCache, DiskCache diskCache, ExecutorService diskCacheService, in Engine() 62 …Engine(MemoryCache cache, DiskCache diskCache, ExecutorService diskCacheService, ExecutorService s… in Engine()
|
/external/tensorflow/tensorflow/core/kernels/data/ |
D | cache_dataset_ops.cc | 616 class MemoryCache : public ResourceBase { class in tensorflow::data::__anon80340b800111::CacheDatasetOp::MemoryDataset 618 MemoryCache() = default; 702 TF_RETURN_IF_ERROR(mgr->LookupOrCreate<MemoryCache>( in Initialize() 703 "tf_data", name, &cache_, [](MemoryCache** cache) { in Initialize() 704 *cache = new MemoryCache(); in Initialize() 807 explicit MemoryWriterIterator(const Params& params, MemoryCache* cache) in MemoryWriterIterator() 866 MemoryCache* const cache_ GUARDED_BY(mu_); // not owned. 871 explicit MemoryReaderIterator(const Params& params, MemoryCache* cache) in MemoryReaderIterator() 932 MemoryCache* const cache_ GUARDED_BY(mu_); // not owned. 953 MemoryCache* cache_ GUARDED_BY(mu_); // not owned.
|
/external/ImageMagick/MagickCore/ |
D | thread-private.h | 36 ((GetImagePixelCacheType(source) != MemoryCache) && \ 38 ((GetImagePixelCacheType(destination) != MemoryCache) && \
|
D | cache.h | 33 MemoryCache, enumerator
|
D | cache.c | 322 if ((cache_info->type != MemoryCache) && (cache_info->type != MapCache)) in AcquirePixelCachePixels() 648 (((source)->type != MemoryCache) && ((source)->type != MapCache)) || \ in ClonePixelCacheRepository() 649 (((destination)->type != MemoryCache) && ((destination)->type != MapCache)) ? \ in ClonePixelCacheRepository() 686 if (((cache_info->type == MemoryCache) || in ClonePixelCacheRepository() 688 ((clone_info->type == MemoryCache) || (clone_info->type == MapCache))) in ClonePixelCacheRepository() 977 case MemoryCache: in RelinquishPixelCachePixels() 1269 if ((cache_info->type != MemoryCache) || (cache_info->mapped != MagickFalse)) in GetAuthenticOpenCLBuffer() 2332 if ((cache_info->type != MemoryCache) && (cache_info->type != MapCache)) in GetPixelCachePixels() 3747 ((cache_info->type == UndefinedCache) || (cache_info->type == MemoryCache))) in OpenPixelCache() 3775 cache_info->type=MemoryCache; in OpenPixelCache() [all …]
|
D | matrix.c | 234 matrix_info->type=MemoryCache; in AcquireMatrixInfo() 376 case MemoryCache: in DestroyMatrixInfo()
|
/external/python/oauth2client/oauth2client/ |
D | transport.py | 32 class MemoryCache(object): class 245 _CACHED_HTTP = httplib2.Http(MemoryCache())
|
D | client.py | 125 MemoryCache = transport.MemoryCache variable
|
/external/python/oauth2client/tests/ |
D | test_transport.py | 26 cache = transport.MemoryCache() 40 self.assertIsInstance(cached_http.cache, transport.MemoryCache)
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/ |
D | MemoryCache.java | 9 public interface MemoryCache { interface
|
D | MemoryCacheAdapter.java | 9 public class MemoryCacheAdapter implements MemoryCache {
|
D | LruResourceCache.java | 12 public class LruResourceCache extends LruCache<Key, Resource<?>> implements MemoryCache {
|
/external/skqp/ |
D | BUILD.gn | 1420 "tools/gpu/MemoryCache.cpp", 1421 "tools/gpu/MemoryCache.h",
|
/external/skia/ |
D | BUILD.gn | 1464 "tools/gpu/MemoryCache.cpp", 1465 "tools/gpu/MemoryCache.h",
|
D | Android.bp | 1865 "tools/gpu/MemoryCache.cpp", 2477 "tools/gpu/MemoryCache.cpp",
|
/external/skqp/dm/ |
D | DMSrcSink.cpp | 1580 sk_gpu_test::MemoryCache memoryCache; in draw()
|
/external/skia/dm/ |
D | DMSrcSink.cpp | 1513 sk_gpu_test::MemoryCache memoryCache; in draw()
|