Home
last modified time | relevance | path

Searched refs:noff (Results 1 – 8 of 8) sorted by relevance

/titanic_44/usr/src/uts/common/syscall/
H A Dlseek.c83 u_offset_t noff; in lseek32_common() local
94 noff = (u_offset_t)off; in lseek32_common()
95 if (reg && noff > max) { in lseek32_common()
106 noff = (u_offset_t)(off + curoff); in lseek32_common()
107 if (reg && noff > max) { in lseek32_common()
122 noff = (u_offset_t)(off + (offset_t)vattr.va_size); in lseek32_common()
123 if (reg && noff > max) { in lseek32_common()
134 noff = (u_offset_t)off; in lseek32_common()
135 error = VOP_IOCTL(vp, _FIO_SEEK_DATA, (intptr_t)(&noff), in lseek32_common()
148 if (noff >= (u_offset_t)vattr.va_size) in lseek32_common()
[all …]
/titanic_44/usr/src/uts/common/fs/ufs/
H A Dufs_filio.c637 u_offset_t noff = (u_offset_t)*off; /* new offset */ in ufs_fio_holey() local
644 if (noff >= isz) { in ufs_fio_holey()
673 error = bmap_find(ip, hole, &noff); in ufs_fio_holey()
687 if (noff < *off) in ufs_fio_holey()
689 *off = noff; in ufs_fio_holey()
/titanic_44/usr/src/uts/common/io/scsi/targets/
H A Dsd_xbuf.c91 off_t noff; member
238 brkp->noff = xap->xa_brksize; in ddi_xbuf_qstrategy()
506 if (brkp->noff < bp0->b_bcount) { in xbuf_iostart()
512 brkp->off = brkp->noff; in xbuf_iostart()
513 brkp->noff += brkp->brksize; in xbuf_iostart()
/titanic_44/usr/src/uts/i86xpv/cpu/generic_cpu/
H A Dgcpu_mca_xpv.c242 int noff = (direction == MCTELEM_FORWARD) ? in mctelem_traverse() local
255 ntepp = (char **)(tep + noff); in mctelem_traverse()
/titanic_44/usr/src/uts/common/vm/
H A Dvm_swap.c147 offset_t soff, noff; in swap_phys_alloc() local
186 noff = swap_getoff(sip); in swap_phys_alloc()
187 if (noff == -1) { in swap_phys_alloc()
189 } else if (noff != soff + len) { in swap_phys_alloc()
190 CLEARBIT(sip->si_swapslots, btop(noff - sip->si_soff)); in swap_phys_alloc()
/titanic_44/usr/src/uts/common/io/
H A Ddevinfo.c2853 di_path_one_endpoint(struct di_path *me, di_off_t noff, di_off_t **off_pp, in di_path_one_endpoint() argument
2858 me->path_client = noff; in di_path_one_endpoint()
2865 me->path_phci = noff; in di_path_one_endpoint()
2879 di_getpath_data(dev_info_t *dip, di_off_t *off_p, di_off_t noff, in di_getpath_data() argument
2930 di_path_one_endpoint(me, noff, &off_p, get_client); in di_getpath_data()
2967 di_path_one_endpoint(me, noff, &off_p, get_client); in di_getpath_data()
/titanic_44/usr/src/uts/common/fs/zfs/
H A Dzfs_vnops.c268 uint64_t noff = (uint64_t)*off; /* new offset */ in zfs_holey() local
274 if (noff >= file_sz) { in zfs_holey()
283 error = dmu_offset_next(zp->z_zfsvfs->z_os, zp->z_id, hole, &noff); in zfs_holey()
295 if (noff > file_sz) { in zfs_holey()
297 noff = file_sz; in zfs_holey()
300 if (noff < *off) in zfs_holey()
302 *off = noff; in zfs_holey()
/titanic_44/usr/src/cmd/cpio/
H A Dcpio.c2512 off_t curpos, noff, datasize; in data_copy_with_holes() local
2528 noff = lseek(ofd, hl->hl_data, SEEK_SET); in data_copy_with_holes()
2529 if (noff != hl->hl_data) { in data_copy_with_holes()