Searched refs:best_score (Results 1 – 12 of 12) sorted by relevance
/external/speex/libspeex/ |
D | ltp_bfin.h | 160 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()
|
D | ltp.c | 176 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/ |
D | cvclique.cpp | 221 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/chromium/chrome/browser/password_manager/ |
D | password_form_manager.cc | 221 int best_score = 0; in OnRequestDone() local 248 if (current_score < best_score) { in OnRequestDone() 252 if (current_score == best_score) { in OnRequestDone() 254 } else if (current_score > best_score) { in OnRequestDone() 255 best_score = current_score; in OnRequestDone() 269 if (best_score <= 0) { in OnRequestDone()
|
/external/freetype/src/autofit/ |
D | afwarp.c | 144 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 = INT_MIN; in af_warper_compute()
|
D | afwarp.h | 44 AF_WarpScore best_score; member
|
D | aflatin2.c | 2070 FT_Pos best_score = scores[0]; in af_latin2_hint_edges() local 2076 if (scores[nn] < best_score) in af_latin2_hint_edges() 2078 best_score = scores[nn]; in af_latin2_hint_edges()
|
/external/webp/src/utils/ |
D | filters.c | 189 int best_score = 0x7fffffff; in EstimateBestFilter() local 197 if (score < best_score) { in EstimateBestFilter() 198 best_score = score; in EstimateBestFilter()
|
/external/webp/src/enc/ |
D | alpha.c | 238 size_t best_score = VP8BitWriterSize(&bw); in EncodeAlpha() local 255 if (score < best_score) { in EncodeAlpha() 260 best_score = score; in EncodeAlpha()
|
D | quant.c | 429 score_t best_score; in TrellisQuantizeBlock() local 454 best_score = RDScoreTrellis(lambda, cost, max_error); in TrellisQuantizeBlock() 535 if (score < best_score) { in TrellisQuantizeBlock() 536 best_score = score; in TrellisQuantizeBlock()
|
/external/openssl/crypto/x509/ |
D | x509_vfy.c | 823 int i, crl_score, best_score = *pscore; in get_crl_sk() local 835 if (crl_score > best_score) in get_crl_sk() 839 best_score = crl_score; in get_crl_sk() 850 *pscore = best_score; in get_crl_sk() 861 if (best_score >= CRL_SCORE_VALID) in get_crl_sk()
|
/external/opencv/cvaux/include/ |
D | cvaux.h | 327 int best_score; member
|