Lines Matching defs:Score
274 APInt Score(64, 1);
283 Score += UserScore.getZExtValue();
311 Score += (1ULL << (NoConstructTraits + 0));
314 Score += (1ULL << (NoConstructTraits + 1));
317 Score += (1ULL << (NoConstructTraits + 2));
333 Score += (1ULL << ConstructMatches[ConstructIdx++]);
336 LLVM_DEBUG(dbgs() << "[" << DEBUG_TYPE << "] Variant has a score of " << Score
338 return Score;
357 APInt Score = getVariantMatchScore(VMI, Ctx, ConstructMatches);
358 if (Score.ult(BestScore))
361 if (Score.eq(BestScore)) {
372 BestScore = Score;