Home
last modified time | relevance | path

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

/external/webp/src/dsp/
Dyuv.c208 const int diff_y = ref[i] - src[i]; in SharpYUVUpdateY_C() local
209 const int new_y = (int)dst[i] + diff_y; in SharpYUVUpdateY_C()
211 diff += (uint64_t)abs(diff_y); in SharpYUVUpdateY_C()
Dyuv_neon.c205 const int diff_y = ref[i] - src[i]; in SharpYUVUpdateY_NEON() local
206 const int new_y = (int)(dst[i]) + diff_y; in SharpYUVUpdateY_NEON()
208 diff += (uint64_t)(abs(diff_y)); in SharpYUVUpdateY_NEON()
Dyuv_sse2.c783 const int diff_y = ref[i] - src[i]; in SharpYUVUpdateY_SSE2() local
784 const int new_y = (int)dst[i] + diff_y; in SharpYUVUpdateY_SSE2()
786 diff += (uint64_t)abs(diff_y); in SharpYUVUpdateY_SSE2()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c5843 int diff_y = buf[r * stride + c] - buf[(r + 1) * stride + c]; local
5845 IxIy += diff_x * diff_y;
5846 IyIy += diff_y * diff_y;