Lines Matching refs:f32
36 const f32 PAN_CURVE_MIN = 0.71f;
37 f32 s_PanCurveMax = 1.0f; // PAN_CURVE_MIN;
40 const f32 SURROUND_MODE_PAN_CURVE_MAX = 0.8f;
43 const f32 NoteTable[ OCTAVE_DIVISION ] =
60 const f32 PitchTable[ Util::PITCH_DIVISION_RANGE ] =
128 const f32 Decibel2RatioTable[ VOLUME_TABLE_SIZE ] =
331 const f32 Pan2RatioTableSqrt[ PAN_TABLE_SIZE ] =
367 const f32 Pan2RatioTableSqrtSurround[ PAN_TABLE_SIZE ] =
404 const f32 Pan2RatioTableSinCos[ PAN_TABLE_SIZE ] =
440 const f32 Pan2RatioTableSinCosSurround[ PAN_TABLE_SIZE ] =
477 const f32 Pan2RatioTableLinear[ PAN_TABLE_SIZE ] =
513 const f32 Pan2RatioTableLinearSurround[ PAN_TABLE_SIZE ] =
551 const f32* PanTableTable[ PAN_CURVE_NUM ] =
557 const f32* PanTableTableForSurround[ PAN_CURVE_NUM ] =
608 const f32 Util::CALC_LPF_FREQ_INTERCEPT = 0.135614381f;
638 u16 Util::CalcLpfFreq( f32 scale ) in CalcLpfFreq()
664 f32 Util::SetPanCurveMax( f32 max )
676 f32 Util::GetPanCurveMax()
680 f32 Util::GetPanCurveMin()
687 f32 Util::CalcPanRatio( f32 pan, const PanInfo& info ) in CalcPanRatio()
691 const f32* table = NULL; in CalcPanRatio()
701 register f32 ratio = 0.0f; in CalcPanRatio()
721 f32 Util::CalcSurroundPanRatio( f32 surroundPan, const PanInfo& info ) in CalcSurroundPanRatio()
725 const f32* table = PanTableTable[ info.curve ]; in CalcSurroundPanRatio()
727 f32 ratio = table[ static_cast<int>( surroundPan * PAN_TABLE_MAX + 0.5f ) ]; in CalcSurroundPanRatio()
742 f32 Util::CalcPitchRatio( int pitch_ ) in CalcPitchRatio()
763 register f32 ratio = 1.0f; in CalcPitchRatio()
787 f32 Util::CalcVolumeRatio( f32 dB ) in CalcVolumeRatio()