Home | History | Annotate | Download | only in midi

Lines Matching refs:count

39         public void onSend(byte[] msg, int offset, int count, long timestamp)
41 MidiEvent event = createScheduledEvent(msg, offset, count, timestamp);
54 public int count = 0;
57 private MidiEvent(int count) {
59 data = new byte[count];
62 private MidiEvent(byte[] msg, int offset, int count, long timestamp) {
64 data = new byte[count];
65 System.arraycopy(msg, offset, data, 0, count);
66 this.count = count;
72 for (int i = 0; i < count; i++) {
82 private MidiEvent createScheduledEvent(byte[] msg, int offset, int count,
85 if (count > POOL_EVENT_SIZE) {
86 event = new MidiEvent(msg, offset, count, timestamp);
92 System.arraycopy(msg, offset, event.data, 0, count);
93 event.count = count;