Home | History | Annotate | Download | only in x86

Lines Matching refs:res_temp1_8x16b

203             __m128i res_temp_8x16b, row_8x16b, res_temp1_8x16b, res_temp2_8x16b;
235 res_temp1_8x16b = _mm_mullo_epi16(src_temp_8x16b, row_8x16b);
243 res_temp1_8x16b = _mm_add_epi16(res_temp_8x16b, res_temp1_8x16b);
244 res_temp1_8x16b = _mm_add_epi16(res_temp1_8x16b, res_temp2_8x16b);
245 res_temp1_8x16b = _mm_add_epi16(res_temp1_8x16b, res_temp3_8x16b);
247 res_temp1_8x16b = _mm_srli_epi16(res_temp1_8x16b, (log2nt + 1));
248 res_temp1_8x16b = _mm_packus_epi16(res_temp1_8x16b, zero_8x16b);
250 _mm_storel_epi64((__m128i *)(pu1_dst + (row * dst_strd) + col), res_temp1_8x16b);