Lines Matching refs:data
199 bool MidiStreamParser::ReadByte( u8* data ) in ReadByte() argument
204 *data = m_BackByte; in ReadByte()
209 *data = m_RestBuffer.ptr[ m_RestBuffer.readPos++ ]; in ReadByte()
210 if ( IsRealtimeMesg( *data ) ) { in ReadByte()
212 NN_LOG("MIDI: %02x %02x %02x\n", *data,0,0); in ReadByte()
214 m_CallbackFunc( *data, 0, 0, m_pCallbackArg ); in ReadByte()
215 if ( IsSystemResetMesg(*data) ) m_IsReset = true; in ReadByte()
222 *data = m_MsgBuffer.ptr[ m_MsgBuffer.readPos++ ]; in ReadByte()
223 if ( IsRealtimeMesg( *data ) ) { in ReadByte()
225 NN_LOG("MIDI: %02x %02x %02x\n", *data,0,0); in ReadByte()
227 m_CallbackFunc( *data, 0, 0, m_pCallbackArg ); in ReadByte()
228 if ( IsSystemResetMesg(*data) ) m_IsReset = true; in ReadByte()