• Home
  • Raw
  • Download

Lines Matching refs:ind

174 	u32 ind = (u32) index;  in tmem_cleancache_put_page()  local
180 if (ind != index) in tmem_cleancache_put_page()
183 (void)xen_tmem_put_page((u32)pool, oid, ind, pfn); in tmem_cleancache_put_page()
189 u32 ind = (u32) index; in tmem_cleancache_get_page() local
197 if (ind != index) in tmem_cleancache_get_page()
199 ret = xen_tmem_get_page((u32)pool, oid, ind, pfn); in tmem_cleancache_get_page()
209 u32 ind = (u32) index; in tmem_cleancache_flush_page() local
214 if (ind != index) in tmem_cleancache_flush_page()
216 (void)xen_tmem_flush_page((u32)pool, oid, ind); in tmem_cleancache_flush_page()
277 static inline struct tmem_oid oswiz(unsigned type, u32 ind) in oswiz() argument
280 oid.oid[0] = _oswiz(type, ind); in oswiz()
289 u32 ind = (u32)offset; in tmem_frontswap_store() local
296 if (ind64 != ind) in tmem_frontswap_store()
299 ret = xen_tmem_put_page(pool, oswiz(type, ind), iswiz(ind), pfn); in tmem_frontswap_store()
315 u32 ind = (u32)offset; in tmem_frontswap_load() local
322 if (ind64 != ind) in tmem_frontswap_load()
324 ret = xen_tmem_get_page(pool, oswiz(type, ind), iswiz(ind), pfn); in tmem_frontswap_load()
336 u32 ind = (u32)offset; in tmem_frontswap_flush_page() local
341 if (ind64 != ind) in tmem_frontswap_flush_page()
343 (void) xen_tmem_flush_page(pool, oswiz(type, ind), iswiz(ind)); in tmem_frontswap_flush_page()
350 int ind; in tmem_frontswap_flush_area() local
354 for (ind = SWIZ_MASK; ind >= 0; ind--) in tmem_frontswap_flush_area()
355 (void)xen_tmem_flush_object(pool, oswiz(type, ind)); in tmem_frontswap_flush_area()