Searched refs:toff (Results 1 - 8 of 8) sorted by relevance

/freebsd-13-stable/sys/dev/syscons/daemon/
H A Ddaemon_saver.c213 static int xoff, yoff, toff; local
240 clear_string(sc, txpos, typos, toff, message, tlen);
334 toff = 0;
339 toff = -txpos;
346 draw_string(sc, txpos, typos, toff, message, tlen);
/freebsd-13-stable/sys/fs/smbfs/
H A Dsmbfs_io.c426 int i, error, nextoff, size, toff, npages, count;
500 for (i = 0, toff = 0; i < npages; i++, toff = nextoff) {
502 nextoff = toff + PAGE_SIZE;
512 } else if (size > toff) {
517 vm_page_set_valid_range(m, 0, size - toff);
/freebsd-13-stable/sys/kern/
H A Dvfs_cluster.c350 int i, inc, j, k, toff; local
453 toff = off & PAGE_MASK;
455 if (toff + tinc > PAGE_SIZE)
456 tinc = PAGE_SIZE - toff;
460 vm_page_bits(toff, tinc)) != 0) {
H A Dvfs_bio.c3060 vm_offset_t toff; local
3107 toff = bp->b_bcount;
3108 tinc = PAGE_SIZE - ((bp->b_offset + toff) & PAGE_MASK);
3109 while ((bp->b_flags & B_CACHE) && toff < size) {
3112 if (tinc > (size - toff))
3113 tinc = size - toff;
3114 pi = ((bp->b_offset & PAGE_MASK) + toff) >> PAGE_SHIFT;
3116 vfs_buf_test_cache(bp, bp->b_offset, toff, tinc, m);
3117 toff += tinc;
3627 vm_offset_t toff, tin local
[all...]
/freebsd-13-stable/sys/fs/nfsclient/
H A Dnfs_clbio.c120 int i, error, nextoff, size, toff, count, npages; local
221 for (i = 0, toff = 0; i < npages; i++, toff = nextoff) {
223 nextoff = toff + PAGE_SIZE;
233 } else if (size > toff) {
238 vm_page_set_valid_range(m, 0, size - toff);
H A Dnfs_clvnops.c2823 u_quad_t off, endoff, toff; local
2938 toff = ((u_quad_t)bp->b_blkno) * DEV_BSIZE +
2940 if (toff < off)
2941 off = toff;
2942 toff += (u_quad_t)(bp->b_dirtyend - bp->b_dirtyoff);
2943 if (toff > endoff)
2944 endoff = toff;
/freebsd-13-stable/sys/fs/nfsserver/
H A Dnfs_nfsdport.c1967 u_int64_t off, toff, verf __unused; local
1988 toff = off;
2004 if (!nd->nd_repstat && toff && verf != at.na_filerev)
2110 (is_ufs == 1 && ((u_quad_t)(*cookiep)) <= toff))) {
2118 toff = off;
2228 u_int64_t off, toff, verf; local
2246 toff = off;
2397 (is_ufs == 1 && ((u_quad_t)(*cookiep)) <= toff) ||
2408 toff = off;
/freebsd-13-stable/sys/netipsec/
H A Dkey.c8009 int toff; local
8025 n = m_pulldown(m, off, sizeof(struct sadb_ext), &toff);
8030 ext = (struct sadb_ext *)(mtod(n, caddr_t) + toff);
8090 n = m_pulldown(m, off, extlen, &toff);
8095 ext = (struct sadb_ext *)(mtod(n, caddr_t) + toff);

Completed in 192 milliseconds