Searched defs:Cache (Results 1 - 25 of 96) sorted by relevance

1234

/external/compiler-rt/test/tsan/
H A Dstatic_init2.cc6 struct Cache { struct
8 explicit Cache(int x) function in struct:Cache
13 void foo(Cache *my) {
14 static Cache *c = my ? my : new Cache(rand());
20 foo(new Cache(rand()));
H A Dstatic_init3.cc7 struct Cache { struct
11 Cache g_cache;
13 Cache *CreateCache() {
18 _Atomic(Cache*) queue;
21 static Cache *c = CreateCache();
27 Cache *c = 0;
H A Dstatic_init4.cc7 struct Cache { struct
9 explicit Cache(int x) function in struct:Cache
16 Cache *CreateCache() {
18 return new Cache(rand());
22 static Cache *c = CreateCache();
H A Dstatic_init5.cc7 struct Cache { struct
9 explicit Cache(int x) function in struct:Cache
15 return new Cache((int)(long)p);
18 Cache *CreateCache() {
23 return (Cache*)res;
27 static Cache *c = CreateCache();
H A Dstatic_init6.cc7 struct Cache { struct
9 explicit Cache(int x) function in struct:Cache
15 return new Cache((int)(long)p);
18 Cache *CreateCache() {
23 return (Cache*)res;
27 static Cache *c = CreateCache();
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/
H A Dlibhttplib2.tex72 The module can optionally operate with a private cache that understands the Cache-Control: header and uses both the ETag and Last-Modified cache validators.
186 FileCache implements a Cache as a directory of files.
298 \subsection{Cache Objects}
308 \begin{methoddesc}[Cache]{get}{key}
312 \begin{methoddesc}[Cache]{set}{key, value}
316 \begin{methoddesc}[Cache]{delete}{key}
/external/clang/lib/Basic/
H A DFileSystemStatCache.cpp45 FileSystemStatCache *Cache, vfs::FileSystem &FS) {
50 if (Cache)
51 R = Cache->getStat(Path, Data, isFile, F, FS);
121 // Cache file 'stat' results and directories with absolutely paths.
43 get(const char *Path, FileData &Data, bool isFile, std::unique_ptr<vfs::File> *F, FileSystemStatCache *Cache, vfs::FileSystem &FS) argument
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_dense_alloc_test.cc26 typedef Alloc::Cache Cache; typedef
31 Cache cache;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_dense_alloc.h39 typedef DenseSlabAllocCache Cache; typedef in class:__tsan::DenseSlabAlloc
40 typedef typename Cache::IndexT IndexT;
61 IndexT Alloc(Cache *c) {
67 void Free(Cache *c, IndexT idx) {
69 if (c->pos == Cache::kSize)
80 void FlushCache(Cache *c) {
89 void InitCache(Cache *c) {
100 void Refill(Cache *c) {
118 for (uptr i = 0; i < Cache::kSize / 2 && freelist_ != 0; i++) {
125 void Drain(Cache *
[all...]
/external/guava/guava/src/com/google/common/cache/
H A DCache.java33 * A semi-persistent mapping from keys to values. Cache entries are manually added using
50 public interface Cache<K, V> { interface
/external/llvm/include/llvm/Analysis/
H A DCFLAliasAnalysis.h107 DenseMap<Function *, Optional<FunctionInfo>> Cache; member in class:llvm::CFLAAResult
/external/skia/include/core/
H A DSkImageFilter.h39 class Cache : public SkRefCnt { class in class:SkImageFilter
42 virtual ~Cache() {}
43 static Cache* Create(size_t maxBytes);
44 static Cache* Get();
55 Context(const SkMatrix& ctm, const SkIRect& clipBounds, Cache* cache)
63 Cache* cache() const { return fCache; }
68 Cache* fCache;
458 mutable SkTArray<Cache::Key> fCacheKeys;
/external/chromium-trace/catapult/telemetry/telemetry/
H A Ddecorators.py14 def Cache(obj): function
18 @Cache
/external/clang/include/clang/Basic/
H A DFileSystemStatCache.h72 std::unique_ptr<vfs::File> *F, FileSystemStatCache *Cache,
77 void setNextStatCache(std::unique_ptr<FileSystemStatCache> Cache) { argument
78 NextStatCache = std::move(Cache);
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
H A DBaseLocale.java21 private static final Cache CACHE = new Cache();
247 private static class Cache extends LocaleObjectCache<Key, BaseLocale> { class in class:BaseLocale
249 public Cache() { method in class:BaseLocale.Cache
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DGenderInfo.java222 private static class Cache { class in class:GenderInfo
258 private static Cache genderInfoCache = new Cache();
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
H A DBaseLocale.java17 private static final Cache CACHE = new Cache();
243 private static class Cache extends LocaleObjectCache<Key, BaseLocale> { class in class:BaseLocale
245 public Cache() { method in class:BaseLocale.Cache
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A DBaseLocale.java17 private static final Cache CACHE = new Cache();
243 private static class Cache extends LocaleObjectCache<Key, BaseLocale> { class in class:BaseLocale
245 public Cache() { method in class:BaseLocale.Cache
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DGenderInfo.java220 private static class Cache { class in class:GenderInfo
256 private static Cache genderInfoCache = new Cache();
/external/llvm/lib/Transforms/ObjCARC/
H A DPtrState.cpp165 bool BottomUpPtrState::InitBottomUp(ARCMDKindCache &Cache, Instruction *I) { argument
180 I->getMetadata(Cache.get(ARCMDKindID::ImpreciseRelease));
321 bool TopDownPtrState::MatchWithRelease(ARCMDKindCache &Cache, argument
328 Release->getMetadata(Cache.get(ARCMDKindID::ImpreciseRelease));
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
H A Dresolver.py160 class Cache(object): class in inherits:object
278 @type cache: dns.resolver.Cache object
/external/clang/lib/Frontend/
H A DFrontendAction.cpp445 StringRef Cache = local
447 if (!Cache.empty())
449 CI.getPCHContainerReader(), Cache);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h45 typedef QuarantineCache<Callback> Cache; typedef in class:__sanitizer::Quarantine
60 void Put(Cache *c, Callback cb, Node *ptr, uptr size) {
66 void NOINLINE Drain(Cache *c, Callback cb) {
84 Cache cache_;
88 Cache tmp;
101 void NOINLINE DoRecycle(Cache *c, Callback cb) {
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DListFormatter.java298 private static class Cache { class in class:ListFormatter
325 static Cache cache = new Cache();
H A DTimeZoneNames.java114 private static Cache TZNAMES_CACHE = new Cache();
483 private static class Cache extends SoftCache<String, TimeZoneNames, ULocale> { class in class:TimeZoneNames

Completed in 549 milliseconds

1234