HomeSort by relevance Sort by last modified time
    Searched refs:status_byte (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/media/midi/
midi_message_util.cc 9 size_t GetMidiMessageLength(uint8 status_byte) {
10 if (status_byte < 0x80)
12 if (0x80 <= status_byte && status_byte <= 0xbf)
14 if (0xc0 <= status_byte && status_byte <= 0xdf)
16 if (0xe0 <= status_byte && status_byte <= 0xef)
18 if (status_byte == 0xf0)
20 if (status_byte == 0xf1
    [all...]
midi_message_util.h 17 // Returns 0 if |status_byte| is:
21 MEDIA_EXPORT size_t GetMidiMessageLength(uint8 status_byte);
midi_message_queue.cc 87 const uint8 status_byte = next_message_[0]; local
90 if (status_byte == kSysEx) {
100 DCHECK_NE(kSysEx, status_byte);
101 const size_t target_len = GetMidiMessageLength(status_byte);
110 next_message_.push_back(status_byte);
midi_manager_win.cc 296 void OnShortMessageReceived(uint8 status_byte,
302 const size_t len = GetMidiMessageLength(status_byte);
305 const uint8 kData[] = { status_byte, first_data_byte, second_data_byte };
  /external/tcpdump/
print-isoclns.c 1970 u_int metric, status_byte, bit_length, byte_length, sublen, processed, subtlvtype, subtlvlen; local
    [all...]

Completed in 225 milliseconds