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