Home | History | Annotate | Download | only in qemu

Lines Matching refs:rptr

94     int count, wptr, rptr;
128 l = f->buf_size - f->rptr;
131 memcpy(buf, f->buf + f->rptr, l);
132 f->rptr += l;
133 if (f->rptr >= f->buf_size)
134 f->rptr = 0;