Home | History | Annotate | Download | only in x86

Lines Matching refs:res_temp1_8x16b

184             __m128i res_temp_8x16b, row_8x16b, res_temp1_8x16b, res_temp2_8x16b;
215 res_temp1_8x16b = _mm_mullo_epi16(src_temp_8x16b, row_8x16b);
223 res_temp1_8x16b = _mm_add_epi16(res_temp_8x16b, res_temp1_8x16b);
224 res_temp1_8x16b = _mm_add_epi16(res_temp1_8x16b, res_temp2_8x16b);
225 res_temp1_8x16b = _mm_add_epi16(res_temp1_8x16b, res_temp3_8x16b);
227 res_temp1_8x16b = _mm_srli_epi16(res_temp1_8x16b, (log2nt + 1));
228 res_temp1_8x16b = _mm_packus_epi16(res_temp1_8x16b, zero_8x16b);
230 _mm_storel_epi64((__m128i *)(pu1_dst + (row * dst_strd) + col), res_temp1_8x16b);