Searched defs:noff (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/uts/common/syscall/
H A Dlseek.c83 u_offset_t noff; local
94 noff = (u_offset_t)off;
95 if (reg && noff > max) {
106 noff = (u_offset_t)(off + curoff);
107 if (reg && noff > max) {
122 noff = (u_offset_t)(off + (offset_t)vattr.va_size);
123 if (reg && noff > max) {
134 noff = (u_offset_t)off;
135 error = VOP_IOCTL(vp, _FIO_SEEK_DATA, (intptr_t)(&noff),
148 if (noff >
[all...]
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_filio.c637 u_offset_t noff = (u_offset_t)*off; /* new offset */ local
644 if (noff >= isz) {
673 error = bmap_find(ip, hole, &noff);
687 if (noff < *off)
689 *off = noff;
/illumos-gate/usr/src/uts/common/io/scsi/targets/
H A Dsd_xbuf.c92 off_t noff; member in struct:xbuf_brk
239 brkp->noff = xap->xa_brksize;
507 if (brkp->noff < bp0->b_bcount) {
513 brkp->off = brkp->noff;
514 brkp->noff += brkp->brksize;
/illumos-gate/usr/src/uts/i86xpv/cpu/generic_cpu/
H A Dgcpu_mca_xpv.c242 int noff = (direction == MCTELEM_FORWARD) ? local
255 ntepp = (char **)(tep + noff);
/illumos-gate/usr/src/uts/common/vm/
H A Dvm_swap.c147 offset_t soff, noff; local
186 noff = swap_getoff(sip);
187 if (noff == -1) {
189 } else if (noff != soff + len) {
190 CLEARBIT(sip->si_swapslots, btop(noff - sip->si_soff));
/illumos-gate/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, argument
2858 me->path_client = noff;
2865 me->path_phci = noff;
2876 * noff : Offset for the endpoint dip snapshot.
2879 di_getpath_data(dev_info_t *dip, di_off_t *off_p, di_off_t noff, argument
2930 di_path_one_endpoint(me, noff, &off_p, get_client);
2967 di_path_one_endpoint(me, noff, &off_p, get_client);
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_vnops.c259 uint64_t noff = (uint64_t)*off; /* new offset */ local
265 if (noff >= file_sz) {
274 error = dmu_offset_next(zp->z_zfsvfs->z_os, zp->z_id, hole, &noff);
286 if (noff > file_sz) {
288 noff = file_sz;
291 if (noff < *off)
293 *off = noff;
/illumos-gate/usr/src/cmd/cpio/
H A Dcpio.c2512 off_t curpos, noff, datasize; local
2528 noff = lseek(ofd, hl->hl_data, SEEK_SET);
2529 if (noff != hl->hl_data) {

Completed in 457 milliseconds