Home | History | Annotate | Download | only in midi

Lines Matching refs:first_byte

25     uint8 first_byte = Get(data, current);
26 if (first_byte == kSysExByte || is_sending_sysex_) {
30 } else if ((first_byte & kSysMessageBitMask) == kSysMessageBitPattern) {
31 if (first_byte & 0x08) {
39 } else if (first_byte & 0x80) {
44 DVLOG(1) << "Unknown byte: " << static_cast<unsigned int>(first_byte);
121 uint8 first_byte = Get(data, index);
122 DCHECK_LE(0xf1, first_byte);
123 DCHECK_LE(first_byte, 0xf7);
127 size_t message_size = message_size_table[first_byte & 0x0f];
148 uint8 first_byte = Get(data, index);
149 DCHECK_LE(0xf8, first_byte);
150 DCHECK_LE(first_byte, 0xff);
153 data_to_send->push_back(first_byte);
163 uint8 first_byte = Get(data, index);
164 DCHECK_LE(0x80, (first_byte & 0xf0));
165 DCHECK_LE((first_byte & 0xf0), 0xe0);
170 uint8 code_index = first_byte >> 4;