Lines Matching defs:Score
748 if (AllSpecs[I].Score != AllSpecs[J].Score)
749 return AllSpecs[I].Score > AllSpecs[J].Score;
774 << " , score " << S.Score << "\n";
937 unsigned Score = 0;
941 Score += getInliningBonus(A.Formal, A.Actual);
955 << Score << " (" << (Score * 100 / FuncSize) << "%)}\n");
958 if (Score > MinInliningBonus * FuncSize / 100)
986 Score += std::max(CodeSizeSavings, LatencySavings);
995 auto &Spec = AllSpecs.emplace_back(F, S, Score, SpecSize);
1193 if (!S.Clone || (BestSpec && S.Score <= BestSpec->Score))