Searched defs:uoff (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_extvnops.c245 u_offset_t uoff, io_off; local
290 uoff = offset;
296 uoff, (io_len - done_len), ip->i_size, (void *)fdbp));
306 uoff = (u_offset_t)(io_off + done_len);
307 offsetn = (int)blkoff(fs, uoff);
311 uoff, nbytes));
313 if (uoff + nbytes > ip->i_size) {
321 ip->i_size, uoff + nbytes));
323 error = bmap_write(ip, uoff, (offsetn + nbytes),
333 if (uoff >
[all...]
H A Dufs_directio.c349 u_offset_t size, uoff; local
388 uoff = uio->uio_loffset;
394 if (uoff + resid > limit)
400 if ((uoff & (u_offset_t)(DEV_BSIZE - 1)) || (resid & (DEV_BSIZE - 1)))
424 if ((uoff + resid) > size)
492 error = bmap_read(ip, uoff, &bn, &len);
520 on = (int)blkoff(fs, uoff);
522 if ((uoff + n) > ip->i_size) {
523 error = bmap_write(ip, uoff, (int)(on + n),
524 (int)(uoff
819 u_offset_t size, uoff; local
[all...]
H A Dufs_alloc.c1560 u_offset_t resid, i, uoff; local
1636 uoff = (offset_t)(lp->l_start + done_len);
1637 offsetn = (int)blkoff(fs, uoff);
1641 berr = bmap_write(ip, uoff, offsetn + nbytes,
1656 if ((uoff + nbytes) > ip->i_size)
1657 ip->i_size = (uoff + nbytes);
1668 istart = (uoff + nbytes);
H A Dufs_vnops.c882 u_offset_t uoff = uio->uio_loffset; local
883 off = uoff & (offset_t)MAXBMASK;
884 mapon = (int)(uoff & (offset_t)MAXBOFFSET);
885 on = (int)blkoff(fs, uoff);
889 if (type == IFREG && uoff + n >= limit) {
890 if (uoff >= limit) {
895 * since uoff + n >= limit,
896 * therefore n >= limit - uoff, and n is an int
899 n = (int)(limit - (rlim64_t)uoff);
901 if (uoff
1406 u_offset_t uoff = uio->uio_loffset; local
4532 u_offset_t uoff = (u_offset_t)off; /* type conversion */ local
[all...]
/illumos-gate/usr/src/uts/common/io/
H A Dcpuid_drv.c123 u_offset_t uoff; local
125 if ((uoff = (u_offset_t)uio->uio_loffset) > UINT_MAX) {
130 crs.cp_eax = (uint32_t)uoff;
136 uio->uio_loffset = uoff + 1;
/illumos-gate/usr/src/uts/common/fs/udfs/
H A Dudf_vnops.c1679 u_offset_t pgoff, eoff, uoff; local
1685 uoff = (u_offset_t)off; /* type conversion */
1692 seqmode = ip->i_nextr == uoff && rw != S_CREATE;
1714 beyond_eof = uoff + len > ip->i_size + PAGEOFFSET;
1760 offset = uoff;
1761 while ((offset < uoff + len) &&
1813 eoff = (uoff + len);
1814 for (pgoff = uoff, pgaddr = addr, pl = plarr;
3039 u_offset_t uoff = uio->uio_loffset; local
3040 off = uoff
3190 u_offset_t uoff = uio->uio_loffset; local
[all...]
/illumos-gate/usr/src/cmd/zdb/
H A Dzdb.c2131 uint64_t uoff = VDEV_UBERBLOCK_OFFSET(vdp, i); local
2132 uberblock_t *ub = (void *)((char *)lbl + uoff);

Completed in 104 milliseconds