pos_read 39 sound/usb/line6/midibuf.c return (this->pos_read == this->pos_write) && !this->full; pos_read 49 sound/usb/line6/midibuf.c this->pos_read = this->pos_write = this->full = 0; pos_read 71 sound/usb/line6/midibuf.c (this->pos_read - this->pos_write + this->size - 1) % this->size + pos_read 80 sound/usb/line6/midibuf.c (this->pos_write - this->pos_read + this->size - 1) % this->size + pos_read 120 sound/usb/line6/midibuf.c if (this->pos_write == this->pos_read) pos_read 149 sound/usb/line6/midibuf.c length1 = this->size - this->pos_read; pos_read 152 sound/usb/line6/midibuf.c command = this->buf[this->pos_read]; pos_read 176 sound/usb/line6/midibuf.c if (this->buf[this->pos_read + i] & 0x80) pos_read 185 sound/usb/line6/midibuf.c if (this->buf[this->pos_read + i] & 0x80) pos_read 215 sound/usb/line6/midibuf.c memcpy(data + repeat, this->buf + this->pos_read, length); pos_read 216 sound/usb/line6/midibuf.c this->pos_read += length; pos_read 220 sound/usb/line6/midibuf.c memcpy(data + repeat, this->buf + this->pos_read, length1); pos_read 222 sound/usb/line6/midibuf.c this->pos_read = length2; pos_read 239 sound/usb/line6/midibuf.c this->pos_read = (this->pos_read + length) % this->size; pos_read 15 sound/usb/line6/midibuf.h int pos_read, pos_write;