| /src/sys/rump/net/lib/libshmif/ |
| shmif_busops.c | 54 uint32_t newoff; local 56 newoff = oldoff + delta; 57 if (newoff >= BUSMEM_DATASIZE) 58 newoff -= BUSMEM_DATASIZE; 59 return newoff;
|
| /src/sys/arch/mvme68k/stand/bootst/ |
| rawfs.c | 136 off_t newoff; local 155 newoff = offset; 160 newoff = 0; 162 newoff = fs->fs_curblk * RAWFS_BSIZE; 163 newoff += RAWFS_BSIZE - fs->fs_len; 165 newoff += offset; 173 if (newoff < (curblk * RAWFS_BSIZE)) { 178 targblk = newoff / RAWFS_BSIZE; 195 idx = newoff % RAWFS_BSIZE; 199 return newoff; [all...] |
| /src/sys/external/bsd/drm2/linux/ |
| linux_dma_buf.c | 306 off_t base, newoff; local 333 newoff = base + delta; 337 *newoffp = newoff; 339 fp->f_offset = newoff;
|
| /src/sys/kern/ |
| sys_memfd.c | 379 off_t newoff; local 386 newoff = fp->f_offset + delta; 390 newoff = fp->f_memfd->mfd_size + delta; 394 newoff = delta; 403 *newoffp = newoff; 405 fp->f_offset = newoff;
|
| vfs_vnops.c | 1156 off_t oldoff, newoff; local 1179 newoff = OFF_MAX; 1184 newoff = OFF_MIN; 1188 newoff = oldoff + delta; 1196 newoff = OFF_MAX; 1199 newoff = delta + vattr.va_size; 1202 newoff = delta; 1210 error = VOP_SEEK(vp, oldoff, newoff, cred); 1216 *newoffp = newoff; 1218 fp->f_offset = newoff; [all...] |
| kern_ksyms.c | 1425 off_t base, newoff; local 1452 newoff = base + delta; 1456 *newoffp = newoff; 1458 fp->f_offset = newoff;
|
| vfs_wapbl.c | 1433 off_t newoff; local 1441 newoff = off + delta; 1443 newoff = oldoff + delta; 1445 newoff = (oldoff + delta) - size; 1448 KASSERT(delta != 0 || newoff == oldoff); 1449 KASSERT(delta == 0 || newoff != 0); 1450 KASSERT(delta != size || newoff == oldoff); 1453 KASSERT(newoff == 0 || (size_t)newoff >= off); 1454 KASSERT((size_t)newoff < size + off) [all...] |
| /src/external/apache2/llvm/dist/libcxx/src/ |
| strstream.cpp | 257 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 = __sp local [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/ |
| strstream.cc | 249 off_type newoff; local 253 newoff = 0; 256 newoff = seekhigh - seeklow; 259 newoff = do_put ? pptr() - seeklow : gptr() - seeklow; 265 off += newoff; 291 return pos_type(newoff);
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/ |
| strstream.cc | 249 off_type newoff; local 253 newoff = 0; 256 newoff = seekhigh - seeklow; 259 newoff = do_put ? pptr() - seeklow : gptr() - seeklow; 265 off += newoff; 291 return pos_type(newoff);
|
| /src/sys/ufs/lfs/ |
| ulfs_readwrite.c | 315 off_t newoff; local 350 newoff = oldoff + bytelen; 351 if (vp->v_size < newoff) { 352 uvm_vnp_setwritesize(vp, newoff); 384 if (vp->v_size < newoff) { 385 uvm_vnp_setsize(vp, newoff);
|
| /src/sys/ufs/ufs/ |
| ufs_readwrite.c | 354 off_t newoff; local 389 newoff = oldoff + bytelen; 390 if (vp->v_size < newoff) { 391 uvm_vnp_setwritesize(vp, newoff); 423 if (vp->v_size < newoff) { 424 uvm_vnp_setsize(vp, newoff);
|
| /src/lib/libc/db/hash/ |
| hash_page.c | 136 uint16_t *bp, newoff; local 147 newoff = bp[ndx - 1]; 149 newoff = HASH_BSIZE(hashp); 150 pairlen = newoff - bp[ndx + 1];
|
| /src/sys/netinet6/ |
| ip6_input.c | 1480 int newoff; local 1488 newoff = ip6_nexthdr(m, off, proto, nxtp); 1489 if (newoff < 0) 1491 else if (newoff < off) 1493 else if (newoff == off) 1494 return newoff; 1496 off = newoff;
|
| /src/sys/ufs/chfs/ |
| chfs_vnops.c | 875 off_t newoff; local 910 newoff = oldoff + bytelen; 911 if (vp->v_size < newoff) { 912 uvm_vnp_setwritesize(vp, newoff); 945 if (vp->v_size < newoff) { 946 uvm_vnp_setsize(vp, newoff);
|
| /src/sys/fs/puffs/ |
| puffs_vnops.c | 2338 off_t oldoff, newoff, origoff; local 2372 newoff = oldoff + bytelen; 2373 if (vp->v_size < newoff) { 2374 uvm_vnp_setwritesize(vp, newoff); 2386 if (vp->v_size < newoff) { 2389 uvm_vnp_setsize(vp, newoff);
|
| /src/external/gpl3/binutils/dist/gas/ |
| write.c | 2938 addressT oldoff, newoff; local 2942 newoff = relax_align (address + fragP->fr_fix, 2949 if (newoff > fragP->fr_subtype) 2950 newoff = 0; 2953 growth = newoff - oldoff; 2973 newf->fr_address = address + fragP->fr_fix + newoff;
|
| /src/external/gpl3/binutils.old/dist/gas/ |
| write.c | 2936 addressT oldoff, newoff; local 2940 newoff = relax_align (address + fragP->fr_fix, 2947 if (newoff > fragP->fr_subtype) 2948 newoff = 0; 2951 growth = newoff - oldoff; 2971 newf->fr_address = address + fragP->fr_fix + newoff;
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| tree-vect-stmts.cc | 8090 tree newoff = copy_ssa_name (running_off, NULL); local 8091 incr = gimple_build_assign (newoff, POINTER_PLUS_EXPR, 8094 running_off = newoff; 8118 tree newref, newoff; local 8145 newoff = copy_ssa_name (running_off, NULL); 8146 incr = gimple_build_assign (newoff, POINTER_PLUS_EXPR, 8150 running_off = newoff; 9284 tree newoff = copy_ssa_name (running_off); local 9286 = gimple_build_assign (newoff, POINTER_PLUS_EXPR, 9289 running_off = newoff; [all...] |