HomeSort by relevance Sort by last modified time
    Searched refs:q0_p0 (Results 1 - 2 of 2) sorted by null

  /external/webp/src/dsp/
dec_neon.c 452 const int8x16_t q0_p0 = vqsubq_s8(q0, p0); // (q0-p0) local
454 const int8x16_t s1 = vqaddq_s8(p1_q1, q0_p0); // (p1-q1) + 1 * (q0 - p0)
455 const int8x16_t s2 = vqaddq_s8(q0_p0, s1); // (p1-q1) + 2 * (q0 - p0)
456 const int8x16_t s3 = vqaddq_s8(q0_p0, s2); // (p1-q1) + 3 * (q0 - p0)
461 const int8x16_t q0_p0 = vqsubq_s8(q0, p0); // (q0-p0) local
462 const int8x16_t s1 = vqaddq_s8(q0_p0, q0_p0); // 2 * (q0 - p0)
463 const int8x16_t s2 = vqaddq_s8(q0_p0, s1); // 3 * (q0 - p0)
    [all...]
dec_sse2.c 297 const __m128i q0_p0 = _mm_subs_epi8(*q0, *p0); // q0 - p0 local
298 const __m128i s1 = _mm_adds_epi8(p1_q1, q0_p0); // p1 - q1 + 1 * (q0 - p0)
299 const __m128i s2 = _mm_adds_epi8(q0_p0, s1); // p1 - q1 + 2 * (q0 - p0)
300 const __m128i s3 = _mm_adds_epi8(q0_p0, s2); // p1 - q1 + 3 * (q0 - p0)
    [all...]

Completed in 487 milliseconds