/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineOutliner.h | 72 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/ |
D | readShebang.js | 4 var LRU = require('lru-cache'); variable 7 var shebangCache = new LRU({ max: 50, maxAge: 30 * 1000 }); // Cache just for 30sec
|
D | resolveCommand.js | 5 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/ |
D | memoization.js | 3 const LRU = require('lru-cache') constant 8 let MEMOIZED = new LRU({
|
/third_party/node/deps/npm/node_modules/pacote/lib/fetchers/registry/ |
D | packument.js | 6 const LRU = require('lru-cache') constant 23 const MEMO = new LRU({
|
/third_party/node/deps/npm/node_modules/npm-registry-fetch/ |
D | check-response.js | 5 const LRU = require('lru-cache') constant 52 const BAD_HOSTS = new LRU({ max: 50 })
|
/third_party/node/deps/npm/node_modules/make-fetch-happen/ |
D | agent.js | 2 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/ |
D | MachineTraceMetrics.cpp | 745 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/ |
D | README.md | 16 var LRU = require("lru-cache") 21 , cache = LRU(options) 22 , otherCache = LRU(50) // sets just the max size
|
/third_party/libwebsockets/READMEs/ |
D | README.lws_cache.md | 22 ## 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.
|
D | README.http-cache.md | 6 A L1 heap cache of recent cookies is maintained, along with LRU tracking and
|
D | README.async-dns.md | 33 - LRU caching
|
D | README.jit-trust.md | 241 SKID cache is kept below this many bytes in heap, by evicting LRU entries.
|
/third_party/node/deps/npm/node_modules/lru-cache/ |
D | README.md | 16 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/ |
D | git.js | 10 const LRU = require('lru-cache') constant 122 const REVS = new LRU({
|
/third_party/ltp/testcases/kernel/mce-test/kvm/ |
D | README | 73 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/ |
D | RISCVInstrInfo.cpp | 677 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/ |
D | AArch64InstrInfo.cpp | 5516 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/ |
D | functools.rst | 159 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::
|
D | collections.rst | 1090 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/ |
D | SamplingRoutines.md | 23 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/ |
D | CHANGELOG.md | 360 * **memoization:** actually use the LRU ([0e55dc9](https://github.com/npm/cacache/commit/0e55dc9))
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/util/ |
D | README.md | 141 … in the next section) will chain all Task objects from all TaskGroup's in a single LRU linked list.
|
/third_party/libwebsockets/ |
D | CMakeLists.txt | 282 option(LWS_WITH_DISKCACHE "Hashed cache directory with lazy LRU deletion to size limit (unrelated t…
|
D | changelog | 398 with hashed names, and automatic deletion of LRU files once the cache is
|