Home | History | Annotate | Download | only in qemu

Lines Matching full:wptr

61     int count, wptr, rptr;
73 l = f->buf_size - f->wptr;
76 memcpy(f->buf + f->wptr, buf, l);
77 f->wptr += l;
78 if (f->wptr >= f->buf_size)
79 f->wptr = 0;