Lines Matching refs:value

172     u32 value;  in GetPan()  local
173 bool result = optionParameter.GetValue( &value, WAVE_SOUND_INFO_PAN ); in GetPan()
175 return Util::DevideBy8bit( value, 0 ); in GetPan()
179 u32 value; in GetSurroundPan() local
180 bool result = optionParameter.GetValue( &value, WAVE_SOUND_INFO_PAN ); in GetSurroundPan()
182 return static_cast<s8>( Util::DevideBy8bit( value, 1 ) ); in GetSurroundPan()
186 f32 value; in GetPitch() local
187 bool result = optionParameter.GetValueF32( &value, WAVE_SOUND_INFO_PITCH ); in GetPitch()
189 return value; in GetPitch()
195 u32 value; in GetSendValue() local
196 bool result = optionParameter.GetValue( &value, WAVE_SOUND_INFO_SEND ); in GetSendValue()
208 ut::AddOffsetToPtr( this, value ) ); in GetSendValue()
263 u32 value; in GetOriginalKey() local
264 bool result = optionParameter.GetValue( &value, NOTE_INFO_KEY ); in GetOriginalKey()
266 return Util::DevideBy8bit( value, 0 ); in GetOriginalKey()
271 u32 value; in GetVolume() local
272 bool result = optionParameter.GetValue( &value, NOTE_INFO_VOLUME ); in GetVolume()
274 return Util::DevideBy8bit( value, 0 ); in GetVolume()
279 u32 value; in GetPan() local
280 bool result = optionParameter.GetValue( &value, NOTE_INFO_PAN ); in GetPan()
282 return Util::DevideBy8bit( value, 0 ); in GetPan()
286 u32 value; in GetSurroundPan() local
287 bool result = optionParameter.GetValue( &value, NOTE_INFO_PAN ); in GetSurroundPan()
289 return static_cast<s8>( Util::DevideBy8bit( value, 1 ) ); in GetSurroundPan()
293 f32 value; in GetPitch() local
294 bool result = optionParameter.GetValueF32( &value, NOTE_INFO_PITCH ); in GetPitch()
296 return value; in GetPitch()
301 u32 value; in GetSendValue() local
302 bool result = optionParameter.GetValue( &value, NOTE_INFO_SEND ); in GetSendValue()
314 ut::AddOffsetToPtr( this, value ) ); in GetSendValue()