OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
297
void OnShortMessageReceived(uint8
status_byte
,
303
const size_t len = GetMIDIMessageLength(
status_byte
);
306
const uint8 kData[] = {
status_byte
, first_data_byte, second_data_byte };
/external/tcpdump/
print-isoclns.c
1624
u_int metric,
status_byte
, bit_length, byte_length, sublen, processed, subtlvtype, subtlvlen;
local
[
all
...]
Completed in 39 milliseconds