HomeSort by relevance Sort by last modified time
    Searched defs:Best (Results 1 - 24 of 24) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Support/
TargetRegistry.cpp 33 const Target *Best = 0, *EquallyBest = 0;
37 if (!Best || Qual > BestQuality) {
38 Best = &*it;
46 if (!Best) {
52 // Otherwise, take the best target, but make sure we don't have two equally
53 // good best targets.
56 Best->Name + "\" and \"" + EquallyBest->Name + "\"";
60 return Best;
CommandLine.cpp 200 Option *Best = 0;
216 if (!Best || Distance < BestDistance) {
217 Best = O;
227 return Best;
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFObjectWriter.cpp 94 /// Find the best match in the range [First, Last).
99 /// better match than B. The return value is the position of the best match.
101 /// This is similar to std::find_if but finds the best of multiple possible
106 InputIt Best = Last;
113 if (Best == Last || BetterThan(*I, *Best)) {
115 Best = I;
124 return Best;
439 // Find the best matching relocation for the current high part.
441 // compareMatchingRelocs for a description of what 'best' means
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 226 Range *Best = 0;
229 (!Best ||
230 Best->getStart().getMemoryLocation() >
232 Best = &Ranges[I];
233 return Best;
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 321 const MachineBasicBlock *Best = nullptr;
331 if (!Best || Depth < BestDepth) {
332 Best = Pred;
336 return Best;
345 const MachineBasicBlock *Best = nullptr;
361 if (!Best || Height < BestHeight) {
362 Best = Succ;
366 return Best;
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsnamed.c 302 int Best = -1;
315 if (Best == -1) Best = i;
330 if (Best == -1)
331 Best = 0;
333 v = mlu ->Entries + Best;
  /external/swiftshader/third_party/LLVM/utils/FileCheck/
FileCheck.cpp 350 // just compare against the regex itself and hope for the best.
391 // Attempt to find the closest/best fuzzy match. Usually an error happens
393 // would like to show the user a best guess at what "should have" matched, to
396 size_t Best = StringRef::npos;
414 if (Quality < BestQuality || Best == StringRef::npos) {
415 Best = i;
423 if (Best && Best != StringRef::npos && BestQuality < 50) {
424 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data() + Best),
  /external/clang/lib/Frontend/
CompilerInstance.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 465 SDNode *Best = nullptr;
472 if (!Best || (MyMaxNest > BestMaxNest)) {
473 Best = New;
477 assert(Best);
479 return Best;
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIMachineScheduler.cpp 38 // . The less the register pressure, the best load latencies are hidden
105 // equivalent to 4 instructions in the very best case (a VGPR is 64 work items,
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 478 // just compare against the regex itself and hope for the best.
531 // Attempt to find the closest/best fuzzy match. Usually an error happens
533 // would like to show the user a best guess at what "should have" matched, to
536 size_t Best = StringRef::npos;
554 if (Quality < BestQuality || Best == StringRef::npos) {
555 Best = i;
563 if (Best && Best != StringRef::npos && BestQuality < 50) {
564 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data() + Best),
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
ARMDecoderEmitter.cpp 237 /// chooses a best Filter to do its job.
338 /// ARMFilterChooser - FilterChooser chooses the best filter among a set of Filters
375 // Index of the best filter from Filters.
507 ARMFilter &Best);
519 // builds up a list of candidate filters. It chooses the best filter and
523 // Decides on the best configuration of filter(s) to use in order to decode
    [all...]
FixedLenDecoderEmitter.cpp 97 /// chooses a best Filter to do its job.
197 /// FilterChooser - FilterChooser chooses the best filter among a set of Filters
235 // Index of the best filter from Filters.
342 void emitSingletonDecoder(raw_ostream &o, unsigned &Indentation,Filter &Best);
357 // builds up a list of candidate filters. It chooses the best filter and
361 // Decides on the best configuration of filter(s) to use in order to decode
895 Filter &Best) {
897 unsigned Opc = Best.getSingletonOpc();
905 Best.getVariableFC().emit(o, Indentation);
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaInit.cpp 422 OverloadCandidateSet::iterator Best;
425 .BestViableFunction(SemaRef, Kind.getLocation(), Best);
428 CXXConstructorDecl *CtorDecl = cast<CXXConstructorDecl>(Best->Function);
    [all...]
SemaTemplate.cpp     [all...]
SemaOverload.cpp     [all...]
SemaExpr.cpp 656 // generally best to say that void types just doesn't undergo
    [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 461 Option *Best = nullptr;
477 if (!Best || Distance < BestDistance) {
478 Best = O;
488 return Best;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 303 // register and hope for the best.
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 355 // register and hope for the best.
    [all...]
  /external/vixl/src/aarch32/
disasm-aarch32.cc     [all...]

Completed in 1832 milliseconds