Lines Matching defs:isize
150 vnode_create_vobject_any(struct vnode *vp, off_t isize, struct thread *td)
160 if (isize == VNODE_NO_SIZE) {
164 size = isize;
186 vnode_create_vobject(struct vnode *vp, off_t isize, struct thread *td)
189 VNASSERT(isize == VNODE_NO_SIZE || isize >= 0, vp,
190 ("%s: invalid size (%jd)", __func__, (intmax_t)isize));
195 return (vnode_create_vobject_any(vp, isize, td));
199 vnode_create_disk_vobject(struct vnode *vp, off_t isize, struct thread *td)
201 VNASSERT(isize > 0, vp, ("%s: invalid size (%jd)", __func__,
202 (intmax_t)isize));
204 return (vnode_create_vobject_any(vp, isize, td));