Lines Matching refs:Score
272 APInt Score(64, 1); in getVariantMatchScore() local
281 Score += UserScore.getZExtValue(); in getVariantMatchScore()
309 Score += (1ULL << (NoConstructTraits + 0)); in getVariantMatchScore()
312 Score += (1ULL << (NoConstructTraits + 1)); in getVariantMatchScore()
315 Score += (1ULL << (NoConstructTraits + 2)); in getVariantMatchScore()
331 Score += (1ULL << ConstructMatches[ConstructIdx++]); in getVariantMatchScore()
334 LLVM_DEBUG(dbgs() << "[" << DEBUG_TYPE << "] Variant has a score of " << Score in getVariantMatchScore()
336 return Score; in getVariantMatchScore()
355 APInt Score = getVariantMatchScore(VMI, Ctx, ConstructMatches); in getBestVariantMatchForContext() local
356 if (Score.ult(BestScore)) in getBestVariantMatchForContext()
359 if (Score.eq(BestScore)) { in getBestVariantMatchForContext()
370 BestScore = Score; in getBestVariantMatchForContext()