Lines Matching refs:Score
275 APInt Score(64, 1); in getVariantMatchScore() local
284 Score += UserScore.getZExtValue(); in getVariantMatchScore()
312 Score += (1ULL << (NoConstructTraits + 0)); in getVariantMatchScore()
315 Score += (1ULL << (NoConstructTraits + 1)); in getVariantMatchScore()
318 Score += (1ULL << (NoConstructTraits + 2)); in getVariantMatchScore()
334 Score += (1ULL << ConstructMatches[ConstructIdx++]); in getVariantMatchScore()
337 LLVM_DEBUG(dbgs() << "[" << DEBUG_TYPE << "] Variant has a score of " << Score in getVariantMatchScore()
339 return Score; in getVariantMatchScore()
358 APInt Score = getVariantMatchScore(VMI, Ctx, ConstructMatches); in getBestVariantMatchForContext() local
359 if (Score.ult(BestScore)) in getBestVariantMatchForContext()
362 if (Score.eq(BestScore)) { in getBestVariantMatchForContext()
373 BestScore = Score; in getBestVariantMatchForContext()