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

  /external/llvm/lib/CodeGen/SelectionDAG/
ResourcePriorityQueue.cpp 604 signed BestCost = SUSchedulingCost(*Best);
608 if (SUSchedulingCost(*I) > BestCost) {
609 BestCost = SUSchedulingCost(*I);
  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.h 128 BestCost};
  /external/llvm/lib/CodeGen/
RegAllocFast.cpp 557 unsigned BestReg = 0, BestCost = spillImpossible;
562 DEBUG(dbgs() << "\tBestCost: " << BestCost << "\n");
568 if (Cost < BestCost)
569 BestReg = *I, BestCost = Cost;
    [all...]
RegAllocGreedy.cpp 360 BlockFrequency &BestCost,
830 EvictionCost BestCost;
831 BestCost.setMax();
838 BestCost.BrokenHints = 0;
839 BestCost.MaxWeight = VirtReg.weight;
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_MotionEstimationMB.c 504 OMX_S32 Cost, BestCost;
546 Cost = BestCost = ARM_VCM4P10_MAX_COST;
572 if (Cost < BestCost)
574 BestCost = Cost;
592 *pBestCost = BestCost;
962 OMX_S32 BlockCost, PartitionCost, BestCost;
969 BestCost = ARM_VCM4P10_MAX_COST;
1040 if (PartitionCost <= BestCost)
1042 BestCost = PartitionCost;
1093 *pCost = BestCost;
    [all...]

Completed in 478 milliseconds