Lines Matching defs:eoff
3784 vm_ooffset_t foff, noff, eoff;
3799 eoff = noff;
3800 if (eoff > bp->b_offset + bp->b_bufsize)
3801 eoff = bp->b_offset + bp->b_bufsize;
3804 /* vm_page_clear_dirty(m, foff & PAGE_MASK, eoff - foff); */
4705 vm_ooffset_t eoff;
4708 * Compute the end offset, eoff, such that [off, eoff) does not span a
4709 * page boundary and eoff is not greater than the end of the buffer.
4713 eoff = (off + PAGE_SIZE) & ~(vm_ooffset_t)PAGE_MASK;
4714 if (eoff > bp->b_offset + bp->b_bcount)
4715 eoff = bp->b_offset + bp->b_bcount;
4721 if (eoff > off)
4722 vm_page_set_valid_range(m, off & PAGE_MASK, eoff - off);
4734 vm_ooffset_t soff, eoff;
4737 * Start and end offsets in buffer. eoff - soff may not cross a
4743 eoff = (off + PAGE_SIZE) & ~(off_t)PAGE_MASK;
4744 if (eoff > bp->b_offset + bp->b_bcount)
4745 eoff = bp->b_offset + bp->b_bcount;
4751 if (eoff > soff) {
4755 (vm_offset_t) (eoff - soff)