Home
last modified time | relevance | path

Searched refs:MAX_Y (Results 1 – 2 of 2) sorted by relevance

/external/webp/src/dsp/
Dyuv.c249 #define MAX_Y ((1 << 10) - 1) // 10b precision over 16b-arithmetic macro
251 return (v < 0) ? 0 : (v > MAX_Y) ? MAX_Y : (uint16_t)v; in clip_y()
287 #undef MAX_Y
Dyuv_sse2.c741 #define MAX_Y ((1 << 10) - 1) // 10b precision over 16b-arithmetic macro
743 return (v < 0) ? 0 : (v > MAX_Y) ? MAX_Y : (uint16_t)v; in clip_y()
752 const __m128i max = _mm_set1_epi16(MAX_Y); in SharpYUVUpdateY_SSE2()
801 const __m128i max = _mm_set1_epi16(MAX_Y); in SharpYUVFilterRow_SSE2()
845 #undef MAX_Y