Lines Matching defs:byte
264 /* 320 µs per byte as noted in Page 1 of MIDI spec */
337 value = -1; /* value is >= 0 when the first hex digit of a byte has been read */
367 static void print_byte(unsigned char byte, struct timespec *ts)
380 if (byte >= 0xf8)
382 else if (byte >= 0xf0) {
384 switch (byte) {
405 } else if (byte >= 0x80) {
407 if (byte >= 0xc0 && byte <= 0xdf)
446 printf("%02X", byte);