Home
last modified time | relevance | path

Searched refs:LRU (Results 1 – 25 of 40) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineOutliner.h72 LiveRegUnits LRU; member
145 LRU.init(TRI); in initLRU()
146 LRU.addLiveOuts(*MBB); in initLRU()
151 [this](MachineInstr &MI) { LRU.stepBackward(MI); }); in initLRU()
/third_party/node/deps/npm/node_modules/cross-spawn/lib/util/
DreadShebang.js4 var LRU = require('lru-cache'); variable
7 var shebangCache = new LRU({ max: 50, maxAge: 30 * 1000 }); // Cache just for 30sec
DresolveCommand.js5 var LRU = require('lru-cache'); variable
7 var commandCache = new LRU({ max: 50, maxAge: 30 * 1000 }); // Cache just for 30sec
/third_party/node/deps/npm/node_modules/cacache/lib/
Dmemoization.js3 const LRU = require('lru-cache') constant
8 let MEMOIZED = new LRU({
/third_party/node/deps/npm/node_modules/pacote/lib/fetchers/registry/
Dpackument.js6 const LRU = require('lru-cache') constant
23 const MEMO = new LRU({
/third_party/node/deps/npm/node_modules/npm-registry-fetch/
Dcheck-response.js5 const LRU = require('lru-cache') constant
52 const BAD_HOSTS = new LRU({ max: 50 })
/third_party/node/deps/npm/node_modules/make-fetch-happen/
Dagent.js2 const LRU = require('lru-cache') constant
5 let AGENT_CACHE = new LRU({ max: 50 })
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineTraceMetrics.cpp745 LiveRegUnit &LRU = RegUnits[*Units]; in updatePhysDepsDownwards() local
746 LRU.MI = UseMI; in updatePhysDepsDownwards()
747 LRU.Op = DefOp; in updatePhysDepsDownwards()
936 LiveRegUnit &LRU = RegUnits[*Units]; in updatePhysDepsUpwards() local
938 if (LRU.Cycle <= Height && LRU.MI != &MI) { in updatePhysDepsUpwards()
939 LRU.Cycle = Height; in updatePhysDepsUpwards()
940 LRU.MI = &MI; in updatePhysDepsUpwards()
941 LRU.Op = ReadOps[i]; in updatePhysDepsUpwards()
/third_party/node/deps/npm/node_modules/cross-spawn/node_modules/lru-cache/
DREADME.md16 var LRU = require("lru-cache")
21 , cache = LRU(options)
22 , otherCache = LRU(50) // sets just the max size
/third_party/libwebsockets/READMEs/
DREADME.lws_cache.md22 ## Cache size restriction, LRU and TTL
24 The max heap footprint of its items and max number of items can be capped. LRU
43 it, using LRU ordering.
DREADME.http-cache.md6 A L1 heap cache of recent cookies is maintained, along with LRU tracking and
DREADME.async-dns.md33 - LRU caching
DREADME.jit-trust.md241 SKID cache is kept below this many bytes in heap, by evicting LRU entries.
/third_party/node/deps/npm/node_modules/lru-cache/
DREADME.md16 var LRU = require("lru-cache")
21 , cache = new LRU(options)
22 , otherCache = new LRU(50) // sets just the max size
/third_party/node/deps/npm/node_modules/pacote/lib/util/
Dgit.js10 const LRU = require('lru-cache') constant
122 const REVS = new LRU({
/third_party/ltp/testcases/kernel/mce-test/kvm/
DREADME73 MCE 0x806324: dirty LRU page recovery: Recovered
81 MCE 0x75925: dirty LRU page recovery : Recovered
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVInstrInfo.cpp677 LiveRegUnits LRU = C.LRU; in getOutliningCandidateInfo() local
678 return !LRU.available(RISCV::X5); in getOutliningCandidateInfo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64InstrInfo.cpp5516 C.LRU.available(Reg) && C.UsedInSequence.available(Reg)) in findRegisterToSaveLRTo()
5755 LiveRegUnits LRU = C.LRU; in getOutliningCandidateInfo() local
5756 return (!LRU.available(AArch64::W16) || !LRU.available(AArch64::W17) || in getOutliningCandidateInfo()
5757 !LRU.available(AArch64::NZCV)); in getOutliningCandidateInfo()
5885 if (C.LRU.available(AArch64::LR) && !IsNoReturn) { in getOutliningCandidateInfo()
5999 LiveRegUnits LRU(getRegisterInfo()); in isMBBSafeToOutlineFrom() local
6002 [&LRU](MachineInstr &MI) { LRU.accumulate(MI); }); in isMBBSafeToOutlineFrom()
6005 bool W16AvailableInBlock = LRU.available(AArch64::W16); in isMBBSafeToOutlineFrom()
6006 bool W17AvailableInBlock = LRU.available(AArch64::W17); in isMBBSafeToOutlineFrom()
6007 bool NZCVAvailableInBlock = LRU.available(AArch64::NZCV); in isMBBSafeToOutlineFrom()
[all …]
/third_party/python/Doc/library/
Dfunctools.rst159 If *maxsize* is set to ``None``, the LRU feature is disabled and the cache can
194 An `LRU (least recently used) cache
195 <https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU)>`_
201 In general, the LRU cache should only be used when you want to reuse
206 Example of an LRU cache for static web content::
Dcollections.rst1090 recent accesses (for example in an `LRU cache
1183 "LRU Cache that invalidates and refreshes old entries."
1207 """ LRU cache that defers caching a result until
1210 To avoid flushing the LRU cache with one-time requests,
/third_party/skia/third_party/externals/swiftshader/docs/
DSamplingRoutines.md23 L3: At the third and last level, we use a generic least-recently-used (LRU) cache, just like the ca…
/third_party/node/deps/npm/node_modules/cacache/
DCHANGELOG.md360 * **memoization:** actually use the LRU ([0e55dc9](https://github.com/npm/cacache/commit/0e55dc9))
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/util/
DREADME.md141 … in the next section) will chain all Task objects from all TaskGroup's in a single LRU linked list.
/third_party/libwebsockets/
DCMakeLists.txt282 option(LWS_WITH_DISKCACHE "Hashed cache directory with lazy LRU deletion to size limit (unrelated t…
Dchangelog398 with hashed names, and automatic deletion of LRU files once the cache is

12