Lines Matching refs:score
466 * value is a relative score with larger values indicating better
467 * matches. The score is weighted for the most specific compatible value
468 * to get the highest score. Matching type is next, followed by matching
489 int index = 0, score = 0;
497 score = INT_MAX/2 - (index << 2);
501 if (!score)
509 score += 2;
516 score++;
519 return score;
540 * score or 0.
545 unsigned int tmp, score = 0;
552 if (tmp > score)
553 score = tmp;
557 return score;
1086 int score, best_score = 0;
1092 score = __of_device_is_compatible(node, matches->compatible,
1094 if (score > best_score) {
1096 best_score = score;