Home | History | Annotate | Download | only in dsp

Lines Matching defs:c0

24 static WEBP_INLINE uint32_t ClampedAddSubtractFull(uint32_t c0, uint32_t c1,
27 const __m128i C0 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c0), zero);
30 const __m128i V1 = _mm_add_epi16(C0, C1);
37 static WEBP_INLINE uint32_t ClampedAddSubtractHalf(uint32_t c0, uint32_t c1,
40 const __m128i C0 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c0), zero);
43 const __m128i avg = _mm_add_epi16(C1, C0);
60 const __m128i C0 = _mm_cvtsi32_si128(c);
61 const __m128i AC0 = _mm_subs_epu8(A0, C0);
62 const __m128i CA0 = _mm_subs_epu8(C0, A0);
63 const __m128i BC0 = _mm_subs_epu8(B0, C0);
64 const __m128i CB0 = _mm_subs_epu8(C0, B0);
328 const __m128i c0 = _mm_or_si128(a0l, b0h); // rgbrgb00|rgbrgb00
330 const __m128i c2 = _mm_srli_si128(c0, 8);
332 _mm_storel_epi64((__m128i*)(dst + 0), c0);