Home
last modified time | relevance | path

Searched refs:best_score (Results 1 – 16 of 16) 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/webp/src/utils/
Dfilters.c56 int best_score = 0x7fffffff; in WebPEstimateBestFilter() local
64 if (score < best_score) { in WebPEstimateBestFilter()
65 best_score = score; in WebPEstimateBestFilter()
/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 = INT_MIN; in af_warper_compute()
Dafwarp.h44 AF_WarpScore best_score; member
Daflatin2.c2099 FT_Pos best_score = scores[0]; in af_latin2_hint_edges() local
2105 if ( scores[nn] < best_score ) in af_latin2_hint_edges()
2107 best_score = scores[nn]; in af_latin2_hint_edges()
/external/opencv3/3rdparty/libwebp/utils/
Dfilters.c190 int best_score = 0x7fffffff; in EstimateBestFilter() local
198 if (score < best_score) { in EstimateBestFilter()
199 best_score = score; in EstimateBestFilter()
/external/opencv3/3rdparty/libwebp/enc/
Dquant.c497 score_t best_score; in TrellisQuantizeBlock() local
522 best_score = RDScoreTrellis(lambda, cost, max_error); in TrellisQuantizeBlock()
603 if (score < best_score) { in TrellisQuantizeBlock()
604 best_score = score; in TrellisQuantizeBlock()
963 score_t best_score = MAX_COST; in DistoRefine() local
972 if (score < best_score) { in DistoRefine()
974 best_score = score; in DistoRefine()
1005 if (score_i4 >= best_score) break; in DistoRefine()
1007 if (score_i4 < best_score) { in DistoRefine()
Dalpha.c272 size_t best_score = try_filter_none ? in EncodeAlpha() local
292 if (score < best_score) { in EncodeAlpha()
297 best_score = score; in EncodeAlpha()
/external/webp/src/enc/
Dquant.c584 score_t best_score; in TrellisQuantizeBlock() local
608 best_score = RDScoreTrellis(lambda, cost, 0); in TrellisQuantizeBlock()
692 if (score < best_score) { in TrellisQuantizeBlock()
693 best_score = score; in TrellisQuantizeBlock()
1129 score_t best_score = MAX_COST; in RefineUsingDistortion() local
1143 if (score < best_score) { in RefineUsingDistortion()
1145 best_score = score; in RefineUsingDistortion()
1174 if (score_i4 >= best_score) { in RefineUsingDistortion()
1191 best_score = score_i4; in RefineUsingDistortion()
1214 rd->score = best_score; in RefineUsingDistortion()
Dvp8l.c78 uint32_t best_score = ~0U; in GreedyMinimizeDeltas() local
81 if (best_score > cur_score) { in GreedyMinimizeDeltas()
82 best_score = cur_score; in GreedyMinimizeDeltas()
/external/opencv3/modules/cudalegacy/src/
Dcalib3d.cpp254 double best_score; in solvePnPRansac() local
255 cuda::minMaxLoc(d_hypothesis_scores, NULL, &best_score, NULL, &best_idx); in solvePnPRansac()
256 int num_inliers = static_cast<int>(best_score); in solvePnPRansac()
/external/autotest/site_utils/
Dlab_inventory.py588 best_score = None
604 if recommendation is None or lab_score > best_score:
606 best_score = lab_score
/external/boringssl/src/crypto/x509/
Dx509_vfy.c968 int crl_score, best_score = *pscore; in get_crl_sk() local
981 if (crl_score > best_score) in get_crl_sk()
985 best_score = crl_score; in get_crl_sk()
996 *pscore = best_score; in get_crl_sk()
1007 if (best_score >= CRL_SCORE_VALID) in get_crl_sk()
/external/opencv/cvaux/include/
Dcvaux.h327 int best_score; member