Home
last modified time | relevance | path

Searched refs:sse_long (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/
Dvariance.c264 uint64_t sse_long = 0; in highbd_8_variance() local
266 highbd_variance64(a8, a_stride, b8, b_stride, w, h, &sse_long, &sum_long); in highbd_8_variance()
267 *sse = (uint32_t)sse_long; in highbd_8_variance()
274 uint64_t sse_long = 0; in highbd_10_variance() local
276 highbd_variance64(a8, a_stride, b8, b_stride, w, h, &sse_long, &sum_long); in highbd_10_variance()
277 *sse = (uint32_t)ROUND_POWER_OF_TWO(sse_long, 4); in highbd_10_variance()
284 uint64_t sse_long = 0; in highbd_12_variance() local
286 highbd_variance64(a8, a_stride, b8, b_stride, w, h, &sse_long, &sum_long); in highbd_12_variance()
287 *sse = (uint32_t)ROUND_POWER_OF_TWO(sse_long, 8); in highbd_12_variance()
Dpsnr.c74 uint64_t sse_long = 0; in encoder_highbd_8_variance() local
76 encoder_highbd_variance64(a8, a_stride, b8, b_stride, w, h, &sse_long, in encoder_highbd_8_variance()
78 *sse = (unsigned int)sse_long; in encoder_highbd_8_variance()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_aq_variance.c133 uint64_t sse_long = 0; in aq_highbd_8_variance() local
135 aq_highbd_variance64(a8, a_stride, b8, b_stride, w, h, &sse_long, &sum_long); in aq_highbd_8_variance()
136 *sse = (unsigned int)sse_long; in aq_highbd_8_variance()
/external/libvpx/libvpx/vpx_dsp/x86/
Dhighbd_variance_sse2.c52 uint64_t sse_long = 0; in highbd_10_variance_sse2() local
61 sse_long += sse0; in highbd_10_variance_sse2()
66 *sse = (uint32_t)ROUND_POWER_OF_TWO(sse_long, 4); in highbd_10_variance_sse2()
74 uint64_t sse_long = 0; in highbd_12_variance_sse2() local
83 sse_long += sse0; in highbd_12_variance_sse2()
88 *sse = (uint32_t)ROUND_POWER_OF_TWO(sse_long, 8); in highbd_12_variance_sse2()