Lines Matching refs:value
174 u32 value; in GetPan() local
175 bool result = optionParameter.GetValue( &value, WAVE_SOUND_INFO_PAN ); in GetPan()
177 return Util::DevideBy8bit( value, 0 ); in GetPan()
181 u32 value; in GetSurroundPan() local
182 bool result = optionParameter.GetValue( &value, WAVE_SOUND_INFO_PAN ); in GetSurroundPan()
184 return static_cast<s8>( Util::DevideBy8bit( value, 1 ) ); in GetSurroundPan()
188 f32 value; in GetPitch() local
189 bool result = optionParameter.GetValueF32( &value, WAVE_SOUND_INFO_PITCH ); in GetPitch()
191 return value; in GetPitch()
197 u32 value; in GetSendValue() local
198 bool result = optionParameter.GetValue( &value, WAVE_SOUND_INFO_SEND ); in GetSendValue()
210 ut::AddOffsetToPtr( this, value ) ); in GetSendValue()
265 u32 value; in GetOriginalKey() local
266 bool result = optionParameter.GetValue( &value, NOTE_INFO_KEY ); in GetOriginalKey()
268 return Util::DevideBy8bit( value, 0 ); in GetOriginalKey()
273 u32 value; in GetVolume() local
274 bool result = optionParameter.GetValue( &value, NOTE_INFO_VOLUME ); in GetVolume()
276 return Util::DevideBy8bit( value, 0 ); in GetVolume()
281 u32 value; in GetPan() local
282 bool result = optionParameter.GetValue( &value, NOTE_INFO_PAN ); in GetPan()
284 return Util::DevideBy8bit( value, 0 ); in GetPan()
288 u32 value; in GetSurroundPan() local
289 bool result = optionParameter.GetValue( &value, NOTE_INFO_PAN ); in GetSurroundPan()
291 return static_cast<s8>( Util::DevideBy8bit( value, 1 ) ); in GetSurroundPan()
295 f32 value; in GetPitch() local
296 bool result = optionParameter.GetValueF32( &value, NOTE_INFO_PITCH ); in GetPitch()
298 return value; in GetPitch()
303 u32 value; in GetSendValue() local
304 bool result = optionParameter.GetValue( &value, NOTE_INFO_SEND ); in GetSendValue()
316 ut::AddOffsetToPtr( this, value ) ); in GetSendValue()