Lines Matching refs:writesize
44 static uint_t writesize; /* size of malloc()ed buffer for tape */
223 writesize = ntrec * tp_bsize;
226 writesize / TP_BSIZE_MIN);
242 * This code assumes that (NBUF * writesize) is a multiple
246 * (NBUF * writesize) for the actual buffers
253 (NBUF * writesize) /* output buffers */
281 /* LINTED obuf and writesize are aligned */
282 bufp = (struct bdesc *)(obuf + NBUF*writesize);
2042 rbuf = (char *)malloc((uint_t)writesize);
2079 siz = rmtwrite(tp, writesize);
2080 else if ((siz = rmtread(rbuf, writesize)) ==
2081 writesize && bcmp(rbuf, tp, writesize))
2085 siz = write(to, tp, writesize);
2086 else if ((siz = read(to, rbuf, writesize)) ==
2087 writesize && bcmp(rbuf, tp, writesize))
2094 (pipeout && siz != writesize)) {