Home
last modified time | relevance | path

Searched refs:Cache (Results 1 – 25 of 248) sorted by relevance

12345678910

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DMemoryDependenceAnalysis.cpp776 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()
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()
831 unsigned NumSortedEntries = Cache.size(); in getNonLocalCallDependency()
832 LLVM_DEBUG(AssertSorted(Cache)); in getNonLocalCallDependency()
[all …]
DCFLSteensAliasAnalysis.cpp228 auto InsertPair = Cache.insert(std::make_pair(Fn, Optional<FunctionInfo>())); 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/node/deps/undici/src/docs/api/
DCacheStorage.md3 …lla.org/en-US/docs/Web/API/CacheStorage) and [Cache](https://developer.mozilla.org/en-US/docs/Web/…
5 ## Opening a Cache
7Cache, or duplicate a Cache with an existing name, by using `CacheStorage.prototype.open`. If you …
21 ## Deleting a Cache
23 If a Cache is deleted, the cached Responses/Requests can still be used.
/third_party/libcoap/man/
Dcoap_cache.txt.in73 The CoAP Cache provides support for two opaque objects that can be used for
76 The first is the ability to derive a Cache Key from the cacheable parts of a
84 The Cache Key is a SHA256 digest if libcoap was built with TLS support,
88 This Cache Key can then be used to match against incoming PDUs and then
91 There is support for excluding specific CoAP options from the Cache Key.
97 The second is providing Cache Entries (which can be looked up by PDU and hence
98 by Cache Key) which hold additional information to make information tracking
99 simpler. These Cache Entries are automatically deleted when a session closes
100 or a context is deleted. These Cache Entries are maintained on a hashed list
153 The *coap_new_cache_entry*() function will create a new Cache Entry based on
[all …]
/third_party/node/deps/undici/src/lib/cache/
Dcachestorage.js4 const { Cache } = require('./cache')
34 const cache = new Cache(kConstruct, cacheList)
41 const cache = new Cache(kConstruct, cacheList)
88 return new Cache(kConstruct, cache)
98 return new Cache(kConstruct, cache)
Dcache.js30 class Cache { class
46 webidl.brandCheck(this, Cache)
62 webidl.brandCheck(this, Cache)
130 webidl.brandCheck(this, Cache)
146 webidl.brandCheck(this, Cache)
307 webidl.brandCheck(this, Cache)
436 webidl.brandCheck(this, Cache)
500 webidl.brandCheck(this, Cache)
788 Object.defineProperties(Cache.prototype, {
837 Cache field
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
DSymbolCache.h36 std::vector<std::unique_ptr<NativeRawSymbol>> Cache; variable
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()
DNativeSession.h101 SymbolCache &getSymbolCache() { return Cache; } in getSymbolCache()
102 const SymbolCache &getSymbolCache() const { return Cache; } in getSymbolCache()
110 SymbolCache Cache; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DJITLink.cpp153 SplitBlockCache *Cache) { in splitBlock() argument
202 if (!Cache) in splitBlock()
203 Cache = &LocalBlockSymbolsCache; in splitBlock()
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()
/third_party/skia/third_party/externals/swiftshader/tests/SystemUnitTests/
DLRUCacheTests.cpp26 template<typename Cache>
27 void checkRange(const Cache &cache, std::vector<std::pair<typename Cache::Key, typename Cache::Data… in checkRange()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DSymbolCache.cpp67 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()
DNativeSession.cpp55 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DDebugLoc.cpp84 DenseMap<const MDNode *, MDNode *> &Cache, in appendInlinedAt() argument
93 if (auto *Found = Cache[IA]) { in appendInlinedAt()
108 Cache[MD] = Last = DILocation::getDistinct( in appendInlinedAt()
/third_party/rust/crates/regex/src/
Dbacktrack.rs49 m: &'a mut Cache,
55 pub struct Cache { struct
60 impl Cache { argument
63 Cache { jobs: vec![], visited: vec![] } in new()
/third_party/mesa3d/src/util/tests/
Dcache_test.cpp524 class Cache : public ::testing::Test { class
528 Cache() { in Cache() function in Cache
531 ~Cache() { in ~Cache()
536 TEST_F(Cache, MultiFile) in TEST_F() argument
552 TEST_F(Cache, SingleFile) in TEST_F() argument
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
DGenderInfo.java227 private static class Cache { class in GenderInfo
263 private static Cache genderInfoCache = new Cache();
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DGenderInfo.java223 private static class Cache { class in GenderInfo
259 private static Cache genderInfoCache = new Cache();
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/
DFastOpenGLStateTransitions.md11 ## L3 Cache
17 ## L2 Cache
26 ## L1 Cache
44 ## L0 Cache
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DD3D11on12Util.h80 using Cache = std::unordered_set<Ref<D3D11on12ResourceCacheEntry>, variable
84 Cache mCache;
DSamplerHeapCacheD3D12.h98 using Cache = std::unordered_set<SamplerHeapCacheEntry*, variable
102 Cache mCache;
/third_party/node/deps/undici/src/types/
Dcache.d.ts6 open (cacheName: string): Promise<Cache>,
16 export interface Cache { interface
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/
DPtrState.cpp177 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/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/
DBaseLocale.java23 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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DBaseLocale.java19 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DLTO.cpp899 Error LTO::run(AddStreamFn AddStream, NativeObjectCache Cache) { in run() argument
947 Result = runThinLTO(AddStream, Cache, GUIDPreservedSymbols); in run()
1056 NativeObjectCache Cache; member in __anona98879740a11::InProcessThinBackend
1068 AddStreamFn AddStream, NativeObjectCache Cache) in InProcessThinBackend() argument
1071 AddStream(std::move(AddStream)), Cache(std::move(Cache)) { in InProcessThinBackend()
1081 AddStreamFn AddStream, NativeObjectCache Cache, unsigned Task, in runThinLTOBackendThread() argument
1100 if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) || in runThinLTOBackendThread()
1112 if (AddStreamFn CacheAddStream = Cache(Task, Key)) in runThinLTOBackendThread()
1137 AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList, in start()
1165 AddStreamFn AddStream, NativeObjectCache Cache) { in createInProcessThinBackend() argument
[all …]

12345678910