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

  /frameworks/base/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...]
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 620 EvictionCost BestCost(~0u);
626 BestCost.BrokenHints = 0;
627 BestCost.MaxWeight = VirtReg.weight;
644 if (!canEvictInterference(VirtReg, PhysReg, false, BestCost))
    [all...]
RegAllocFast.cpp 515 unsigned BestReg = 0, BestCost = spillImpossible;
520 DEBUG(dbgs() << "\tBestCost: " << BestCost << "\n");
524 if (Cost < BestCost)
525 BestReg = *I, BestCost = Cost;
    [all...]

Completed in 137 milliseconds