Home | History | Annotate | Download | only in dsp

Lines Matching defs:in

4 // that can be found in the COPYING file in the root of the source
6 // in the file PATENTS. All contributing project authors may
7 // be found in the AUTHORS file in the root of the source tree.
30 const __m128i in = _mm_loadu_si128((__m128i*)&argb_data[i]); // argb
31 const __m128i A = _mm_srli_epi16(in, 8); // 0 a 0 g
34 const __m128i out = _mm_sub_epi8(in, C);
58 const __m128i in = _mm_loadu_si128((__m128i*)&argb_data[i]); // argb
59 const __m128i A = _mm_and_si128(in, mask_ag); // a 0 g 0
63 const __m128i E = _mm_slli_epi16(in, 8); // r 0 b 0
68 const __m128i out = _mm_sub_epi8(in, I);
257 // Used in loop unrolling.
264 // Used in loop unrolling.