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.
270 // In-place sum of each component with mod 256.
724 const __m128i in = _mm_loadu_si128((__m128i*)&argb_data[i]);
725 const __m128i in_00g0 = _mm_and_si128(in, mask); // 00g0|00g0|...
729 const __m128i out = _mm_sub_epi8(in, in_0g0g);
752 const __m128i in = _mm_loadu_si128((__m128i*)data);
753 const __m128i in_00g0 = _mm_and_si128(in, mask); // 00g0|00g0|...
757 const __m128i out = _mm_add_epi8(in, in_0g0g);
1158 const uint32_t* const in, uint32_t* const out) {
1168 // The last predicted row in this iteration will be the top-pred row
1169 // for the first row in next iteration.
1179 if (in == out && transform->bits_ > 0) {
1192 ColorIndexInverseTransform(transform, row_start, row_end, in, out);