Lines Matching refs:f32
38 const f32 PAN_CURVE_MIN = 0.71f;
39 f32 s_PanCurveMax = 1.0f; // PAN_CURVE_MIN;
42 const f32 SURROUND_MODE_PAN_CURVE_MAX = 0.8f;
45 const f32 NoteTable[ OCTAVE_DIVISION ] =
62 const f32 PitchTable[ Util::PITCH_DIVISION_RANGE ] =
130 const f32 Decibel2RatioTable[ VOLUME_TABLE_SIZE ] =
333 const f32 Pan2RatioTableSqrt[ PAN_TABLE_SIZE ] =
369 const f32 Pan2RatioTableSqrtSurround[ PAN_TABLE_SIZE ] =
406 const f32 Pan2RatioTableSinCos[ PAN_TABLE_SIZE ] =
442 const f32 Pan2RatioTableSinCosSurround[ PAN_TABLE_SIZE ] =
479 const f32 Pan2RatioTableLinear[ PAN_TABLE_SIZE ] =
515 const f32 Pan2RatioTableLinearSurround[ PAN_TABLE_SIZE ] =
553 const f32* PanTableTable[ PAN_CURVE_NUM ] =
559 const f32* PanTableTableForSurround[ PAN_CURVE_NUM ] =
610 const f32 Util::CALC_LPF_FREQ_INTERCEPT = 0.135614381f;
640 u16 Util::CalcLpfFreq( f32 scale ) in CalcLpfFreq()
666 f32 Util::SetPanCurveMax( f32 max )
678 f32 Util::GetPanCurveMax()
682 f32 Util::GetPanCurveMin()
689 f32 Util::CalcPanRatio( f32 pan, const PanInfo& info ) in CalcPanRatio()
693 const f32* table = NULL; in CalcPanRatio()
703 register f32 ratio = 0.0f; in CalcPanRatio()
723 f32 Util::CalcSurroundPanRatio( f32 surroundPan, const PanInfo& info ) in CalcSurroundPanRatio()
727 const f32* table = PanTableTable[ info.curve ]; in CalcSurroundPanRatio()
729 f32 ratio = table[ static_cast<int>( surroundPan * PAN_TABLE_MAX + 0.5f ) ]; in CalcSurroundPanRatio()
744 f32 Util::CalcPitchRatio( int pitch_ ) in CalcPitchRatio()
765 register f32 ratio = 1.0f; in CalcPitchRatio()
789 f32 Util::CalcVolumeRatio( f32 dB ) in CalcVolumeRatio()