/external/python/setuptools/pkg_resources/_vendor/ |
appdirs.py | 258 r"""Return full path to the user-specific cache dir for this application. 272 "Cache" to the base app data dir for Windows. See 275 Typical user cache directories are: 277 Unix: ~/.cache/<AppName> (XDG default) 278 Win XP: C:\Documents and Settings\<username>\Local Settings\Application Data\<AppAuthor>\<AppName>\Cache 279 Vista: C:\Users\<username>\AppData\Local\<AppAuthor>\<AppName>\Cache 284 put cache data somewhere *under* the given dir here. Some examples: 285 ...\Mozilla\Firefox\Profiles\<ProfileName>\Cache 286 ...\Acme\SuperApp\Cache\1.0 287 OPINION: This function appends "Cache" to the `CSIDL_LOCAL_APPDATA` value [all...] |
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/ |
IsaFloppy.c | 244 FdcDev->Cache = NULL;
503 // Free the cache if one was allocated
|
IsaFloppy.h | 80 UINT8 *Cache;
1082 Common interface for free cache.
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/ |
IdeBus.h | 100 UINT8 *Cache;
|
Ide.c | [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
CallEvent.h | [all...] |
/external/llvm/include/llvm/Analysis/ |
MemoryDependenceAnalysis.h | 198 /// This is an entry in the NonLocalDepInfo cache. 282 /// If the pointer is null, the cache value is not a full query that starts 332 // used when removing instructions to keep the cache coherent. 340 /// Current AA implementation, just a cache. 462 BasicBlock *BB, NonLocalDepInfo *Cache,
|
/external/skia/src/core/ |
SkColorSpaceXformer.cpp | 42 // We want to cache transformed objects for a couple of reasons: 55 // is problematic. The solution is to limit the cache scope to the top level apply() call 77 sk_sp<T> SkColorSpaceXformer::cachedApply(const T* src, Cache<T>* cache, 84 if (auto* xformed = cache->find(key)) { 89 cache->set(std::move(key), xformed);
|
/external/skqp/src/core/ |
SkColorSpaceXformer.cpp | 42 // We want to cache transformed objects for a couple of reasons: 55 // is problematic. The solution is to limit the cache scope to the top level apply() call 77 sk_sp<T> SkColorSpaceXformer::cachedApply(const T* src, Cache<T>* cache, 84 if (auto* xformed = cache->find(key)) { 89 cache->set(std::move(key), xformed);
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
MemoryDependenceAnalysis.h | 188 /// NonLocalDepEntry - This is an entry in the NonLocalDepInfo cache. For 270 /// block. If the pointer is null, the cache value is not a full query that 316 // used when removing instructions to keep the cache coherent. 324 /// Current AA implementation, just a cache. 428 NonLocalDepInfo *Cache,
|
/external/skia/infra/bots/ |
gen_tasks.go | 116 CACHES_GIT = []*specs.Cache{ 117 &specs.Cache{ 119 Path: "cache/git", 121 &specs.Cache{ 123 Path: "cache/git_cache", 126 CACHES_GO = []*specs.Cache{ 127 &specs.Cache{ 129 Path: "cache/go_cache", 132 CACHES_WORKDIR = []*specs.Cache{ 133 &specs.Cache{ [all...] |
/external/skqp/infra/bots/ |
gen_tasks.go | 118 CACHES_GIT = []*specs.Cache{ 119 &specs.Cache{ 121 Path: "cache/git", 123 &specs.Cache{ 125 Path: "cache/git_cache", 128 CACHES_GO = []*specs.Cache{ 129 &specs.Cache{ 131 Path: "cache/go_cache", 134 CACHES_WORKDIR = []*specs.Cache{ 135 &specs.Cache{ [all...] |
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
BindingGraph.java | 22 import com.google.common.cache.Cache; 23 import com.google.common.cache.CacheBuilder; 280 final Cache<BindingKey, Boolean> dependsOnLocalMultibindingsCache =
|
/external/u-boot/arch/nds32/cpu/n1213/ |
start.S | 23 #define ICAC_MEM_KBF_ISET (0x07) ! I Cache sets per way 24 #define ICAC_MEM_KBF_IWAY (0x07<<3) ! I cache ways 25 #define ICAC_MEM_KBF_ISZ (0x07<<6) ! I cache line size 26 #define DCAC_MEM_KBF_DSET (0x07) ! D Cache sets per way 27 #define DCAC_MEM_KBF_DWAY (0x07<<3) ! D cache ways 28 #define DCAC_MEM_KBF_DSZ (0x07<<6) ! D cache line size 44 #define CR_ICAC_MEM $cr1 ! I-cache/memory config reg 45 #define CR_DCAC_MEM $cr2 ! D-cache/memory config reg 326 * 1.2 Flush cache and TLB 327 * 1.3 Disable MMU and cache [all...] |
/external/volley/src/main/java/com/android/volley/toolbox/ |
DiskBasedCache.java | 22 import com.android.volley.Cache; 45 * Cache implementation that caches files directly onto the hard disk in the specified directory. 48 * <p>This cache supports the {@link Entry#allResponseHeaders} headers field. 50 public class DiskBasedCache implements Cache { 55 /** Total amount of space currently used by the cache in bytes. */ 58 /** The root directory to use for the cache. */ 61 /** The maximum size of the cache in bytes. */ 67 /** High water mark percentage for the cache */ 70 /** Magic number for current version of cache file format. */ 76 * @param rootDirectory The root directory of the cache [all...] |
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/ |
CacheBuilder.java | 17 package com.google.common.cache; 30 import com.google.common.cache.AbstractCache.SimpleStatsCounter; 31 import com.google.common.cache.AbstractCache.StatsCounter; 32 import com.google.common.cache.LocalCache.Strength; 41 * <p>A builder of {@link LoadingCache} and {@link Cache} instances having any combination of the 45 * <li>automatic loading of entries into the cache 52 * <li>accumulation of cache access statistics 56 * cache instances created by {@code CacheBuilder} will not perform any type of eviction. 85 * <p>The returned cache is implemented as a hash table with similar performance characteristics to 87 * {@link Cache} interfaces. The {@code asMap} view (and its collection views) have <i>weakl [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_link.cpp | 155 "from cache)\n", _mesa_shader_stage_to_string(shader->Stage), 351 if (brw->ctx.Cache) {
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
MemoryDependenceAnalysis.h | 209 /// This is an entry in the NonLocalDepInfo cache. 293 /// If the pointer is null, the cache value is not a full query that starts 316 /// Cache storing single nonlocal def for the instruction. 351 // used when removing instructions to keep the cache coherent. 359 /// Current AA implementation, just a cache. 497 BasicBlock *BB, NonLocalDepInfo *Cache,
|
ScalarEvolution.h | [all...] |
/frameworks/av/media/codec2/hidl/client/include/codec2/hidl/ |
client.h | 225 class Cache;
|
/external/clang/lib/AST/ |
OpenMPClause.cpp | 572 llvm::SmallPtrSet<const ValueDecl *, 8> Cache; 575 if (Cache.count(VD)) 578 Cache.insert(VD);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
LocaleDisplayNamesImpl.java | 58 private static final Cache cache = new Cache(); field in class:LocaleDisplayNamesImpl 102 synchronized (cache) { 103 return cache.get(locale, dialectHandling); 108 synchronized (cache) { 109 return cache.get(locale, contexts); 731 private static class Cache { 737 private LocaleDisplayNames cache; 747 this.cache = new LocaleDisplayNamesImpl(locale, dialectHandling) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
RelativeDateTimeFormatter.java | 397 RelativeDateTimeFormatterData data = cache.get(locale); 793 private static class Cache { 794 private final CacheBase<String, RelativeDateTimeFormatterData, ULocale> cache = field in class:RelativeDateTimeFormatter.Cache 804 return cache.getInstance(key, locale); 1201 private static final Cache cache = new Cache(); field in class:RelativeDateTimeFormatter [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
LocaleDisplayNamesImpl.java | 54 private static final Cache cache = new Cache(); field in class:LocaleDisplayNamesImpl 98 synchronized (cache) { 99 return cache.get(locale, dialectHandling); 104 synchronized (cache) { 105 return cache.get(locale, contexts); 721 private static class Cache { 727 private LocaleDisplayNames cache; 737 this.cache = new LocaleDisplayNamesImpl(locale, dialectHandling) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
RelativeDateTimeFormatter.java | 451 RelativeDateTimeFormatterData data = cache.get(locale); 856 private static class Cache { 857 private final CacheBase<String, RelativeDateTimeFormatterData, ULocale> cache = field in class:RelativeDateTimeFormatter.Cache 867 return cache.getInstance(key, locale); 1264 private static final Cache cache = new Cache(); field in class:RelativeDateTimeFormatter [all...] |