Lines Matching refs:maxScore
105 Score maxScore = 0; in buildCandidatesList() local
114 if (score > maxScore) { in buildCandidatesList()
115 maxScore = score; in buildCandidatesList()
136 if (score > maxScore) { in buildCandidatesList()
137 maxScore = score; in buildCandidatesList()
142 if (candidates->size() > CANDIDATE_BUNDLE_SIZE && maxScore != minScore) { in buildCandidatesList()
195 Score maxScore = 0; in rebuildCandidatesList() local
206 if (score > maxScore) { in rebuildCandidatesList()
207 maxScore = score; in rebuildCandidatesList()
223 candidates->resize(maxScore + 1); in rebuildCandidatesList()
224 return maxScore; in rebuildCandidatesList()
479 Score maxScore = rebuildCandidatesList( in durchschlagGenerateExclusive() local
494 if (maxScore == 0) { in durchschlagGenerateExclusive()
499 while (maxScore > 0) { in durchschlagGenerateExclusive()
500 if (candidates[maxScore] != 0) { in durchschlagGenerateExclusive()
501 candidate = candidates[maxScore]; in durchschlagGenerateExclusive()
502 candidates[maxScore] = next[candidate]; in durchschlagGenerateExclusive()
505 maxScore--; in durchschlagGenerateExclusive()
507 if (maxScore == 0) { in durchschlagGenerateExclusive()
521 if (score < maxScore) { in durchschlagGenerateExclusive()
526 maxScore = rebuildCandidatesList( in durchschlagGenerateExclusive()
533 } else if (score > maxScore) { in durchschlagGenerateExclusive()