Lines Matching refs:f32
34 const f32 PAN_CURVE_MIN = 0.71f;
35 f32 s_PanCurveMax = 1.0f; // PAN_CURVE_MIN;
38 const f32 SURROUND_MODE_PAN_CURVE_MAX = 0.8f;
41 const f32 NoteTable[ OCTAVE_DIVISION ] =
58 const f32 PitchTable[ Util::PITCH_DIVISION_RANGE ] =
126 const f32 Decibel2RatioTable[ VOLUME_TABLE_SIZE ] =
329 const f32 Pan2RatioTableSqrt[ PAN_TABLE_SIZE ] =
365 const f32 Pan2RatioTableSqrtSurround[ PAN_TABLE_SIZE ] =
402 const f32 Pan2RatioTableSinCos[ PAN_TABLE_SIZE ] =
438 const f32 Pan2RatioTableSinCosSurround[ PAN_TABLE_SIZE ] =
475 const f32 Pan2RatioTableLinear[ PAN_TABLE_SIZE ] =
511 const f32 Pan2RatioTableLinearSurround[ PAN_TABLE_SIZE ] =
549 const f32* PanTableTable[ PAN_CURVE_NUM ] =
555 const f32* PanTableTableForSurround[ PAN_CURVE_NUM ] =
606 const f32 Util::CALC_LPF_FREQ_INTERCEPT = 0.135614381f;
636 u16 Util::CalcLpfFreq( f32 scale ) in CalcLpfFreq()
662 f32 Util::SetPanCurveMax( f32 max )
674 f32 Util::GetPanCurveMax()
678 f32 Util::GetPanCurveMin()
685 f32 Util::CalcPanRatio( f32 pan, const PanInfo& info ) in CalcPanRatio()
689 const f32* table = NULL; in CalcPanRatio()
699 register f32 ratio = 0.0f; in CalcPanRatio()
719 f32 Util::CalcSurroundPanRatio( f32 surroundPan, const PanInfo& info ) in CalcSurroundPanRatio()
723 const f32* table = PanTableTable[ info.curve ]; in CalcSurroundPanRatio()
725 f32 ratio = table[ static_cast<int>( surroundPan * PAN_TABLE_MAX + 0.5f ) ]; in CalcSurroundPanRatio()
740 f32 Util::CalcPitchRatio( int pitch_ ) in CalcPitchRatio()
761 register f32 ratio = 1.0f; in CalcPitchRatio()
785 f32 Util::CalcVolumeRatio( f32 dB ) in CalcVolumeRatio()