Lines Matching refs:score
1013 unsigned int score, max_score = 0;
1032 /* Fill up the score histogram */
1038 score = c->ops.get_scheme_score(c, t, r, s);
1039 quota->histogram[score] += damon_sz_region(r);
1040 if (score > max_score)
1041 max_score = score;
1045 /* Set the min score limit */
1046 for (cumulated_sz = 0, score = max_score; ; score--) {
1047 cumulated_sz += quota->histogram[score];
1048 if (cumulated_sz >= quota->esz || !score)
1051 quota->min_score = score;