Home
last modified time | relevance | path

Searched refs:best_score (Results 1 – 12 of 12) 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/chromium/chrome/browser/password_manager/
Dpassword_form_manager.cc221 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/
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 = INT_MIN; in af_warper_compute()
Dafwarp.h44 AF_WarpScore best_score; member
Daflatin2.c2070 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/
Dfilters.c189 int best_score = 0x7fffffff; in EstimateBestFilter() local
197 if (score < best_score) { in EstimateBestFilter()
198 best_score = score; in EstimateBestFilter()
/external/webp/src/enc/
Dalpha.c238 size_t best_score = VP8BitWriterSize(&bw); in EncodeAlpha() local
255 if (score < best_score) { in EncodeAlpha()
260 best_score = score; in EncodeAlpha()
Dquant.c429 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/
Dx509_vfy.c823 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/
Dcvaux.h327 int best_score; member