Home
last modified time | relevance | path

Searched refs:tmp_err (Results 1 – 7 of 7) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dfirstpass.c221 int num00, tmp_err, n; in first_pass_motion_search() local
239 tmp_err = cpi->diamond_search_sad(x, &cpi->ss_cfg[SS_CFG_SRC], &ref_mv_full, in first_pass_motion_search()
242 if (tmp_err < INT_MAX) in first_pass_motion_search()
243 tmp_err = av1_get_mvpred_var(x, &tmp_mv, ref_mv, &v_fn_ptr, 1); in first_pass_motion_search()
244 if (tmp_err < INT_MAX - new_mv_mode_penalty) tmp_err += new_mv_mode_penalty; in first_pass_motion_search()
246 if (tmp_err < *best_motion_err) { in first_pass_motion_search()
247 *best_motion_err = tmp_err; in first_pass_motion_search()
261 tmp_err = cpi->diamond_search_sad( in first_pass_motion_search()
264 if (tmp_err < INT_MAX) in first_pass_motion_search()
265 tmp_err = av1_get_mvpred_var(x, &tmp_mv, ref_mv, &v_fn_ptr, 1); in first_pass_motion_search()
[all …]
Dmbgraph.c88 unsigned int err, tmp_err; in do_16x16_motion_search() local
99 tmp_err = do_16x16_motion_iteration(cpi, ref_mv, mb_row, mb_col); in do_16x16_motion_search()
100 if (tmp_err < err) { in do_16x16_motion_search()
101 err = tmp_err; in do_16x16_motion_search()
110 tmp_err = do_16x16_motion_iteration(cpi, &zero_ref_mv, mb_row, mb_col); in do_16x16_motion_search()
111 if (tmp_err < err) { in do_16x16_motion_search()
112 err = tmp_err; in do_16x16_motion_search()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mbgraph.c81 unsigned int err, tmp_err; in do_16x16_motion_search() local
92 tmp_err = do_16x16_motion_iteration(cpi, ref_mv, &tmp_mv, mb_row, mb_col); in do_16x16_motion_search()
93 if (tmp_err < err) { in do_16x16_motion_search()
94 err = tmp_err; in do_16x16_motion_search()
101 unsigned int tmp_err; in do_16x16_motion_search() local
104 tmp_err = in do_16x16_motion_search()
106 if (tmp_err < err) { in do_16x16_motion_search()
108 err = tmp_err; in do_16x16_motion_search()
Dvp9_firstpass.c397 int num00, tmp_err, n; in first_pass_motion_search() local
417 tmp_err = cpi->diamond_search_sad(x, &cpi->ss_cfg, &ref_mv_full, &tmp_mv, in first_pass_motion_search()
420 if (tmp_err < INT_MAX) in first_pass_motion_search()
421 tmp_err = vp9_get_mvpred_var(x, &tmp_mv, ref_mv, &v_fn_ptr, 1); in first_pass_motion_search()
422 if (tmp_err < INT_MAX - new_mv_mode_penalty) tmp_err += new_mv_mode_penalty; in first_pass_motion_search()
424 if (tmp_err < *best_motion_err) { in first_pass_motion_search()
425 *best_motion_err = tmp_err; in first_pass_motion_search()
439 tmp_err = cpi->diamond_search_sad(x, &cpi->ss_cfg, &ref_mv_full, &tmp_mv, in first_pass_motion_search()
442 if (tmp_err < INT_MAX) in first_pass_motion_search()
443 tmp_err = vp9_get_mvpred_var(x, &tmp_mv, ref_mv, &v_fn_ptr, 1); in first_pass_motion_search()
[all …]
/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c418 int tmp_err; in first_pass_motion_search() local
435 tmp_err = cpi->diamond_search_sad(x, b, d, &ref_mv_full, &tmp_mv, step_param, in first_pass_motion_search()
438 if (tmp_err < INT_MAX - new_mv_mode_penalty) tmp_err += new_mv_mode_penalty; in first_pass_motion_search()
440 if (tmp_err < *best_motion_err) { in first_pass_motion_search()
441 *best_motion_err = tmp_err; in first_pass_motion_search()
456 tmp_err = cpi->diamond_search_sad(x, b, d, &ref_mv_full, &tmp_mv, in first_pass_motion_search()
459 if (tmp_err < INT_MAX - new_mv_mode_penalty) { in first_pass_motion_search()
460 tmp_err += new_mv_mode_penalty; in first_pass_motion_search()
463 if (tmp_err < *best_motion_err) { in first_pass_motion_search()
464 *best_motion_err = tmp_err; in first_pass_motion_search()
[all …]
/external/libevent/test/
Dregress_http.c196 int tmp_err = WSAGetLastError(); in http_connect() local
197 if (tmp_err != WSAEINPROGRESS && tmp_err != WSAEINVAL && in http_connect()
198 tmp_err != WSAEWOULDBLOCK) in http_connect()
/external/zlib/src/contrib/minizip/
Dzip.c1585 int tmp_err = deflateEnd(&zi->ci.stream); in zipCloseFileInZipRaw64() local
1587 err = tmp_err; in zipCloseFileInZipRaw64()