Home
last modified time | relevance | path

Searched refs:SND_SEQ_EVENT_LENGTH_MASK (Results 1 – 6 of 6) sorted by relevance

/third_party/alsa-lib/include/
Dseqmid.h176 ((ev)->flags &= ~SND_SEQ_EVENT_LENGTH_MASK,\
190 ((ev)->flags &= ~SND_SEQ_EVENT_LENGTH_MASK,\
206 ((ev)->flags &= ~SND_SEQ_EVENT_LENGTH_MASK,\
Dseq_event.h222 #define SND_SEQ_EVENT_LENGTH_MASK (3<<2) /**< mask for event length bits */ macro
Dseq.h697 ((ev)->flags & SND_SEQ_EVENT_LENGTH_MASK)
/third_party/alsa-lib/src/seq/
Dseq_midi_event.c407 ev->flags &= ~SND_SEQ_EVENT_LENGTH_MASK; in snd_midi_event_encode_byte()
437 ev->flags &= ~SND_SEQ_EVENT_LENGTH_MASK; in snd_midi_event_encode_byte()
447 ev->flags &= ~SND_SEQ_EVENT_LENGTH_MASK; in snd_midi_event_encode_byte()
589 switch (ev->flags & SND_SEQ_EVENT_LENGTH_MASK) { in snd_midi_event_decode()
/third_party/alsa-lib/test/lsb/
Dmidi_event.c189 TEST_CHECK((ev.flags & SND_SEQ_EVENT_LENGTH_MASK) == SND_SEQ_EVENT_LENGTH_FIXED); in test_encode()
229 TEST_CHECK((ev.flags & SND_SEQ_EVENT_LENGTH_MASK) == SND_SEQ_EVENT_LENGTH_VARIABLE); in test_encode()
346 TEST_CHECK((ev.flags & SND_SEQ_EVENT_LENGTH_MASK) == SND_SEQ_EVENT_LENGTH_FIXED); in test_encode_byte()
/third_party/alsa-lib/test/
Dseq-decoder.c237 switch (ev->flags & SND_SEQ_EVENT_LENGTH_MASK) { in decode_event()