HomeSort by relevance Sort by last modified time
    Searched refs:Best (Results 1 - 25 of 29) sorted by null

1 2

  /external/llvm/lib/CodeGen/
LatencyPriorityQueue.cpp 121 std::vector<SUnit *>::iterator Best = Queue.begin();
124 if (Picker(*Best, *I))
125 Best = I;
126 SUnit *V = *Best;
127 if (Best != prior(Queue.end()))
128 std::swap(*Best, Queue.back());
MachineTraceMetrics.cpp 325 const MachineBasicBlock *Best = 0;
337 if (!Best || Depth < BestDepth)
338 Best = Pred, BestDepth = Depth;
340 return Best;
349 const MachineBasicBlock *Best = 0;
367 if (!Best || Height < BestHeight)
368 Best = Succ, BestHeight = Height;
370 return Best;
    [all...]
MachineScheduler.cpp     [all...]
  /external/llvm/lib/Support/
TargetRegistry.cpp 74 const Target *Best = 0, *EquallyBest = 0;
78 if (!Best || Qual > BestQuality) {
79 Best = &*it;
87 if (!Best) {
93 // Otherwise, take the best target, but make sure we don't have two equally
94 // good best targets.
97 Best->Name + "\" and \"" + EquallyBest->Name + "\"";
101 return Best;
CommandLine.cpp 216 Option *Best = 0;
232 if (!Best || Distance < BestDistance) {
233 Best = O;
243 return Best;
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 147 Range *Best = 0;
150 (!Best ||
151 Best->getStart().getMemoryLocation() >
153 Best = &Ranges[I];
154 return Best;
  /external/llvm/lib/CodeGen/SelectionDAG/
ResourcePriorityQueue.cpp 604 std::vector<SUnit *>::iterator Best = Queue.begin();
606 signed BestCost = SUSchedulingCost(*Best);
612 Best = I;
620 if (Picker(*Best, *I))
621 Best = I;
624 SUnit *V = *Best;
625 if (Best != prior(Queue.end()))
626 std::swap(*Best, Queue.back());
ScheduleDAGRRList.cpp 464 SDNode *Best = 0;
471 if (!Best || (MyMaxNest > BestMaxNest)) {
472 Best = New;
476 assert(Best);
478 return Best;
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp     [all...]
SemaInit.cpp     [all...]
SemaTemplateInstantiate.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
SemaLookup.cpp     [all...]
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 582 StringRef Best;
593 Best = "";
596 Best = i->getName();
601 return Best;
  /external/llvm/utils/FileCheck/
FileCheck.cpp 456 // just compare against the regex itself and hope for the best.
509 // Attempt to find the closest/best fuzzy match. Usually an error happens
511 // would like to show the user a best guess at what "should have" matched, to
514 size_t Best = StringRef::npos;
532 if (Quality < BestQuality || Best == StringRef::npos) {
533 Best = i;
541 if (Best && Best != StringRef::npos && BestQuality < 50) {
542 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data() + Best),
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp     [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 190 /// chooses a best Filter to do its job.
289 /// FilterChooser - FilterChooser chooses the best filter among a set of Filters
328 // Index of the best filter from Filters.
455 const Filter &Best) const;
472 // builds up a list of candidate filters. It chooses the best filter and
476 // Decides on the best configuration of filter(s) to use in order to decode
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_failures.py 42 """Takes a set of test_failures and returns which result type best fits
43 the list of failures. "Best fits" means we use the worst type of failure.
  /external/chromium_org/chrome_frame/cfinstall/src/implementation/
dialoginteractiondelegate.js 115 // disables interaction with and dims the page contents. It would be best to
116 // only do that when show() is called. Best way is probably to push the mask
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 325 // register and hope for the best.
    [all...]
  /external/clang/include/clang/Sema/
Overload.h 77 ICK_Derived_To_Base, ///< Derived-to-base (C++ [over.best.ics])
392 /// ambiguous conversion (C++0x [over.best.ics]p10).
484 /// per C++ [over.best.ics]p10.
764 /// Find the best viable function on this overload set, if it exists.
766 OverloadCandidateSet::iterator& Best,
  /frameworks/base/docs/html/training/
training_toc.cs 682 <a href="<?cs var:toroot ?>training/best-ux.html">
683 <span class="small">Best Practices for</span><br/>
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
viewport.js 98 * @return {number} Best scale to fit the current image into the current screen.

Completed in 818 milliseconds

1 2