Searched refs:total_sse (Results 1 – 5 of 5) 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/webp/src/enc/ |
D | picture_psnr_enc.c | 36 double total_sse = 0.; in AccumulateLSIM() local 54 total_sse += best_sse; in AccumulateLSIM() 57 return total_sse; in AccumulateLSIM() 65 double total_sse = 0.; in AccumulateSSE() local 67 total_sse += VP8AccumulateSSE(src, ref, w); in AccumulateSSE() 71 return total_sse; in AccumulateSSE()
|
/external/libvpx/libvpx/tools/ |
D | tiny_ssim.c | 90 uint64_t total_sse = 0; in calc_plane_error() local 96 total_sse += diff * diff; in calc_plane_error() 102 return total_sse; in calc_plane_error()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rdopt.c | 167 int64_t total_sse = 0; in model_rd_for_sb() local 236 total_sse += sum_sse; in model_rd_for_sb() 274 *skip_sse_sb = total_sse << 4; in model_rd_for_sb() 3196 int64_t total_sse = INT64_MAX; in vp9_rd_pick_inter_mode_sb() local 3386 single_inter_filter, single_skippable, &total_sse, best_rd, in vp9_rd_pick_inter_mode_sb() 3417 RDCOST(x->rdmult, x->rddiv, skip_cost1, total_sse)) { in vp9_rd_pick_inter_mode_sb() 3422 assert(total_sse >= 0); in vp9_rd_pick_inter_mode_sb() 3425 distortion2 = total_sse; in vp9_rd_pick_inter_mode_sb() 3859 int64_t total_sse = INT_MAX; in vp9_rd_pick_inter_mode_sub8x8() local 4052 &rate, &rate_y, &distortion, &skippable, &total_sse, in vp9_rd_pick_inter_mode_sub8x8() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | onyx_if.c | 2320 uint64_t total_sse = 0; in calc_plane_error() local 2328 total_sse += sse; in calc_plane_error() 2340 total_sse += diff * diff; in calc_plane_error() 2356 total_sse += diff * diff; in calc_plane_error() 2364 return total_sse; in calc_plane_error()
|