Searched refs:total_sse (Results 1 – 7 of 7) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/ |
D | psnr.c | 87 int64_t total_sse = 0; in get_sse() local 95 total_sse += sse; in get_sse() 102 total_sse += sse; in get_sse() 110 total_sse += sse; in get_sse() 120 return total_sse; in get_sse() 129 int64_t total_sse = 0; in highbd_get_sse_shift() local 135 total_sse += diff * diff; in highbd_get_sse_shift() 140 return total_sse; in highbd_get_sse_shift() 145 int64_t total_sse = 0; in highbd_get_sse() local 154 total_sse += sse; in highbd_get_sse() [all …]
|
/external/libaom/libaom/aom_dsp/ |
D | psnr.c | 89 int64_t total_sse = 0; in get_sse() local 97 total_sse += sse; in get_sse() 104 total_sse += sse; in get_sse() 112 total_sse += sse; in get_sse() 122 return total_sse; in get_sse() 130 int64_t total_sse = 0; in highbd_get_sse_shift() local 136 total_sse += diff * diff; in highbd_get_sse_shift() 141 return total_sse; in highbd_get_sse_shift() 146 int64_t total_sse = 0; in highbd_get_sse() local 155 total_sse += sse; in highbd_get_sse() [all …]
|
/external/webp/src/enc/ |
D | picture_psnr_enc.c | 41 double total_sse = 0.; in AccumulateLSIM() local 59 total_sse += best_sse; in AccumulateLSIM() 62 return total_sse; in AccumulateLSIM() 70 double total_sse = 0.; in AccumulateSSE() local 72 total_sse += VP8AccumulateSSE(src, ref, w); in AccumulateSSE() 76 return total_sse; in AccumulateSSE()
|
/external/libvpx/libvpx/tools/ |
D | tiny_ssim.c | 35 uint64_t total_sse = 0; in calc_plane_error16() local 45 total_sse += diff * diff; in calc_plane_error16() 51 return total_sse; in calc_plane_error16() 59 uint64_t total_sse = 0; in calc_plane_error() local 69 total_sse += diff * diff; in calc_plane_error() 75 return total_sse; in calc_plane_error()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rdopt.c | 169 int64_t total_sse = 0; in model_rd_for_sb() local 238 total_sse += sum_sse; in model_rd_for_sb() 276 *skip_sse_sb = total_sse << 4; in model_rd_for_sb() 3346 int64_t total_sse = INT64_MAX; in vp9_rd_pick_inter_mode_sb() local 3543 single_inter_filter, single_skippable, &total_sse, best_rd, in vp9_rd_pick_inter_mode_sb() 3574 RDCOST(x->rdmult, x->rddiv, skip_cost1, total_sse)) { in vp9_rd_pick_inter_mode_sb() 3579 assert(total_sse >= 0); in vp9_rd_pick_inter_mode_sb() 3582 distortion2 = total_sse; in vp9_rd_pick_inter_mode_sb() 4020 int64_t total_sse = INT_MAX; in vp9_rd_pick_inter_mode_sub8x8() local 4219 &rate, &rate_y, &distortion, &skippable, &total_sse, in vp9_rd_pick_inter_mode_sub8x8() [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | rdopt.c | 1984 int64_t total_sse = 0; in get_sse() local 1996 total_sse += sse; in get_sse() 1998 total_sse <<= 4; in get_sse() 1999 return total_sse; in get_sse() 2019 int64_t total_sse = 0; in model_rd_for_sb() local 2047 total_sse += sse; in model_rd_for_sb() 2056 if (skip_txfm_sb) *skip_txfm_sb = total_sse == 0; in model_rd_for_sb() 2057 if (skip_sse_sb) *skip_sse_sb = total_sse << 4; in model_rd_for_sb() 2818 int64_t total_sse = 0; in model_rd_for_sb_with_dnn() local 2847 total_sse += sse; in model_rd_for_sb_with_dnn() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | onyx_if.c | 2305 uint64_t total_sse = 0; in calc_plane_error() local 2313 total_sse += sse; in calc_plane_error() 2325 total_sse += diff * diff; in calc_plane_error() 2341 total_sse += diff * diff; in calc_plane_error() 2349 return total_sse; in calc_plane_error()
|