Lines Matching refs:s16
38 const s16 DEFAULT_THRESHOLD_OF_NORMALIZE_STICK = 141;
43 const s16 MIN_OF_STICK_CLAMP_MODE_CIRCLE = 40;
48 const s16 MIN_OF_STICK_CLAMP_MODE_CROSS = 36;
53 const s16 LIMIT_OF_STICK_CLAMP_MAX = 145;
161 void SetStickClamp(s16 min, s16 max);
173 void GetStickClamp(s16* pMin, s16* pMax) const;
205 f32 NormalizeStick(s16 x);
219 void NormalizeStickWithScale( f32* normalized_x, f32* normalized_y, s16 x, s16 y );
235 void SetNormalizeStickScaleSettings( f32 scale, s16 threshold );
244 void GetNormalizeStickScaleSettings( f32* scale, s16* threshold ) const;
251 s16 m_MinOfStickClampCircle;
252 s16 m_MinOfStickClampCross;
253 s16 m_MinOfStickClampMinimum;
254 s16 m_MaxOfStickClampCircle;
255 s16 m_MaxOfStickClampCross;
256 s16 m_MaxOfStickClampMinimum;
259 s16 m_Threshold;
270 inline void PadReader::GetStickClamp(s16* pMin, s16* pMax) const in GetStickClamp()