/third_party/ffmpeg/libavfilter/ |
H A D | vf_find_rect.c | 146 static float search(FOCContext *foc, int pass, int maxpass, int xmin, int xmax, int ymin, int ymax, int *best_x, int *best_y, float best_score) in search() argument 162 if (score < best_score) { in search() 163 best_score = score; in search() 169 return best_score; in search() 176 float best_score; in filter_frame() local 186 best_score = search(foc, 0, 0, in filter_frame() 193 best_score = search(foc, 0, foc->mipmaps - 1, foc->xmin, foc->xmax, foc->ymin, foc->ymax, in filter_frame() 194 &best_x, &best_y, best_score); in filter_frame() 200 if (best_score > foc->threshold) { in filter_frame() 211 best_x, best_y, best_score); in filter_frame() [all...] |
H A D | vaapi_vpp.c | 273 int i, j, score, best_score, worst_score; in vaapi_vpp_fill_colour_standard() local 295 best_score = -1; in vaapi_vpp_fill_colour_standard() 325 (best_score == -1 || score < best_score)) { in vaapi_vpp_fill_colour_standard() 326 best_score = score; in vaapi_vpp_fill_colour_standard()
|
H A D | avfiltergraph.c | 888 int best_idx = -1, best_score = INT_MIN, best_count_diff = INT_MAX; in swap_channel_layouts_on_filter() local 951 if (score > best_score || in swap_channel_layouts_on_filter() 952 (count_diff < best_count_diff && score == best_score)) { in swap_channel_layouts_on_filter() 953 best_score = score; in swap_channel_layouts_on_filter() 994 int best_idx = -1, best_score = INT_MIN; in swap_sample_fmts_on_filter() local 1022 if (score > best_score) { in swap_sample_fmts_on_filter() 1023 best_score = score; in swap_sample_fmts_on_filter()
|
/third_party/node/deps/brotli/c/enc/ |
H A D | hash_forgetful_chain_inc.h | 206 score_t best_score = out->score; in FindLongestMatch() local 229 if (best_score < score) { in FindLongestMatch() 231 if (best_score < score) { in FindLongestMatch() 232 best_score = score; in FindLongestMatch() 236 out->score = best_score; in FindLongestMatch() 270 if (best_score < score) { in FindLongestMatch() 271 best_score = score; in FindLongestMatch() 275 out->score = best_score; in FindLongestMatch()
|
H A D | hash_longest_match64_inc.h | 175 score_t best_score = out->score; in FindLongestMatch() local 206 if (best_score < score) { in FindLongestMatch() 208 if (best_score < score) { in FindLongestMatch() 209 best_score = score; in FindLongestMatch() 213 out->score = best_score; in FindLongestMatch() 247 if (best_score < score) { in FindLongestMatch() 248 best_score = score; in FindLongestMatch() 252 out->score = best_score; in FindLongestMatch()
|
H A D | hash_longest_match_inc.h | 171 score_t best_score = out->score; in FindLongestMatch() local 202 if (best_score < score) { in FindLongestMatch() 204 if (best_score < score) { in FindLongestMatch() 205 best_score = score; in FindLongestMatch() 209 out->score = best_score; in FindLongestMatch() 242 if (best_score < score) { in FindLongestMatch() 243 best_score = score; in FindLongestMatch() 247 out->score = best_score; in FindLongestMatch()
|
H A D | hash_longest_match_quickly_inc.h | 162 score_t best_score = out->score; in FindLongestMatch() local 174 if (best_score < score) { in FindLongestMatch() 183 best_score = score; in FindLongestMatch() 209 if (best_score < score) { in FindLongestMatch() 240 if (best_score < score) { in FindLongestMatch() 244 best_score = score; in FindLongestMatch()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | hash_longest_match_inc.h | 171 score_t best_score = out->score; in FindLongestMatch() local 202 if (best_score < score) { in FindLongestMatch() 204 if (best_score < score) { in FindLongestMatch() 205 best_score = score; in FindLongestMatch() 209 out->score = best_score; in FindLongestMatch() 242 if (best_score < score) { in FindLongestMatch() 243 best_score = score; in FindLongestMatch() 247 out->score = best_score; in FindLongestMatch()
|
H A D | hash_forgetful_chain_inc.h | 206 score_t best_score = out->score; in FindLongestMatch() local 229 if (best_score < score) { in FindLongestMatch() 231 if (best_score < score) { in FindLongestMatch() 232 best_score = score; in FindLongestMatch() 236 out->score = best_score; in FindLongestMatch() 270 if (best_score < score) { in FindLongestMatch() 271 best_score = score; in FindLongestMatch() 275 out->score = best_score; in FindLongestMatch()
|
H A D | hash_longest_match64_inc.h | 175 score_t best_score = out->score; in FindLongestMatch() local 206 if (best_score < score) { in FindLongestMatch() 208 if (best_score < score) { in FindLongestMatch() 209 best_score = score; in FindLongestMatch() 213 out->score = best_score; in FindLongestMatch() 247 if (best_score < score) { in FindLongestMatch() 248 best_score = score; in FindLongestMatch() 252 out->score = best_score; in FindLongestMatch()
|
H A D | hash_longest_match_quickly_inc.h | 162 score_t best_score = out->score; in FindLongestMatch() local 174 if (best_score < score) { in FindLongestMatch() 183 best_score = score; in FindLongestMatch() 209 if (best_score < score) { in FindLongestMatch() 240 if (best_score < score) { in FindLongestMatch() 244 best_score = score; in FindLongestMatch()
|
/third_party/ffmpeg/libavcodec/ |
H A D | ra144enc.c | 196 float score, gain, best_score, av_uninit(best_gain); in adaptive_cb_search() local 199 gain = best_score = 0; in adaptive_cb_search() 203 if (score > best_score) { in adaptive_cb_search() 204 best_score = score; in adaptive_cb_search() 209 if (!best_score) in adaptive_cb_search() 246 float g, score, best_score; in find_best_vect() local 249 *idx = *gain = best_score = 0; in find_best_vect() 254 if (score > best_score) { in find_best_vect() 255 best_score = score; in find_best_vect()
|
H A D | svq1enc.c | 97 int count, y, x, i, j, split, best_mean, best_score, best_count; in encode_block() local 108 best_score = 0; in encode_block() 121 best_score += v * v; in encode_block() 135 best_score += v * v; in encode_block() 142 best_score -= (int)((unsigned)block_sum[0] * block_sum[0] >> (level + 3)); in encode_block() 180 if (best_vector_score < best_score) { in encode_block() 181 best_score = best_vector_score; in encode_block() 189 if (best_score > threshold && level) { in encode_block() 202 if (score < best_score) { in encode_block() 203 best_score in encode_block() [all...] |
H A D | cinepakenc.c | 864 unsigned char *buf, int64_t *best_score, int *no_skip) in rd_strip() 974 if (best_size == 0 || score < *best_score) { in rd_strip() 975 *best_score = score; in rd_strip() 1014 int64_t best_score = 0, score, score_temp; in rd_frame() local 1121 if (best_score == 0 || score < best_score) { in rd_frame() 1122 best_score = score; in rd_frame() 860 rd_strip(CinepakEncContext *s, int y, int h, int keyframe, uint8_t *last_data[4], int last_linesize[4], uint8_t *data[4], int linesize[4], uint8_t *scratch_data[4], int scratch_linesize[4], unsigned char *buf, int64_t *best_score, int *no_skip) rd_strip() argument
|
H A D | mpegvideo_enc.c | 3922 int best_score=256*256*256*120; in dct_quantize_trellis_c() local 3961 if(score < best_score){ in dct_quantize_trellis_c() 3962 best_score= score; in dct_quantize_trellis_c() 3987 if(score < best_score){ in dct_quantize_trellis_c() 3988 best_score= score; in dct_quantize_trellis_c() 4009 score_tab[i+1]= best_score; in dct_quantize_trellis_c() 4014 if(score_tab[ survivor[survivor_count-1] ] <= best_score) in dct_quantize_trellis_c() 4019 if(score_tab[ survivor[survivor_count-1] ] <= best_score + lambda) in dct_quantize_trellis_c() 4054 int best_score= dc * dc; in dct_quantize_trellis_c() local 4075 if(score < best_score){ in dct_quantize_trellis_c() 4223 int best_score = s->mpvencdsp.try_8x8basis(rem, weight, basis[0], 0); dct_quantize_refine() local [all...] |
H A D | flac_parser.c | 603 int best_score = 0;//FLAC_HEADER_NOT_SCORED_YET; in score_sequences() local 610 if (score_header(fpc, curr) > best_score) { in score_sequences() 612 best_score = curr->max_score; in score_sequences()
|
H A D | dxva2.c | 115 unsigned i, best_score = 0; in dxva_get_decoder_configuration() local 146 if (score > best_score) { in dxva_get_decoder_configuration() 147 best_score = score; in dxva_get_decoder_configuration() 152 if (!best_score) { in dxva_get_decoder_configuration()
|
/third_party/skia/third_party/externals/libwebp/src/utils/ |
H A D | filters_utils.c | 56 int best_score = 0x7fffffff; in WebPEstimateBestFilter() local 64 if (score < best_score) { in WebPEstimateBestFilter() 65 best_score = score; in WebPEstimateBestFilter()
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
H A D | node_to_instr.c | 261 unsigned int best_score = 0; in ppir_ready_list_pick_best() local 266 if (!best || score > best_score) { in ppir_ready_list_pick_best() 268 best_score = score; in ppir_ready_list_pick_best()
|
/third_party/ffmpeg/libavformat/ |
H A D | mp3dec.c | 503 int best_score, i, j; in mp3_sync() local 513 best_score = 999; in mp3_sync() 538 if (best_score > score && j == MIN_VALID) { in mp3_sync() 540 best_score = score; in mp3_sync()
|
H A D | avformat.c | 314 int best_score = INT_MIN; in av_find_default_stream_index() local 339 if (score > best_score) { in av_find_default_stream_index() 340 best_score = score; in av_find_default_stream_index()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | quant_enc.c | 602 score_t best_score; in TrellisQuantizeBlock() local 626 best_score = RDScoreTrellis(lambda, cost, 0); in TrellisQuantizeBlock() 709 if (score < best_score) { in TrellisQuantizeBlock() 710 best_score = score; in TrellisQuantizeBlock() 1226 score_t best_score = MAX_COST; in RefineUsingDistortion() local 1252 if (score < best_score) { in RefineUsingDistortion() 1254 best_score = score; in RefineUsingDistortion() 1293 if (score_i4 >= best_score || i4_bit_sum > bit_limit) { in RefineUsingDistortion() 1309 best_score = score_i4; in RefineUsingDistortion() 1333 rd->score = best_score; in RefineUsingDistortion() [all...] |
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/ |
H A D | scheduler.c | 1291 int best_score = INT_MIN; in try_node() local 1303 if (best_score != INT_MIN) { in try_node() 1321 best_score = score; in try_node() 1325 if (score > best_score) { in try_node() 1326 best_score = score; in try_node() 1334 best_score, best_node->sched.max_node ? " (max)" : ""); in try_node()
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | x509_vfy.c | 1060 int i, crl_score, best_score = *pscore; in get_crl_sk() local 1070 if (crl_score < best_score || crl_score == 0) in get_crl_sk() 1073 if (crl_score == best_score && best_crl != NULL) { in get_crl_sk() 1088 best_score = crl_score; in get_crl_sk() 1096 *pscore = best_score; in get_crl_sk() 1104 if (best_score >= CRL_SCORE_VALID) in get_crl_sk()
|
/third_party/openssl/crypto/x509/ |
H A D | x509_vfy.c | 1060 int i, crl_score, best_score = *pscore; in get_crl_sk() local 1070 if (crl_score < best_score || crl_score == 0) in get_crl_sk() 1073 if (crl_score == best_score && best_crl != NULL) { in get_crl_sk() 1088 best_score = crl_score; in get_crl_sk() 1096 *pscore = best_score; in get_crl_sk() 1104 if (best_score >= CRL_SCORE_VALID) in get_crl_sk()
|