Searched refs:pred_hi (Results 1 – 4 of 4) sorted by relevance
/external/libaom/libaom/aom_dsp/x86/ |
D | intrapred_ssse3.c | 918 __m128i pred_hi = _mm_madd_epi16(tw_x_hi, wl_y); in smooth_predictor_wxh() local 927 pred_hi = _mm_add_epi32(pred_hi, pred_scaled_bl); in smooth_predictor_wxh() 930 pred_hi = _mm_add_epi32(pred_hi, swxtr_hi); in smooth_predictor_wxh() 933 pred_hi = _mm_srai_epi32(pred_hi, (1 + sm_weight_log2_scale)); in smooth_predictor_wxh() 935 __m128i pred = _mm_packus_epi16(pred_lo, pred_hi); in smooth_predictor_wxh() 1281 __m128i pred_hi = _mm_madd_epi16(tw_x_hi, wl_y); in smooth_v_predictor_wxh() local 1284 pred_hi = _mm_add_epi32(pred_hi, round); in smooth_v_predictor_wxh() 1286 pred_hi = _mm_srai_epi32(pred_hi, sm_weight_log2_scale); in smooth_v_predictor_wxh() 1288 __m128i pred = _mm_packus_epi16(pred_lo, pred_hi); in smooth_v_predictor_wxh() 1606 __m128i pred_hi = _mm_madd_epi16(wx_hi, tr_ly); in smooth_h_predictor_wxh() local [all …]
|
D | variance_avx2.c | 427 const __m256i pred_hi = _mm256_madd_epi16(s_hi, a_hi); in highbd_comp_mask_pred_line_avx2() local 429 _mm256_add_epi32(pred_hi, round_const), AOM_BLEND_A64_ROUND_BITS); in highbd_comp_mask_pred_line_avx2()
|
D | variance_sse2.c | 708 const __m128i pred_hi = _mm_madd_epi16(s_hi, a_hi); in highbd_comp_mask_pred_line_sse2() local 709 const __m128i pred_h = _mm_srai_epi32(_mm_add_epi32(pred_hi, round_const), in highbd_comp_mask_pred_line_sse2()
|
/external/webp/src/dsp/ |
D | lossless_enc_sse2.c | 607 const __m128i pred_hi = _mm_add_epi16(L_hi, diff_hi); in PredictorSub12_SSE2() local 608 const __m128i pred = _mm_packus_epi16(pred_lo, pred_hi); in PredictorSub12_SSE2()
|