Searched refs:kSmoothWeightScale (Results 1 – 3 of 3) sorted by relevance
/external/libgav1/libgav1/src/dsp/arm/ |
D | intrapred_smooth_neon.cc | 66 return vrshrn_n_u32(pred_2, kSmoothWeightScale + 1); in CalculatePred() 257 const uint8x8_t pred_scaled = vrshrn_n_u16(pred, kSmoothWeightScale); in SmoothVertical4Or8xN_NEON() 275 const uint8x8_t pred_scaled_low = vrshrn_n_u16(pred_low, kSmoothWeightScale); in CalculateVerticalWeightsAndPred() 277 vrshrn_n_u16(pred_high, kSmoothWeightScale); in CalculateVerticalWeightsAndPred() 354 const uint8x8_t pred_scaled = vrshrn_n_u16(pred, kSmoothWeightScale); in SmoothHorizontal4Or8xN_NEON() 372 const uint8x8_t pred_scaled_low = vrshrn_n_u16(pred_low, kSmoothWeightScale); in CalculateHorizontalWeightsAndPred() 379 vrshrn_n_u16(pred_high, kSmoothWeightScale); in CalculateHorizontalWeightsAndPred()
|
/external/libgav1/libgav1/src/dsp/ |
D | intrapred_smooth.cc | 74 const uint16_t scale_value = (1 << kSmoothWeightScale); in Smooth() 88 RightShiftWithRounding(pred, kSmoothWeightScale + 1)); in Smooth() 105 const uint16_t scale_value = (1 << kSmoothWeightScale); in SmoothVertical() 115 static_cast<Pixel>(RightShiftWithRounding(pred, kSmoothWeightScale)); in SmoothVertical() 132 const uint16_t scale_value = (1 << kSmoothWeightScale); in SmoothHorizontal() 142 static_cast<Pixel>(RightShiftWithRounding(pred, kSmoothWeightScale)); in SmoothHorizontal()
|
D | constants.h | 36 kSmoothWeightScale = 8, enumerator
|