Home
last modified time | relevance | path

Searched refs:best_score (Results 1 – 11 of 11) 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/opencv/cvaux/src/
Dcvclique.cpp221 finder->best_score = 0;
288 if( (!finder->weighted) && (k + ce[k] - ne[k] < finder->best_score) )
413 finder->best_score = MAX(finder->best_score, k );
530 int best_score = 0;
542 if( k + ce[k] - ne[k] < best_score )
635 best_score = MAX(best_score, k );
/external/freetype/src/autofit/
Dafwarp.c144 if ( score > warper->best_score || in af_warper_compute_line_best()
145 ( score == warper->best_score && in af_warper_compute_line_best()
148 warper->best_score = score; in af_warper_compute_line_best()
196 warper->best_score = FT_INT_MIN; in af_warper_compute()
Dafwarp.h44 AF_WarpScore best_score; member
Daflatin2.c2115 FT_Pos best_score = scores[0]; in af_latin2_hint_edges() local
2121 if ( scores[nn] < best_score ) in af_latin2_hint_edges()
2123 best_score = scores[nn]; in af_latin2_hint_edges()
/external/webp/src/utils/
Dfilters.c229 int best_score = 0x7fffffff; in EstimateBestFilter() local
237 if (score < best_score) { in EstimateBestFilter()
238 best_score = score; in EstimateBestFilter()
/external/webp/src/enc/
Dquant.c563 score_t best_score; in TrellisQuantizeBlock() local
587 best_score = RDScoreTrellis(lambda, cost, 0); in TrellisQuantizeBlock()
671 if (score < best_score) { in TrellisQuantizeBlock()
672 best_score = score; in TrellisQuantizeBlock()
1084 score_t best_score = MAX_COST; in DistoRefine() local
1093 if (score < best_score) { in DistoRefine()
1095 best_score = score; in DistoRefine()
1126 if (score_i4 >= best_score) break; in DistoRefine()
1128 if (score_i4 < best_score) { in DistoRefine()
/external/boringssl/src/crypto/x509/
Dx509_vfy.c963 int crl_score, best_score = *pscore; in get_crl_sk() local
976 if (crl_score > best_score) in get_crl_sk()
980 best_score = crl_score; in get_crl_sk()
991 *pscore = best_score; in get_crl_sk()
1002 if (best_score >= CRL_SCORE_VALID) in get_crl_sk()
/external/libvncserver/x11vnc/
Dkeyboard.c1778 int best = 0, best_score = -1; in xkb_tweak_keyboard() local
1838 if (best_score == -1 || myscore < best_score) { in xkb_tweak_keyboard()
1840 best_score = myscore; in xkb_tweak_keyboard()
/external/opencv/cvaux/include/
Dcvaux.h327 int best_score; member