OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BestCost
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/CodeGen/SelectionDAG/
ResourcePriorityQueue.cpp
606
signed
BestCost
= SUSchedulingCost(*Best);
610
if (SUSchedulingCost(*I) >
BestCost
) {
611
BestCost
= SUSchedulingCost(*I);
/external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.h
128
BestCost
};
/external/llvm/lib/CodeGen/
RegAllocFast.cpp
549
unsigned BestReg = 0,
BestCost
= spillImpossible;
554
DEBUG(dbgs() << "\tBestCost: " <<
BestCost
<< "\n");
560
if (Cost <
BestCost
)
561
BestReg = *I,
BestCost
= Cost;
[
all
...]
/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 579 milliseconds