Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/syscall/
H A Dlseek.c81 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()
105 if (reg && noff > max) { in lseek32_common()
121 if (reg && noff > max) { in lseek32_common()
132 noff = (u_offset_t)off; in lseek32_common()
149 if (reg && (noff > max)) in lseek32_common()
153 (*retoff) = (offset_t)noff; in lseek32_common()
161 noff = (u_offset_t)off; in lseek32_common()
180 if (reg && (noff > max)) in lseek32_common()
[all …]
/illumos-gate/usr/src/common/ctf/
H A Dctf_util.c187 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 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()
/illumos-gate/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()
/illumos-gate/usr/src/uts/i86xpv/cpu/generic_cpu/
H A Dgcpu_mca_xpv.c240 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 Dvm_swap.c152 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 Ddevinfo.c2855 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 Dzfs_vnops.c264 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 Dcpio.c2520 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()