Home | History | Annotate | Download | only in midi

Lines Matching refs:length

59      * message byte array contains variable length MIDI message.
60 * messageSize is size of variable length MIDI message
70 int length = 0;
72 dest[length++] = PACKET_TYPE_DATA;
74 System.arraycopy(message, offset, dest, length, size);
75 length += size;
79 dest[length++] = (byte)timestamp;
83 return length;
115 // message length is total buffer length minus size of the timestamp