Home
last modified time | relevance | path

Searched refs:rtval (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/vm/
H A Dvnode_pager.c836 int rtval; in vnode_pager_getpages() local
840 rtval = VOP_GETPAGES(vp, m, count, rbehind, rahead); in vnode_pager_getpages()
841 KASSERT(rtval != EOPNOTSUPP, in vnode_pager_getpages()
843 return rtval; in vnode_pager_getpages()
851 int rtval; in vnode_pager_getpages_async() local
854 rtval = VOP_GETPAGES_ASYNC(vp, m, count, rbehind, rahead, iodone, arg); in vnode_pager_getpages_async()
855 KASSERT(rtval != EOPNOTSUPP, in vnode_pager_getpages_async()
857 return (rtval); in vnode_pager_getpages_async()
1313 int rtval __diagused; in vnode_pager_putpages()
1337 rtval = VOP_PUTPAGES(vp, m, bytes, flags, rtvals); in vnode_pager_putpages()
[all …]
/freebsd/sys/i386/i386/
H A Dpmap.c1690 vm_paddr_t rtval; in __CONCAT() local
1694 rtval = 0; in __CONCAT()
1699 rtval = (pde & PG_PS_FRAME) | (va & PDRMASK); in __CONCAT()
1702 rtval = (pte & PG_FRAME) | (va & PAGE_MASK); in __CONCAT()
1706 return (rtval); in __CONCAT()
5186 int rtval = 0; in __CONCAT() local
5235 rtval++; in __CONCAT()
5243 if (rtval >= PMAP_TS_REFERENCED_MAX) in __CONCAT()
5263 rtval++; in __CONCAT()
5271 } while ((pv = TAILQ_FIRST(&m->md.pv_list)) != pvf && rtval < in __CONCAT()
[all...]