Home
last modified time | relevance | path

Searched refs:best_score (Results 1 – 6 of 6) sorted by relevance

/external/speex/libspeex/
Dltp_bfin.h160 VARDECL(spx_word32_t *best_score); in open_loop_nbest_pitch()
166 ALLOC(best_score, N, spx_word32_t); in open_loop_nbest_pitch()
173 best_score[i]=-1; in open_loop_nbest_pitch()
260 if (MULT16_16(tmp,best_ener[N-1])>MULT16_16(best_score[N-1],ADD16(1,ener16[i-start]))) in open_loop_nbest_pitch()
263 best_score[N-1]=tmp; in open_loop_nbest_pitch()
269 if (MULT16_16(tmp,best_ener[j])>MULT16_16(best_score[j],ADD16(1,ener16[i-start]))) in open_loop_nbest_pitch()
273 best_score[k]=best_score[k-1]; in open_loop_nbest_pitch()
277 best_score[j]=tmp; in open_loop_nbest_pitch()
Dltp.c176 VARDECL(spx_word32_t *best_score); in open_loop_nbest_pitch()
203 ALLOC(best_score, N, spx_word32_t); in open_loop_nbest_pitch()
207 best_score[i]=-1; in open_loop_nbest_pitch()
265 if (MULT16_16(tmp,best_ener[N-1])>MULT16_16(best_score[N-1],ADD16(1,ener16[i-start]))) in open_loop_nbest_pitch()
268 best_score[N-1]=tmp; in open_loop_nbest_pitch()
274 if (MULT16_16(tmp,best_ener[j])>MULT16_16(best_score[j],ADD16(1,ener16[i-start]))) in open_loop_nbest_pitch()
278 best_score[k]=best_score[k-1]; in open_loop_nbest_pitch()
282 best_score[j]=tmp; in open_loop_nbest_pitch()
/external/freetype/src/autofit/
Dafwarp.c118 if ( score > warper->best_score || in af_warper_compute_line_best()
119 ( score == warper->best_score && in af_warper_compute_line_best()
122 warper->best_score = score; in af_warper_compute_line_best()
167 warper->best_score = INT_MIN; in af_warper_compute()
Dafwarp.h44 AF_WarpScore best_score; member
Daflatin2.c2047 FT_Pos best_score = scores[0]; in af_latin2_hint_edges() local
2053 if (scores[nn] < best_score) in af_latin2_hint_edges()
2055 best_score = scores[nn]; in af_latin2_hint_edges()
/external/openssl/crypto/x509/
Dx509_vfy.c827 int i, crl_score, best_score = *pscore; in get_crl_sk() local
839 if (crl_score > best_score) in get_crl_sk()
843 best_score = crl_score; in get_crl_sk()
854 *pscore = best_score; in get_crl_sk()
865 if (best_score >= CRL_SCORE_VALID) in get_crl_sk()