/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | MemoryDependenceAnalysis.cpp | 776 static void AssertSorted(MemoryDependenceResults::NonLocalDepInfo &Cache, in AssertSorted() argument 779 Count = Cache.size(); in AssertSorted() 780 assert(std::is_sorted(Cache.begin(), Cache.begin() + Count) && in AssertSorted() 781 "Cache isn't sorted!"); in AssertSorted() 791 NonLocalDepInfo &Cache = CacheP.first; in getNonLocalCallDependency() local 798 if (!Cache.empty()) { in getNonLocalCallDependency() 803 return Cache; in getNonLocalCallDependency() 808 for (auto &Entry : Cache) in getNonLocalCallDependency() 813 llvm::sort(Cache); in getNonLocalCallDependency() 978 GetNonLocalInfoForBlock( Instruction *QueryInst, const MemoryLocation &Loc, bool isLoad, BasicBlock *BB, NonLocalDepInfo *Cache, unsigned NumSortedEntries) GetNonLocalInfoForBlock() argument 1048 SortNonLocalDepInfoCache(MemoryDependenceResults::NonLocalDepInfo &Cache, unsigned NumSortedEntries) SortNonLocalDepInfoCache() argument 1169 NonLocalDepInfo *Cache = &CacheInfo->NonLocalDeps; getNonLocalPointerDepFromBB() local [all...] |
H A D | CFLSteensAliasAnalysis.cpp | 228 auto InsertPair = Cache.insert(std::make_pair(Fn, Optional<FunctionInfo>())); in scan() 233 // Note that we can't do Cache[Fn] = buildSetsFrom(Fn) here: the function call in scan() 237 Cache[Fn] = std::move(FunInfo); in scan() 242 void CFLSteensAAResult::evict(Function *Fn) { Cache.erase(Fn); } in evict() 248 auto Iter = Cache.find(Fn); in ensureCached() 249 if (Iter == Cache.end()) { in ensureCached() 251 Iter = Cache.find(Fn); in ensureCached() 252 assert(Iter != Cache.end()); in ensureCached()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | SymbolCache.h | 1 //==- SymbolCache.h - Cache of native symbols and ids ------------*- C++ -*-==// 31 /// Cache of all stable symbols, indexed by SymIndexId. Just because a 36 std::vector<std::unique_ptr<NativeRawSymbol>> Cache; member in llvm::pdb::SymbolCache 56 SymIndexId Id = Cache.size(); in createSymbolPlaceholder() 57 Cache.push_back(nullptr); in createSymbolPlaceholder() 86 SymIndexId Id = Cache.size(); in createSymbol() 95 Cache.push_back(std::move(Result)); in createSymbol() 118 SymIndexId SymId = Cache.size(); in getOrCreateFieldListMember()
|
H A D | NativeSession.h | 101 SymbolCache &getSymbolCache() { return Cache; } in getSymbolCache() 102 const SymbolCache &getSymbolCache() const { return Cache; } in getSymbolCache() 110 SymbolCache Cache; member in llvm::pdb::NativeSession
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/ |
H A D | JITLink.cpp | 153 SplitBlockCache *Cache) { in splitBlock() 202 if (!Cache) in splitBlock() 203 Cache = &LocalBlockSymbolsCache; in splitBlock() member 204 if (*Cache == None) { in splitBlock() 205 *Cache = SplitBlockCache::value_type(); in splitBlock() 208 (*Cache)->push_back(Sym); in splitBlock() 210 llvm::sort(**Cache, [](const Symbol *LHS, const Symbol *RHS) { in splitBlock() 214 auto &BlockSymbols = **Cache; in splitBlock() 152 splitBlock(Block &B, size_t SplitIndex, SplitBlockCache *Cache) splitBlock() argument
|
/third_party/node/deps/undici/src/lib/cache/ |
H A D | cache.js | 30 class Cache { 46 webidl.brandCheck(this, Cache) 47 webidl.argumentLengthCheck(arguments, 1, { header: 'Cache.match' }) 62 webidl.brandCheck(this, Cache) 130 webidl.brandCheck(this, Cache) 131 webidl.argumentLengthCheck(arguments, 1, { header: 'Cache.add' }) 146 webidl.brandCheck(this, Cache) 147 webidl.argumentLengthCheck(arguments, 1, { header: 'Cache.addAll' }) 169 header: 'Cache.addAll', 187 header: 'Cache [all...] |
/third_party/skia/third_party/externals/swiftshader/tests/SystemUnitTests/ |
H A D | LRUCacheTests.cpp | 26 template<typename Cache> 27 void checkRange(const Cache &cache, std::vector<std::pair<typename Cache::Key, typename Cache::Data>> list) in checkRange() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
H A D | SymbolCache.cpp | 67 Cache.push_back(nullptr); in SymbolCache() 124 NativeRawSymbol &UnmodifiedNRS = *Cache[UnmodifiedId]; in createSymbolForModifiedType() 232 assert(SymbolId < Cache.size()); in getSymbolById() 235 if (SymbolId == 0 || SymbolId >= Cache.size()) in getSymbolById() 240 NativeRawSymbol *NRS = Cache[SymbolId].get(); in getSymbolById() 248 return *Cache[SymbolId]; in getNativeSymbolById()
|
H A D | NativeSession.cpp | 55 Cache(*this, getDbiStreamPtr(*Pdb)) {} in NativeSession() 93 return Cache.getSymbolById(SymbolId); in getSymbolById() 220 ExeSymbol = Cache.createSymbol<NativeExeSymbol>(); in initializeExeSymbol() 226 return Cache.getNativeSymbolById<NativeExeSymbol>(ExeSymbol); in getNativeGlobalScope()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | GenderInfo.java | 223 private static class Cache { class in GenderInfo 259 private static Cache genderInfoCache = new Cache();
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | GenderInfo.java | 227 private static class Cache { class in GenderInfo 263 private static Cache genderInfoCache = new Cache();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | DebugLoc.cpp | 84 DenseMap<const MDNode *, MDNode *> &Cache, in appendInlinedAt() 93 if (auto *Found = Cache[IA]) { in appendInlinedAt() 108 Cache[MD] = Last = DILocation::getDistinct( in appendInlinedAt() 82 appendInlinedAt(DebugLoc DL, DILocation *InlinedAt, LLVMContext &Ctx, DenseMap<const MDNode *, MDNode *> &Cache, bool ReplaceLast) appendInlinedAt() argument
|
/third_party/rust/crates/regex/src/ |
H A D | backtrack.rs | 49 m: &'a mut Cache, 55 pub struct Cache { structure names 60 impl Cache { impls 63 Cache { jobs: vec![], visited: vec![] } in new()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
H A D | D3D11on12Util.h | 80 using Cache = std::unordered_set<Ref<D3D11on12ResourceCacheEntry>, 84 Cache mCache;
|
H A D | SamplerHeapCacheD3D12.h | 82 // Cache descriptor heap allocations so that we don't create duplicate ones for every 98 using Cache = std::unordered_set<SamplerHeapCacheEntry*, 102 Cache mCache;
|
/third_party/ninja/src/ |
H A D | disk_interface.h | 100 typedef std::map<std::string, DirCache> Cache;
typedef 101 mutable Cache cache_;
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
H A D | RenderPassCache.h | 95 using Cache = 101 Cache mCache;
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
H A D | BaseLocale.java | 19 private static final Cache CACHE = new Cache(); 251 private static class Cache extends LocaleObjectCache<Key, BaseLocale> { class in BaseLocale 253 public Cache() { in Cache() method in BaseLocale.Cache
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
H A D | BaseLocale.java | 23 private static final Cache CACHE = new Cache(); 255 private static class Cache extends LocaleObjectCache<Key, BaseLocale> { class in BaseLocale 257 public Cache() { in Cache() method in BaseLocale.Cache
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/ |
H A D | PtrState.cpp | 177 bool BottomUpPtrState::InitBottomUp(ARCMDKindCache &Cache, Instruction *I) { in InitBottomUp() argument 193 I->getMetadata(Cache.get(ARCMDKindID::ImpreciseRelease)); in InitBottomUp() 351 bool TopDownPtrState::MatchWithRelease(ARCMDKindCache &Cache, in MatchWithRelease() argument 358 Release->getMetadata(Cache.get(ARCMDKindID::ImpreciseRelease)); in MatchWithRelease()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | TimeZoneNames.java | 133 private static Cache TZNAMES_CACHE = new Cache(); 509 private static class Cache extends SoftCache<String, TimeZoneNames, ULocale> { class in TimeZoneNames
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | TimeZoneNames.java | 116 private static Cache TZNAMES_CACHE = new Cache(); 487 private static class Cache extends SoftCache<String, TimeZoneNames, ULocale> { class in TimeZoneNames
|
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_shader_cache.c | 39 disk_cache_compute_key(ctx->Cache, NULL, 0, sha1); in st_get_program_binary_driver_sha1() 108 if (!st->ctx->Cache) in st_store_nir_in_disk_cache() 206 if (!ctx->Cache) in st_load_nir_from_disk_cache()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | ImmutableList.h | 153 CacheTy Cache; 183 ListTy* L = Cache.FindNodeOrInsertPos(ID, InsertPos); in concat() 192 Cache.InsertNode(L, InsertPos); in concat()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | ObjCARCAnalysisUtils.h | 92 DenseMap<const Value *, WeakTrackingVH> &Cache) { in GetUnderlyingObjCPtrCached() 93 if (auto InCache = Cache.lookup(V)) in GetUnderlyingObjCPtrCached() 97 Cache[V] = const_cast<Value *>(Computed); in GetUnderlyingObjCPtrCached() 91 GetUnderlyingObjCPtrCached(const Value *V, const DataLayout &DL, DenseMap<const Value *, WeakTrackingVH> &Cache) GetUnderlyingObjCPtrCached() argument
|