Searched refs:newoff (Results 1 - 13 of 13) sorted by relevance

/freebsd-current/contrib/llvm-project/libcxx/src/
H A Dstrstream.cpp193 off_type newoff;
197 newoff = 0;
200 newoff = (pos_in ? gptr() : pptr()) - eback();
203 newoff = seekhigh - eback();
208 newoff += __off;
209 if (newoff < 0 || newoff > seekhigh - eback())
212 char* newpos = eback() + newoff;
221 return pos_type(newoff);
233 off_type newoff
[all...]
/freebsd-current/lib/libc/stdio/
H A Dopen_memstream.c54 memstream_grow(struct memstream *ms, fpos_t newoff) argument
59 if (newoff < 0 || newoff >= SSIZE_MAX)
62 newsize = newoff;
H A Dopen_wmemstream.c55 wmemstream_grow(struct wmemstream *ms, fpos_t newoff) argument
60 if (newoff < 0 || newoff >= SSIZE_MAX / sizeof(wchar_t))
63 newsize = newoff;
/freebsd-current/sys/netinet6/
H A Din6_rss.c216 int off, newoff; local
254 newoff = ip6_nexthdr(m, off, proto, &nxt);
255 if (newoff < 0)
257 off = newoff;
H A Dip6_input.c1704 int newoff; local
1712 newoff = ip6_nexthdr(m, off, proto, nxtp);
1713 if (newoff < 0)
1715 else if (newoff < off)
1717 else if (newoff == off)
1718 return newoff;
1720 off = newoff;
/freebsd-current/usr.sbin/bhyve/
H A Dvirtio.c567 uint32_t newoff; local
599 newoff = offset - virtio_config_size;
601 if (newoff + size > max)
604 error = (*vc->vc_cfgread)(DEV_SOFTC(vs), newoff, size, &value);
688 uint32_t newoff; local
718 newoff = offset - virtio_config_size;
720 if (newoff + size > max)
723 error = (*vc->vc_cfgwrite)(DEV_SOFTC(vs), newoff, size, value);
/freebsd-current/lib/libc/db/hash/
H A Dhash_page.c124 u_int16_t *bp, newoff, pairlen; local
133 newoff = bp[ndx - 1];
135 newoff = hashp->BSIZE;
136 pairlen = newoff - bp[ndx + 1];
/freebsd-current/contrib/lib9p/pytest/
H A Dprotocol.py771 newoff = td.wirestat_seq.unpack_from(d, self.conditions, bstring,
774 if size is None: # implies noerror; newoff==offset+2
775 return statobj, newoff
785 return statobj, newoff
/freebsd-current/sys/ufs/ufs/
H A Dufs_dirhash.c873 doff_t newoff)
882 newoff < dh->dh_dirblks * DIRBLKSIZ,
886 DH_ENTRY(dh, slot) = newoff;
872 ufsdirhash_move(struct inode *ip, struct direct *dirp, doff_t oldoff, doff_t newoff) argument
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dvdev_raidz.c4136 uint64_t newoff = (i / raidvd->vdev_children) << ashift; local
4139 ASSERT(!(newchild == oldchild && newoff == oldoff));
4142 newoff, oldoff, 1 << ashift);
/freebsd-current/sys/fs/nfsserver/
H A Dnfs_nfsdserv.c4886 uint64_t offset, len, newoff = 0, newsize; local
4918 newoff = fxdr_hyper(tl); tl += 2;
4937 newoff, offset, len, hasnewmtime, &newmtime, reclaim, &stateid,
H A Dnfs_nfsdstate.c6799 int hasnewoff, uint64_t newoff, uint64_t offset, uint64_t len,
6798 nfsrv_layoutcommit(struct nfsrv_descript *nd, vnode_t vp, int layouttype, int hasnewoff, uint64_t newoff, uint64_t offset, uint64_t len, int hasnewmtime, struct timespec *newmtimep, int reclaim, nfsv4stateid_t *stateidp, int maxcnt, char *layp, int *hasnewsizep, uint64_t *newsizep, struct ucred *cred, NFSPROC_T *p) argument
/freebsd-current/sys/ufs/ffs/
H A Dffs_softdep.c4255 off_t newoff)
4265 jmvref->jm_newoff = newoff;
4252 newjmvref(struct inode *dp, ino_t ino, off_t oldoff, off_t newoff) argument

Completed in 428 milliseconds