/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/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/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/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/node/deps/npm/node_modules/semver/classes/ |
D | range.js | 201 const LRU = require('lru-cache') constant 202 const cache = new LRU({ max: 1000 })
|
/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/elfutils/debuginfod/ |
D | ChangeLog | 892 (fdcache::intern): New option to intern at end of LRU.
|
/third_party/libwebsockets/ |
D | CMakeLists.txt | 285 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
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/ |
D | symbolize_elf.inc | 208 // are replaced in LRU order.
|
/third_party/skia/third_party/externals/freetype/docs/oldlogs/ |
D | ChangeLog.20 | 988 correct LRU behaviour.
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 2661 The functools LRU Cache decorator factory now gives an earlier and clearer
|
/third_party/skia/third_party/externals/freetype/docs/ |
D | CHANGES | 4122 - Fixed a bug in the cache manager that prevented normal LRU
|
/third_party/mesa3d/docs/relnotes/ |
D | 21.2.0.rst | 3471 - radeonsi: always use the L2 LRU cache policy for faster clears and copies
|
/third_party/node/deps/corepack/dist/lib/ |
D | corepack.cjs | 2581 var LRU = require_lru_cache(); 2582 var cache = new LRU({ max: 1e3 });
|
/third_party/openh264/res/ |
D | Cisco_Absolute_Power_1280x720_30fps.yuv | 770 …3378777:<>;<??@A>>A@?>Fa�������������ǵ���vtsprz���������������־��oVC>89;<?LRU]_aeimvz������������…
|
/third_party/python/Misc/ |
D | HISTORY | 1506 - Issue #22184: The functools LRU Cache decorator factory now gives an earlier
|