Lines Matching refs:score
131 int score;
139 int score;
159 * First, get the score for the previously found object and terminate
162 if (!wd->score) {
163 score = find_child_checks(wd->adev, wd->check_children);
164 if (score == FIND_CHILD_MAX_SCORE)
167 wd->score = score;
170 * Second, if the object that has just been found has a better score,
172 * the new score is maximum.
174 score = find_child_checks(adev, wd->check_children);
175 if (score > wd->score) {
177 if (score == FIND_CHILD_MAX_SCORE)
180 wd->score = score;
196 .score = 0,