Lines Matching defs:viter
955 extern void vmw_piter_start(struct vmw_piter *viter,
962 * @viter: Pointer to the iterator to advance.
966 static inline bool vmw_piter_next(struct vmw_piter *viter)
968 return viter->next(viter);
974 * @viter: Pointer to the iterator
976 * Returns the DMA address of the page pointed to by @viter.
978 static inline dma_addr_t vmw_piter_dma_addr(struct vmw_piter *viter)
980 return viter->dma_address(viter);
986 * @viter: Pointer to the iterator
988 * Returns the DMA address of the page pointed to by @viter.
990 static inline struct page *vmw_piter_page(struct vmw_piter *viter)
992 return viter->pages[viter->i];