Searched defs:writesize (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/backup/dump/
H A Ddumptape.c44 static uint_t writesize; /* size of malloc()ed buffer for tape */ variable
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);
[all...]
/illumos-gate/usr/src/uts/common/fs/pcfs/
H A Dpc_vfsops.c1326 size_t writesize; local
1331 writesize = fsp->pcfs_clsize;
1332 for (off = 0; off < fatsize; off += writesize, fatp += writesize) {
1333 if (writesize > (fatsize - off))
1334 writesize = fatsize - off;
1338 bp = ngeteblk(writesize);
1343 bcopy(fatp, bp->b_un.b_addr, writesize);

Completed in 67 milliseconds