Lines Matching defs:data
80 int line6_midibuf_write(struct midi_buffer *this, unsigned char *data,
91 if (data[length - 1] == 0xfe) {
106 memcpy(this->buf + this->pos_write, data, length);
111 memcpy(this->buf + this->pos_write, data, length1);
112 memcpy(this->buf, data + length1, length2);
123 int line6_midibuf_read(struct midi_buffer *this, unsigned char *data,
224 memcpy(data + repeat, this->buf + this->pos_read, length);
229 memcpy(data + repeat, this->buf + this->pos_read, length1);
230 memcpy(data + repeat + length1, this->buf, length2);
235 data[0] = this->command_prev;