Home | History | Annotate | Download | only in x86

Lines Matching refs:step

20   __m128i temp[2], step[4];
27 step[0] = multiplication_round_shift_sse4_1(temp, cospi_16_64);
30 step[1] = multiplication_round_shift_sse4_1(temp, cospi_16_64);
31 highbd_butterfly_sse4_1(io[1], io[3], cospi_24_64, cospi_8_64, &step[2],
32 &step[3]);
35 io[0] = _mm_add_epi32(step[0], step[3]); // step[0] + step[3]
36 io[1] = _mm_add_epi32(step[1], step[2]); // step[1] + step[2]
37 io[2] = _mm_sub_epi32(step[1], step[2]); // step[1] - step[2]
38 io[3] = _mm_sub_epi32(step[0], step[3]); // step[0] - step[3]