/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | SIMachineScheduler.h | 184 void setBest(SISchedCandidate &Best) { in setBest() 185 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); in setBest() 186 SU = Best.SU; in setBest() 187 Reason = Best.Reason; in setBest() 188 SGPRUsage = Best.SGPRUsage; in setBest() 189 VGPRUsage = Best.VGPRUsage; in setBest() 190 IsLowLatency = Best.IsLowLatency; in setBest() 191 LowLatencyOffset = Best.LowLatencyOffset; in setBest() 192 HasLowLatencyNonWaitedParent = Best.HasLowLatencyNonWaitedParent; in setBest() 376 void setBest(SIBlockSchedCandidate &Best) { in setBest() [all …]
|
D | GCNILPSched.cpp | 244 auto Best = AvailQueue.begin(); in pickCandidate() local 246 auto NewBestSU = pickBest(Best->SU, I->SU); in pickCandidate() 247 if (NewBestSU != Best->SU) { in pickCandidate() 249 Best = I; in pickCandidate() 252 return &*Best; in pickCandidate()
|
D | SIMachineScheduler.cpp | 1609 std::vector<SIScheduleBlock*>::iterator Best; in pickBlock() local 1661 Best = I; in pickBlock() 1676 ReadyBlocks.erase(Best); in pickBlock() 1923 SIScheduleBlockResult Best, Temp; in schedule() local 1963 Best = Scheduler.scheduleVariant(SISchedulerBlockCreatorVariant::LatenciesAlone, in schedule() 1968 if (Best.MaxVGPRUsage > 180) { in schedule() 1983 if (Temp.MaxVGPRUsage < Best.MaxVGPRUsage) in schedule() 1984 Best = Temp; in schedule() 1989 if (Best.MaxVGPRUsage > 200) { in schedule() 2004 if (Temp.MaxVGPRUsage < Best.MaxVGPRUsage) in schedule() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | LatencyPriorityQueue.cpp | 122 std::vector<SUnit *>::iterator Best = Queue.begin(); in pop() local 125 if (Picker(*Best, *I)) in pop() 126 Best = I; in pop() 127 SUnit *V = *Best; in pop() 128 if (Best != std::prev(Queue.end())) in pop() 129 std::swap(*Best, Queue.back()); in pop()
|
D | MachineTraceMetrics.cpp | 334 const MachineBasicBlock *Best = nullptr; in pickTracePred() local 344 if (!Best || Depth < BestDepth) { in pickTracePred() 345 Best = Pred; in pickTracePred() 349 return Best; in pickTracePred() 358 const MachineBasicBlock *Best = nullptr; in pickTraceSucc() local 374 if (!Best || Height < BestHeight) { in pickTraceSucc() 375 Best = Succ; in pickTraceSucc() 379 return Best; in pickTraceSucc()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZMachineScheduler.cpp | 175 Candidate Best; in pickNode() local 182 if (Best.SU == nullptr || c < Best) { in pickNode() 183 Best = c; in pickNode() 192 if (!SU->isScheduleHigh && Best.noCost()) in pickNode() 196 assert (Best.SU != nullptr); in pickNode() 197 return Best.SU; in pickNode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | ResourcePriorityQueue.cpp | 590 std::vector<SUnit *>::iterator Best = Queue.begin(); in pop() local 592 int BestCost = SUSchedulingCost(*Best); in pop() 597 Best = I; in pop() 604 if (Picker(*Best, *I)) in pop() 605 Best = I; in pop() 608 SUnit *V = *Best; in pop() 609 if (Best != std::prev(Queue.end())) in pop() 610 std::swap(*Best, Queue.back()); in pop()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineScheduler.h | 879 void setBest(SchedCandidate &Best) { in setBest() 880 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); in setBest() 881 SU = Best.SU; in setBest() 882 Reason = Best.Reason; in setBest() 883 AtTop = Best.AtTop; in setBest() 884 RPDelta = Best.RPDelta; in setBest() 885 ResDelta = Best.ResDelta; in setBest()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | VPlanSLP.cpp | 268 VPValue *Best = nullptr; in getBest() local 285 Best = Candidate; in getBest() 292 << *cast<VPInstruction>(Best)->getUnderlyingInstr() in getBest() 294 Candidates.erase(Best); in getBest() 296 return {Mode, Best}; in getBest()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/MCTargetDesc/ |
D | MipsELFObjectWriter.cpp | 113 InputIt Best = Last; in find_best() local 120 if (Best == Last || BetterThan(*I, *Best)) { in find_best() 122 Best = I; in find_best() 131 return Best; in find_best()
|
/third_party/skia/third_party/externals/oboe/src/common/ |
D | DataConversionFlowGraph.cpp | 55 case SampleRateConversionQuality::Best: in convertOboeSRQualityToMCR() 56 return MultiChannelResampler::Quality::Best; in convertOboeSRQualityToMCR()
|
D | README.md | 15 Best: 32
|
/third_party/typescript/tests/baselines/reference/ |
D | widenToAny1.errors.txt | 8 var z1: number = foo1({ x: undefined, y: "def" }); // Best common type is any
|
D | widenToAny1.types | 11 var z1: number = foo1({ x: undefined, y: "def" }); // Best common type is any
|
D | widenToAny1.symbols | 15 var z1: number = foo1({ x: undefined, y: "def" }); // Best common type is any
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MipsScheduleP5600.td | 241 // Best/Common/Worst case = 7 / 23 / 27 246 // Best/Common/Worst case = 7 / 23 / 27 251 // Best/Common/Worst case = 7 / 31 / 35 256 // Best/Common/Worst case = 7 / 19 / 23 261 // Best/Common/Worst case = 7 / 27 / 31 266 // Best/Common/Worst case = 7 / 27 / 27 271 // Best/Common/Worst case = 7 / 27 / 31 276 // Best/Common/Worst case = 7 / 27 / 31 281 // Best/Common/Worst case = 7 / 35 / 39
|
/third_party/python/Doc/howto/ |
D | annotations.rst | 4 Annotations Best Practices 44 ``__annotations__`` data member manually. Best practice 69 Best practice for accessing the annotations dict of other 171 Best Practices For ``__annotations__`` In Any Python Version
|
/third_party/libphonenumber/resources/carrier/en/ |
D | 856.txt | 19 856208|Best Telecom
|
/third_party/skia/third_party/externals/oboe/include/oboe/ |
D | AudioStreamBase.h | 217 case SampleRateConversionQuality::Best: in isValidConfig()
|
D | Definitions.h | 251 Best, enumerator
|
/third_party/zlib/contrib/dotzlib/DotZLib/ |
D | DotZLib.cs | 74 Best = 9, enumerator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonSubtarget.cpp | 510 SUnit *Best = nullptr; in isBestZeroLatency() local 517 Best = Dst; in isBestZeroLatency() 519 if (Best != Dst) in isBestZeroLatency()
|
/third_party/skia/third_party/externals/oboe/src/flowgraph/resampler/ |
D | MultiChannelResampler.h | 48 Best, enumerator
|
D | MultiChannelResampler.cpp | 69 case Quality::Best: in make()
|
/third_party/icu/tools/scripts/cpysearch/ |
D | readme.txt | 6 …script used to detect the files that might not have the copyright notice. Best when used on window…
|