Lines Matching defs:Score
273 APInt Score(64, 1);
282 Score += UserScore.getZExtValue();
310 Score += (1ULL << (NoConstructTraits + 0));
313 Score += (1ULL << (NoConstructTraits + 1));
316 Score += (1ULL << (NoConstructTraits + 2));
332 Score += (1ULL << ConstructMatches[ConstructIdx++]);
335 LLVM_DEBUG(dbgs() << "[" << DEBUG_TYPE << "] Variant has a score of " << Score
337 return Score;
356 APInt Score = getVariantMatchScore(VMI, Ctx, ConstructMatches);
357 if (Score.ult(BestScore))
360 if (Score.eq(BestScore)) {
371 BestScore = Score;