Lines Matching defs:tinc
3136 vm_offset_t tinc;
3183 tinc = PAGE_SIZE - ((bp->b_offset + toff) & PAGE_MASK);
3187 if (tinc > (size - toff))
3188 tinc = size - toff;
3191 vfs_buf_test_cache(bp, bp->b_offset, toff, tinc, m);
3192 toff += tinc;
3193 tinc = PAGE_SIZE;
3723 vm_offset_t toff, tinc, size;
3743 for (toff = 0; toff < vp->v_mount->mnt_stat.f_iosize; toff += tinc) {
3749 tinc = size;
3750 if (tinc > PAGE_SIZE - ((toff + off) & PAGE_MASK))
3751 tinc = PAGE_SIZE - ((toff + off) & PAGE_MASK);
3757 (vm_offset_t)((toff + off) & PAGE_MASK), tinc);