Lines Matching refs:u8
32 typedef void (*MidiCallback)( u8 status, u8 data1, u8 data2, void* arg );
42 const u8* ptr;
48 bool ReadByte( u8* data );
49 bool PeakByte( u8* data );
50 void BackByte( u8 byte );
57 static bool IsDataByte( u8 b ) { return ( b & 0x80 ) ? false : true; } in IsDataByte()
58 static bool IsStatusByte( u8 b ) { return ( b & 0x80 ) ? true : false; } in IsStatusByte()
59 static bool IsRealtimeMesg( u8 b ) { return ( b >= 0xf8 ) ? true : false; } in IsRealtimeMesg()
60 static bool IsSystemResetMesg( u8 b ) { return ( b == 0xff ) ? true : false; } in IsSystemResetMesg()
68 u8 m_RestBuf[256];
71 u8 m_RunningStatus;
72 u8 m_BackByte;