Home | History | Annotate | Download | only in dsp

Lines Matching defs:C0

25 static WEBP_INLINE uint32_t ClampedAddSubtractFull(uint32_t c0, uint32_t c1,
28 const __m128i C0 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c0), zero);
31 const __m128i V1 = _mm_add_epi16(C0, C1);
38 static WEBP_INLINE uint32_t ClampedAddSubtractHalf(uint32_t c0, uint32_t c1,
41 const __m128i C0 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c0), zero);
44 const __m128i avg = _mm_add_epi16(C1, C0);
61 const __m128i C0 = _mm_cvtsi32_si128(c);
62 const __m128i AC0 = _mm_subs_epu8(A0, C0);
63 const __m128i CA0 = _mm_subs_epu8(C0, A0);
64 const __m128i BC0 = _mm_subs_epu8(B0, C0);
65 const __m128i CB0 = _mm_subs_epu8(C0, B0);
405 const __m128i c0 = _mm_or_si128(a0l, b0h); // rgbrgb00|rgbrgb00
407 const __m128i c2 = _mm_srli_si128(c0, 8);
409 _mm_storel_epi64((__m128i*)(dst + 0), c0);