Lines Matching defs:nbyte
266 cpy_uncompressed(void * buf, int nbyte, struct read_info *rsp)
269 if ((rsp->bufp + nbyte) >= rsp->ebufp)
271 memcpy(rsp->bufp, buf, nbyte);
272 rsp->bufp += nbyte;
277 * Read a maximum of 'nbyte' bytes into 'buf'.
280 md_compressed(void * buf, int nbyte, struct read_info *rsp)
290 nbyte &= ~(DEV_BSIZE - 1);
292 while (nbyte > 0) {
297 bp->b_bcount = uimin(rsp->chunk, nbyte);
315 nbyte -= done;
322 if ((rsp->offset == rsp->media_sz) && (nbyte != 0)) {