Lines Matching defs:score
124 * Calculate match score and gain of an LPC-filtered vector with respect to
133 * @param score pointer to variable where match score is returned
138 const float *data, float *score, float *gain)
154 *score = 0;
158 *score = *gain * c;
196 float score, gain, best_score, av_uninit(best_gain);
202 get_match_score(work, coefs, exc, NULL, NULL, data, &score, &gain);
203 if (score > best_score) {
204 best_score = score;
213 * Re-calculate the filtered vector from the vector with maximum match score
246 float g, score, best_score;
253 get_match_score(work, coefs, vect, ortho1, ortho2, data, &score, &g);
254 if (score > best_score) {
255 best_score = score;
294 * Re-calculate the filtered vector from the vector with maximum match score