Searched refs:sm_weight_log2_scale (Results 1 – 3 of 3) sorted by relevance
613 const __m128i d = _mm_set1_epi16((uint16_t)(1 << sm_weight_log2_scale)); in load_weight_w4()635 const __m128i round = _mm_set1_epi32((1 << sm_weight_log2_scale)); in smooth_pred_4xh()654 sum = _mm_srai_epi32(sum, 1 + sm_weight_log2_scale); in smooth_pred_4xh()751 const __m128i d = _mm_set1_epi16((uint16_t)(1 << sm_weight_log2_scale)); in load_weight_w8()790 const __m128i round = _mm_set1_epi32((1 << sm_weight_log2_scale)); in smooth_pred_8xh()813 s0 = _mm_srai_epi32(s0, 1 + sm_weight_log2_scale); in smooth_pred_8xh()817 s1 = _mm_srai_epi32(s1, 1 + sm_weight_log2_scale); in smooth_pred_8xh()891 _mm_set1_epi16((uint16_t)(1 << sm_weight_log2_scale)); in smooth_predictor_wxh()897 const __m128i round = _mm_set1_epi32((uint16_t)(1 << sm_weight_log2_scale)); in smooth_predictor_wxh()932 pred_lo = _mm_srai_epi32(pred_lo, (1 + sm_weight_log2_scale)); in smooth_predictor_wxh()[all …]
92 const int log2_scale = 1 + sm_weight_log2_scale; in smooth_predictor()93 const uint16_t scale = (1 << sm_weight_log2_scale); in smooth_predictor()121 const int log2_scale = sm_weight_log2_scale; in smooth_v_predictor()122 const uint16_t scale = (1 << sm_weight_log2_scale); in smooth_v_predictor()150 const int log2_scale = sm_weight_log2_scale; in smooth_h_predictor()151 const uint16_t scale = (1 << sm_weight_log2_scale); in smooth_h_predictor()411 const int log2_scale = 1 + sm_weight_log2_scale; in highbd_smooth_predictor()412 const uint16_t scale = (1 << sm_weight_log2_scale); in highbd_smooth_predictor()442 const int log2_scale = sm_weight_log2_scale; in highbd_smooth_v_predictor()443 const uint16_t scale = (1 << sm_weight_log2_scale); in highbd_smooth_v_predictor()[all …]
19 static const int sm_weight_log2_scale = 8; variable