Lines Matching refs:s16
29 const s16 DEFAULT_THRESHOLD_OF_NORMALIZE_STICK = 141;
34 const s16 MIN_OF_STICK_CLAMP_MODE_CIRCLE = 40;
39 const s16 MIN_OF_STICK_CLAMP_MODE_CROSS = 36;
44 const s16 LIMIT_OF_STICK_CLAMP_MAX = 145;
62 void SetStickClamp(s16 min, s16 max);
63 void SetStickClampFree(s16 min, s16 max);
64 void GetStickClamp(s16* pMin, s16* pMax) const;
67 f32 NormalizeStick(s16 x);
68 void NormalizeStickWithScale( f32* normalized_x, f32* normalized_y, s16 x, s16 y );
69 void SetNormalizeStickScaleSettings( f32 scale, s16 threshold );
70 void GetNormalizeStickScaleSettings( f32* scale, s16* threshold ) const;
73 void ClampCore(s16* pOutX, s16* pOutY,s32 x,s32 y);
76 s16 m_MinOfStickClampCircle;
77 s16 m_MinOfStickClampCross;
78 s16 m_MinOfStickClampMinimum;
79 s16 m_MaxOfStickClampCircle;
80 s16 m_MaxOfStickClampCross;
81 s16 m_MaxOfStickClampMinimum;
84 s16 m_Threshold;
94 inline void AnalogStickClamper::GetStickClamp(s16* pMin, s16* pMax) const in GetStickClamp()