Searched refs:noff (Results 1 – 9 of 9) sorted by relevance
/illumos-gate/usr/src/uts/common/syscall/ |
H A D | lseek.c | 81 u_offset_t noff; in lseek32_common() local 92 noff = (u_offset_t)off; in lseek32_common() 93 if (reg && noff > max) { in lseek32_common() 104 noff = (u_offset_t)(off + curoff); in lseek32_common() 105 if (reg && noff > max) { in lseek32_common() 120 noff = (u_offset_t)(off + (offset_t)vattr.va_size); in lseek32_common() 121 if (reg && noff > max) { in lseek32_common() 132 noff = (u_offset_t)off; in lseek32_common() 133 error = VOP_IOCTL(vp, _FIO_SEEK_DATA, (intptr_t)(&noff), in lseek32_common() 146 if (noff >= (u_offset_t)vattr.va_size) in lseek32_common() [all …]
|
/illumos-gate/usr/src/common/ctf/ |
H A D | ctf_util.c | 187 uint32_t noff) in ctf_sym_valid() argument 193 if (shndx == SHN_UNDEF || noff == 0) in ctf_sym_valid() 197 name = (char *)(strbase + noff); in ctf_sym_valid()
|
/illumos-gate/usr/src/uts/common/fs/ufs/ |
H A D | ufs_filio.c | 634 u_offset_t noff = (u_offset_t)*off; /* new offset */ in ufs_fio_holey() local 641 if (noff >= isz) { in ufs_fio_holey() 670 error = bmap_find(ip, hole, &noff); in ufs_fio_holey() 684 if (noff < *off) in ufs_fio_holey() 686 *off = noff; in ufs_fio_holey()
|
/illumos-gate/usr/src/uts/common/io/scsi/targets/ |
H A D | sd_xbuf.c | 91 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()
|
/illumos-gate/usr/src/uts/i86xpv/cpu/generic_cpu/ |
H A D | gcpu_mca_xpv.c | 240 int noff = (direction == MCTELEM_FORWARD) ? in mctelem_traverse() local 253 ntepp = (char **)(tep + noff); in mctelem_traverse()
|
/illumos-gate/usr/src/uts/common/vm/ |
H A D | vm_swap.c | 152 offset_t soff, noff; in swap_phys_alloc() local 191 noff = swap_getoff(sip); in swap_phys_alloc() 192 if (noff == -1) { in swap_phys_alloc() 194 } else if (noff != soff + len) { in swap_phys_alloc() 195 CLEARBIT(sip->si_swapslots, btop(noff - sip->si_soff)); in swap_phys_alloc()
|
/illumos-gate/usr/src/uts/common/io/ |
H A D | devinfo.c | 2855 di_path_one_endpoint(struct di_path *me, di_off_t noff, di_off_t **off_pp, in di_path_one_endpoint() argument 2860 me->path_client = noff; in di_path_one_endpoint() 2867 me->path_phci = noff; in di_path_one_endpoint() 2881 di_getpath_data(dev_info_t *dip, di_off_t *off_p, di_off_t noff, in di_getpath_data() argument 2932 di_path_one_endpoint(me, noff, &off_p, get_client); in di_getpath_data() 2969 di_path_one_endpoint(me, noff, &off_p, get_client); in di_getpath_data()
|
/illumos-gate/usr/src/uts/common/fs/zfs/ |
H A D | zfs_vnops.c | 264 uint64_t noff = (uint64_t)*off; /* new offset */ in zfs_holey() local 270 if (noff >= file_sz) { in zfs_holey() 279 error = dmu_offset_next(zp->z_zfsvfs->z_os, zp->z_id, hole, &noff); in zfs_holey() 291 if (noff > file_sz) { in zfs_holey() 293 noff = file_sz; in zfs_holey() 296 if (noff < *off) in zfs_holey() 298 *off = noff; in zfs_holey()
|
/illumos-gate/usr/src/cmd/cpio/ |
H A D | cpio.c | 2520 off_t curpos, noff, datasize; in data_copy_with_holes() local 2536 noff = lseek(ofd, hl->hl_data, SEEK_SET); in data_copy_with_holes() 2537 if (noff != hl->hl_data) { in data_copy_with_holes()
|