Lines Matching refs:data
201 bool MidiStreamParser::ReadByte( u8* data ) in ReadByte() argument
206 *data = m_BackByte; in ReadByte()
211 *data = m_RestBuffer.ptr[ m_RestBuffer.readPos++ ]; in ReadByte()
212 if ( IsRealtimeMesg( *data ) ) { in ReadByte()
214 NN_LOG("MIDI: %02x %02x %02x\n", *data,0,0); in ReadByte()
216 m_CallbackFunc( *data, 0, 0, m_pCallbackArg ); in ReadByte()
217 if ( IsSystemResetMesg(*data) ) m_IsReset = true; in ReadByte()
224 *data = m_MsgBuffer.ptr[ m_MsgBuffer.readPos++ ]; in ReadByte()
225 if ( IsRealtimeMesg( *data ) ) { in ReadByte()
227 NN_LOG("MIDI: %02x %02x %02x\n", *data,0,0); in ReadByte()
229 m_CallbackFunc( *data, 0, 0, m_pCallbackArg ); in ReadByte()
230 if ( IsSystemResetMesg(*data) ) m_IsReset = true; in ReadByte()