Lines Matching refs:rx
35 static BOOL CheckLimitation(f32 rx, f32 ry, DSPGraphicsScalingMode mode, u16 src_width);
50 static BOOL CheckLimitation(f32 rx, f32 ry, DSPGraphicsScalingMode mode, u16 src_width) in CheckLimitation() argument
53 if (rx * ry >= 1.0f) in CheckLimitation()
59 if (DSP_CALC_SCALING_SIZE(src_width, rx) * ry >= 8192) in CheckLimitation()
65 if (DSP_CALC_SCALING_SIZE(src_width, rx) * ry >= 4096) in CheckLimitation()
298 BOOL DSPi_ScalingCore(const void* src, void* dst, u16 img_width, u16 img_height, f32 rx, f32 ry, DS… in DSPi_ScalingCore() argument
306 … SDK_TASSERTMSG(CheckLimitation(rx, ry, mode, width), "DSP_Scaling: arguments exceed the limit."); in DSPi_ScalingCore()
342 sc_param.rate_w = (u16)(rx * 1000); in DSPi_ScalingCore()
379 BOOL DSPi_ScalingFxCore(const void* src, void* dst, u16 img_width, u16 img_height, fx32 rx, fx32 ry… in DSPi_ScalingFxCore() argument
387 …SDK_TASSERTMSG(CheckLimitation(FX_FX32_TO_F32(rx), FX_FX32_TO_F32(ry), mode, width), "DSP_Scaling:… in DSPi_ScalingFxCore()
424 sc_param.rate_w = (u16)(rx / 4096.0f * 1000); in DSPi_ScalingFxCore()