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

/freebsd-10.0-release/contrib/libc++/src/
H A Dstrstream.cpp253 off_type newoff; local
258 newoff = 0;
261 newoff = (pos_in ? gptr() : pptr()) - eback();
264 newoff = seekhigh - eback();
267 newoff += __off;
268 if (0 <= newoff && newoff <= seekhigh - eback())
270 char* newpos = eback() + newoff;
280 __p = newoff;
296 off_type newoff local
[all...]
/freebsd-10.0-release/lib/libc/stdio/
H A Dopen_memstream.c52 memstream_grow(struct memstream *ms, fpos_t newoff) argument
57 if (newoff < 0 || newoff >= SSIZE_MAX)
60 newsize = newoff;
H A Dopen_wmemstream.c53 wmemstream_grow(struct wmemstream *ms, fpos_t newoff) argument
58 if (newoff < 0 || newoff >= SSIZE_MAX / sizeof(wchar_t))
61 newsize = newoff;
/freebsd-10.0-release/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-10.0-release/usr.sbin/bhyve/
H A Dvirtio.c507 uint32_t newoff; local
542 newoff = offset - virtio_config_size;
544 if (newoff + size > max)
546 error = (*vc->vc_cfgread)(DEV_SOFTC(vs), newoff, size, &value);
626 uint32_t newoff; local
659 newoff = offset - virtio_config_size;
661 if (newoff + size > max)
663 error = (*vc->vc_cfgwrite)(DEV_SOFTC(vs), newoff, size, value);
/freebsd-10.0-release/sys/netinet6/
H A Dip6_input.c1819 int newoff; local
1827 newoff = ip6_nexthdr(m, off, proto, nxtp);
1828 if (newoff < 0)
1830 else if (newoff < off)
1832 else if (newoff == off)
1833 return newoff;
1835 off = newoff;
/freebsd-10.0-release/lib/libc/db/hash/
H A Dhash_page.c127 u_int16_t *bp, newoff, pairlen; local
136 newoff = bp[ndx - 1];
138 newoff = hashp->BSIZE;
139 pairlen = newoff - bp[ndx + 1];
/freebsd-10.0-release/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-10.0-release/sys/ufs/ufs/
H A Dufs_dirhash.c870 doff_t newoff)
879 newoff < dh->dh_dirblks * DIRBLKSIZ,
883 DH_ENTRY(dh, slot) = newoff;
869 ufsdirhash_move(struct inode *ip, struct direct *dirp, doff_t oldoff, doff_t newoff) argument
/freebsd-10.0-release/sys/dev/isp/
H A Disp_freebsd.c3994 uint32_t newoff; local
4025 newoff = (ccb->csio.msg_ptr[3] << 24) | (ccb->csio.msg_ptr[4] << 16) | (ccb->csio.msg_ptr[5] << 8) | (ccb->csio.msg_ptr[6]);
4026 ISP_PATH_PRT(isp, ISP_LOGWARN, ccb->ccb_h.path, "[0x%x] got message to return to reset offset to 0x%x at sequence %u\n", atio->tag_id, newoff, CTIO_SEQ(ccb));
4027 ATIO_PPD(atio)->offset = newoff;
/freebsd-10.0-release/sys/ufs/ffs/
H A Dffs_softdep.c3846 newjmvref(dp, ino, oldoff, newoff)
3850 off_t newoff;
3860 jmvref->jm_newoff = newoff;

Completed in 319 milliseconds