Lines Matching defs:viter
920 extern void vmw_piter_start(struct vmw_piter *viter,
927 * @viter: Pointer to the iterator to advance.
931 static inline bool vmw_piter_next(struct vmw_piter *viter)
933 return viter->next(viter);
939 * @viter: Pointer to the iterator
941 * Returns the DMA address of the page pointed to by @viter.
943 static inline dma_addr_t vmw_piter_dma_addr(struct vmw_piter *viter)
945 return viter->dma_address(viter);
951 * @viter: Pointer to the iterator
953 * Returns the DMA address of the page pointed to by @viter.
955 static inline struct page *vmw_piter_page(struct vmw_piter *viter)
957 return viter->pages[viter->i];