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

  /external/llvm/lib/CodeGen/SelectionDAG/
ResourcePriorityQueue.cpp 606 signed BestCost = SUSchedulingCost(*Best);
612 if (SUSchedulingCost(*I) > BestCost) {
613 BestCost = SUSchedulingCost(*I);
  /external/llvm/lib/CodeGen/
RegAllocFast.cpp 542 unsigned BestReg = 0, BestCost = spillImpossible;
547 DEBUG(dbgs() << "\tBestCost: " << BestCost << "\n");
553 if (Cost < BestCost)
554 BestReg = *I, BestCost = Cost;
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.h 333 BestCost};
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_MotionEstimationMB.c 489 OMX_S32 Cost, BestCost;
531 Cost = BestCost = ARM_VCM4P10_MAX_COST;
557 if (Cost < BestCost)
559 BestCost = Cost;
577 *pBestCost = BestCost;
947 OMX_S32 BlockCost, PartitionCost, BestCost;
954 BestCost = ARM_VCM4P10_MAX_COST;
1025 if (PartitionCost <= BestCost)
1027 BestCost = PartitionCost;
1078 *pCost = BestCost;
    [all...]

Completed in 464 milliseconds