Home | History | Annotate | Download | only in qemu

Lines Matching refs:wptr

94     int count, wptr, rptr;
106 l = f->buf_size - f->wptr;
109 memcpy(f->buf + f->wptr, buf, l);
110 f->wptr += l;
111 if (f->wptr >= f->buf_size)
112 f->wptr = 0;