Home
last modified time | relevance | path

Searched refs:Best (Results 1 – 25 of 99) sorted by relevance

1234

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.h182 void setBest(SISchedCandidate &Best) { in setBest()
183 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); in setBest()
184 SU = Best.SU; in setBest()
185 Reason = Best.Reason; in setBest()
186 SGPRUsage = Best.SGPRUsage; in setBest()
187 VGPRUsage = Best.VGPRUsage; in setBest()
188 IsLowLatency = Best.IsLowLatency; in setBest()
189 LowLatencyOffset = Best.LowLatencyOffset; in setBest()
190 HasLowLatencyNonWaitedParent = Best.HasLowLatencyNonWaitedParent; in setBest()
374 void setBest(SIBlockSchedCandidate &Best) { in setBest()
[all …]
H A DGCNILPSched.cpp243 auto Best = AvailQueue.begin(); in pickCandidate() local
245 auto NewBestSU = pickBest(Best->SU, I->SU); in pickCandidate()
246 if (NewBestSU != Best->SU) { in pickCandidate()
248 Best = I; in pickCandidate()
251 return &*Best; in pickCandidate()
H A DSIMachineScheduler.cpp1591 std::vector<SIScheduleBlock*>::iterator Best; in pickBlock() local
1643 Best = I; in pickBlock()
1658 ReadyBlocks.erase(Best); in pickBlock()
1902 SIScheduleBlockResult Best, Temp; in schedule() local
1943 Best = Scheduler.scheduleVariant(SISchedulerBlockCreatorVariant::LatenciesAlone, in schedule()
1948 if (Best.MaxVGPRUsage > 180) { in schedule()
1963 if (Temp.MaxVGPRUsage < Best.MaxVGPRUsage) in schedule()
1964 Best = Temp; in schedule()
1969 if (Best.MaxVGPRUsage > 200) { in schedule()
1984 if (Temp.MaxVGPRUsage < Best.MaxVGPRUsage) in schedule()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/
H A DInterpolatingCompilationDatabase.cpp363 std::pair<size_t, int> Best = in chooseProxy() local
368 llvm::dbgs() << "interpolate: chose " << OriginalPaths[Best.first] in chooseProxy()
373 << " score=" << Best.second << "\n"); in chooseProxy()
374 return OriginalPaths[Best.first]; in chooseProxy()
435 ScoredCandidate Best = {size_t(-1), false, 0, 0}; in pickWinner() local
442 if (!S.Preferred && Best.Preferred) in pickWinner()
444 if (S.Preferred == Best.Preferred) { in pickWinner()
445 if (S.Points < Best.Points) in pickWinner()
447 if (S.Points == Best.Points) { in pickWinner()
449 if (S.PrefixLength < Best.PrefixLength) in pickWinner()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DLatencyPriorityQueue.cpp119 std::vector<SUnit *>::iterator Best = Queue.begin(); in pop() local
122 if (Picker(*Best, *I)) in pop()
123 Best = I; in pop()
124 SUnit *V = *Best; in pop()
125 if (Best != std::prev(Queue.end())) in pop()
126 std::swap(*Best, Queue.back()); in pop()
H A DMachineTraceMetrics.cpp334 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZMachineScheduler.cpp176 Candidate Best; in pickNode() local
183 if (Best.SU == nullptr || c < Best) { in pickNode()
184 Best = c; in pickNode()
193 if (!SU->isScheduleHigh && Best.noCost()) in pickNode()
197 assert (Best.SU != nullptr); in pickNode()
198 return Best.SU; in pickNode()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DResourcePriorityQueue.cpp594 std::vector<SUnit *>::iterator Best = Queue.begin(); in pop() local
596 int BestCost = SUSchedulingCost(*Best); in pop()
601 Best = I; in pop()
608 if (Picker(*Best, *I)) in pop()
609 Best = I; in pop()
612 SUnit *V = *Best; in pop()
613 if (Best != std::prev(Queue.end())) in pop()
614 std::swap(*Best, Queue.back()); in pop()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaOverload.cpp1384 if (Cand->Best) in TryUserDefinedConversion()
3365 OverloadCandidateSet::iterator Best; in IsInitializerListConstructorConversion() local
3367 CandidateSet.BestViableFunction(S, From->getBeginLoc(), Best)) { in IsInitializerListConstructorConversion()
3371 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Best->Function); in IsInitializerListConstructorConversion()
3377 User.FoundConversionFunction = Best->FoundDecl; in IsInitializerListConstructorConversion()
3545 OverloadCandidateSet::iterator Best; in IsUserDefinedConversion() local
3547 CandidateSet.BestViableFunction(S, From->getBeginLoc(), Best)) { in IsUserDefinedConversion()
3552 = dyn_cast<CXXConstructorDecl>(Best->Function)) { in IsUserDefinedConversion()
3564 if (Best->Conversions[0].isEllipsis()) in IsUserDefinedConversion()
3567 User.Before = Best->Conversions[0].Standard; in IsUserDefinedConversion()
[all …]
H A DSemaInit.cpp533 OverloadCandidateSet::iterator Best; in PerformEmptyInit() local
536 .BestViableFunction(SemaRef, Kind.getLocation(), Best); in PerformEmptyInit()
539 CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function); in PerformEmptyInit()
3928 OverloadCandidateSet::iterator &Best, in ResolveConstructorOverload() argument
4026 return CandidateSet.BestViableFunction(S, DeclLoc, Best); in ResolveConstructorOverload()
4105 OverloadCandidateSet::iterator Best; in TryConstructorInitialization() local
4124 CandidateSet, DestType, Ctors, Best, in TryConstructorInitialization()
4138 CandidateSet, DestType, Ctors, Best, in TryConstructorInitialization()
4157 if (auto *CD = dyn_cast<CXXConversionDecl>(Best->Function)) { in TryConstructorInitialization()
4162 Sequence.AddUserConversionStep(CD, Best->FoundDecl, ConvType, in TryConstructorInitialization()
[all …]
/netbsd-src/external/bsd/openldap/dist/doc/rfc/
H A Drfc4520.txt11 Category: Best Current Practice
19 This document specifies an Internet Best Current Practices for the
58 Zeilenga Best Current Practice [Page 1]
114 Zeilenga Best Current Practice [Page 2]
170 Zeilenga Best Current Practice [Page 3]
226 Zeilenga Best Current Practice [Page 4]
282 Zeilenga Best Current Practice [Page 5]
338 Zeilenga Best Current Practice [Page 6]
394 Zeilenga Best Current Practice [Page 7]
450 Zeilenga Best Current Practice [Page 8]
[all …]
H A Drfc4521.txt10 Category: Best Current Practice
18 This document specifies an Internet Best Current Practices for the
58 Zeilenga Best Current Practice [Page 1]
114 Zeilenga Best Current Practice [Page 2]
170 Zeilenga Best Current Practice [Page 3]
226 Zeilenga Best Current Practice [Page 4]
282 Zeilenga Best Current Practice [Page 5]
338 Zeilenga Best Current Practice [Page 6]
394 Zeilenga Best Current Practice [Page 7]
450 Zeilenga Best Current Practice [Page 8]
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h893 void setBest(SchedCandidate &Best) { in setBest()
894 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); in setBest()
895 SU = Best.SU; in setBest()
896 Reason = Best.Reason; in setBest()
897 AtTop = Best.AtTop; in setBest()
898 RPDelta = Best.RPDelta; in setBest()
899 ResDelta = Best.ResDelta; in setBest()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
H A Dubsan_diag.cc227 Range *Best = 0; in upperBound() local
230 (!Best || in upperBound()
231 Best->getStart().getMemoryLocation() > in upperBound()
233 Best = &Ranges[I]; in upperBound()
234 return Best; in upperBound()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
H A Dubsan_diag.cc229 Range *Best = 0; in upperBound() local
232 (!Best || in upperBound()
233 Best->getStart().getMemoryLocation() > in upperBound()
235 Best = &Ranges[I]; in upperBound()
236 return Best; in upperBound()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DVPlanSLP.cpp273 VPValue *Best = nullptr; in getBest() local
290 Best = Candidate; in getBest()
297 << *cast<VPInstruction>(Best)->getUnderlyingInstr() in getBest()
299 Candidates.erase(Best); in getBest()
301 return {Mode, Best}; in getBest()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/ubsan/
H A Dubsan_diag.cpp236 Range *Best = 0; in upperBound() local
239 (!Best || in upperBound()
240 Best->getStart().getMemoryLocation() > in upperBound()
242 Best = &Ranges[I]; in upperBound()
243 return Best; in upperBound()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFObjectWriter.cpp113 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsScheduleP5600.td242 // Best/Common/Worst case = 7 / 23 / 27
247 // Best/Common/Worst case = 7 / 23 / 27
252 // Best/Common/Worst case = 7 / 31 / 35
257 // Best/Common/Worst case = 7 / 19 / 23
262 // Best/Common/Worst case = 7 / 27 / 31
267 // Best/Common/Worst case = 7 / 27 / 27
272 // Best/Common/Worst case = 7 / 27 / 31
277 // Best/Common/Worst case = 7 / 27 / 31
282 // Best/Common/Worst case = 7 / 35 / 39
/netbsd-src/sys/arch/mac68k/conf/
H A DAUDIO11 # HIGHQUALITY 0x2 Best Quality supported by ASC.
H A DAUDIOSBC11 # HIGHQUALITY 0x2 Best Quality supported by ASC.
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DDiagnosticIDs.cpp688 StringRef Best; in getNearestOption() local
706 Best = ""; in getNearestOption()
709 Best = O.getName(); in getNearestOption()
714 return Best; in getNearestOption()
/netbsd-src/common/dist/zlib/contrib/dotzlib/DotZLib/
H A DDotZLib.cs74 Best = 9, enumerator
/netbsd-src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/
H A DDotZLib.cs74 Best = 9, enumerator
/netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/
H A DDotZLib.cs74 Best = 9, enumerator

1234