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

/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dstrstream.cpp257 off_type newoff; local
262 newoff = 0;
265 newoff = (pos_in ? gptr() : pptr()) - eback();
268 newoff = seekhigh - eback();
273 newoff += __off;
274 if (0 <= newoff && newoff <= seekhigh - eback())
276 char* newpos = eback() + newoff;
286 __p = newoff;
302 off_type newoff local
[all...]
/freebsd-11-stable/lib/libc/stdio/
H A Dopen_memstream.c55 memstream_grow(struct memstream *ms, fpos_t newoff) argument
60 if (newoff < 0 || newoff >= SSIZE_MAX)
63 newsize = newoff;
H A Dopen_wmemstream.c56 wmemstream_grow(struct wmemstream *ms, fpos_t newoff) argument
61 if (newoff < 0 || newoff >= SSIZE_MAX / sizeof(wchar_t))
64 newsize = newoff;
/freebsd-11-stable/contrib/libstdc++/src/
H A Dstrstream.cc252 off_type newoff; local
256 newoff = 0;
259 newoff = seekhigh - seeklow;
262 newoff = do_put ? pptr() - seeklow : gptr() - seeklow;
268 off += newoff;
294 return pos_type(newoff);
/freebsd-11-stable/sys/netinet6/
H A Din6_rss.c180 int off, newoff; local
218 newoff = ip6_nexthdr(m, off, proto, &nxt);
219 if (newoff < 0)
221 off = newoff;
H A Dip6_input.c1778 int newoff; local
1786 newoff = ip6_nexthdr(m, off, proto, nxtp);
1787 if (newoff < 0)
1789 else if (newoff < off)
1791 else if (newoff == off)
1792 return newoff;
1794 off = newoff;
/freebsd-11-stable/usr.sbin/bhyve/
H A Dvirtio.c552 uint32_t newoff; local
587 newoff = offset - virtio_config_size;
589 if (newoff + size > max)
591 error = (*vc->vc_cfgread)(DEV_SOFTC(vs), newoff, size, &value);
673 uint32_t newoff; local
706 newoff = offset - virtio_config_size;
708 if (newoff + size > max)
710 error = (*vc->vc_cfgwrite)(DEV_SOFTC(vs), newoff, size, value);
/freebsd-11-stable/lib/libc/db/hash/
H A Dhash_page.c128 u_int16_t *bp, newoff, pairlen; local
137 newoff = bp[ndx - 1];
139 newoff = hashp->BSIZE;
140 pairlen = newoff - bp[ndx + 1];
/freebsd-11-stable/contrib/binutils/gas/
H A Dwrite.c2219 addressT oldoff, newoff; local
2223 newoff = relax_align (address + fragP->fr_fix,
2230 if (newoff > fragP->fr_subtype)
2231 newoff = 0;
2234 growth = newoff - oldoff;
2268 /* The new frag address is newoff. Adjust this
2271 newf->fr_address = newoff - stretch - growth;
/freebsd-11-stable/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-11-stable/sys/ufs/ffs/
H A Dffs_softdep.c3989 newjmvref(dp, ino, oldoff, newoff)
3993 off_t newoff;
4003 jmvref->jm_newoff = newoff;

Completed in 273 milliseconds