Home
last modified time | relevance | path

Searched refs:writesize (Results 1 – 2 of 2) sorted by relevance

/titanic_41/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; in alloctape()
226 writesize / TP_BSIZE_MIN); in alloctape()
253 (NBUF * writesize) /* output buffers */ in alloctape()
282 bufp = (struct bdesc *)(obuf + NBUF*writesize); in alloctape()
2042 rbuf = (char *)malloc((uint_t)writesize); in dowrite()
2079 siz = rmtwrite(tp, writesize); in dowrite()
2080 else if ((siz = rmtread(rbuf, writesize)) == in dowrite()
2081 writesize && bcmp(rbuf, tp, writesize)) in dowrite()
2085 siz = write(to, tp, writesize); in dowrite()
[all …]
/titanic_41/usr/src/uts/common/fs/pcfs/
H A Dpc_vfsops.c1326 size_t writesize; in pc_writefat() local
1331 writesize = fsp->pcfs_clsize; in pc_writefat()
1332 for (off = 0; off < fatsize; off += writesize, fatp += writesize) { in pc_writefat()
1333 if (writesize > (fatsize - off)) in pc_writefat()
1334 writesize = fatsize - off; in pc_writefat()
1338 bp = ngeteblk(writesize); in pc_writefat()
1343 bcopy(fatp, bp->b_un.b_addr, writesize); in pc_writefat()