Home | History | Annotate | Download | only in x86

Lines Matching defs:temp3

98     __m128i temp0, temp1, temp2, temp3;
130 temp3 = _mm_unpackhi_epi32(src_r2, src_r3); //c2 d2 c3 d3
133 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //a2 b2 c2 d2
134 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //a3 b3 c3 d3
139 temp3 = _mm_sub_epi32(src_r0, src_r3);
142 src_r1 = _mm_add_epi32(temp2, temp3);
144 src_r3 = _mm_sub_epi32(temp3, temp2);
159 temp3 = _mm_unpackhi_epi32(src_r2, src_r3); //c2 c3 d2 d3
162 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //c0 c1 c2 c3
163 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //d0 d1 d2 d3
168 temp3 = _mm_sub_epi32(src_r0, src_r3);
171 src_r1 = _mm_add_epi32(temp2, temp3);
173 src_r3 = _mm_sub_epi32(temp3, temp2);
198 temp3 = _mm_add_epi32(src_r3, add_rshift);
202 src_r3 = _mm_srai_epi32(temp3, 6 - u4_qp_div_6);