Home
last modified time | relevance | path

Searched refs:ovp (Results 1 – 3 of 3) sorted by relevance

/mirbsd/src/gnu/usr.bin/perl/
Dmalloc.c1672 union overhead *ovp; in getpages() local
1699 ovp = (union overhead *) (cp - sbrked_remains); in getpages()
1703 ovp = (union overhead *)emergency_sbrk(needed); in getpages()
1704 if (ovp == (union overhead *)-1) in getpages()
1706 if (((char*)ovp) > last_op) { /* Cannot happen with current emergency_sbrk() */ in getpages()
1709 return ovp; in getpages()
1782 ovp = (union overhead *) cp; in getpages()
1789 if (PTR2UV(ovp) & (NEEDED_ALIGNMENT - 1)) in getpages()
1794 if (PTR2UV(ovp) & (MEM_ALIGNBYTES - 1)) { in getpages()
1797 (int)(PTR2UV(ovp) & (MEM_ALIGNBYTES - 1)))); in getpages()
[all …]
/mirbsd/src/sys/ufs/ffs/
Dffs_inode.c148 struct vnode *ovp; in ffs_truncate() local
162 ovp = ITOV(oip); in ffs_truncate()
164 if (ovp->v_type != VREG && in ffs_truncate()
165 ovp->v_type != VDIR && in ffs_truncate()
166 ovp->v_type != VLNK) in ffs_truncate()
171 if (ovp->v_type == VLNK && in ffs_truncate()
172 (oip->i_ffs_size < ovp->v_mount->mnt_maxsymlinklen || in ffs_truncate()
173 (ovp->v_mount->mnt_maxsymlinklen == 0 && in ffs_truncate()
188 uvm_vnp_setsize(ovp, length); in ffs_truncate()
192 if (DOINGSOFTDEP(ovp)) { in ffs_truncate()
[all …]
/mirbsd/src/sys/ufs/ext2fs/
Dext2fs_inode.c225 struct vnode *ovp = ITOV(oip); in ext2fs_truncate() local
240 if (ovp->v_type != VREG && in ext2fs_truncate()
241 ovp->v_type != VDIR && in ext2fs_truncate()
242 ovp->v_type != VLNK) in ext2fs_truncate()
245 if (ovp->v_type == VLNK && in ext2fs_truncate()
246 (ext2fs_size(oip) < ovp->v_mount->mnt_maxsymlinklen || in ext2fs_truncate()
247 (ovp->v_mount->mnt_maxsymlinklen == 0 && in ext2fs_truncate()
286 uvm_vnp_setsize(ovp, length); in ext2fs_truncate()
287 uvm_vnp_uncache(ovp); in ext2fs_truncate()
316 uvm_vnp_setsize(ovp, length); in ext2fs_truncate()
[all …]