Lines Matching refs:u8
30 typedef void (*MidiCallback)( u8 status, u8 data1, u8 data2, void* arg );
40 const u8* ptr;
46 bool ReadByte( u8* data );
47 bool PeakByte( u8* data );
48 void BackByte( u8 byte );
55 static bool IsDataByte( u8 b ) { return ( b & 0x80 ) ? false : true; } in IsDataByte()
56 static bool IsStatusByte( u8 b ) { return ( b & 0x80 ) ? true : false; } in IsStatusByte()
57 static bool IsRealtimeMesg( u8 b ) { return ( b >= 0xf8 ) ? true : false; } in IsRealtimeMesg()
58 static bool IsSystemResetMesg( u8 b ) { return ( b == 0xff ) ? true : false; } in IsSystemResetMesg()
66 u8 m_RestBuf[256];
69 u8 m_RunningStatus;
70 u8 m_BackByte;