Lines Matching refs:dev_dmat
384 bus_dma_tag_t dev_dmat; /* Identifies the pool */ member
639 static __inline m_pool_s *___get_dma_pool(bus_dma_tag_t dev_dmat) in ___get_dma_pool() argument
642 for (mp = mp0.next; mp && mp->dev_dmat != dev_dmat; mp = mp->next); in ___get_dma_pool()
646 static m_pool_s *___cre_dma_pool(bus_dma_tag_t dev_dmat) in ___cre_dma_pool() argument
652 mp->dev_dmat = dev_dmat; in ___cre_dma_pool()
653 if (!bus_dma_tag_create(dev_dmat, 1, MEMO_CLUSTER_SIZE, in ___cre_dma_pool()
688 static void *__sym_calloc_dma(bus_dma_tag_t dev_dmat, int size, char *name) in __sym_calloc_dma() argument
694 mp = ___get_dma_pool(dev_dmat); in __sym_calloc_dma()
696 mp = ___cre_dma_pool(dev_dmat); in __sym_calloc_dma()
709 __sym_mfree_dma(bus_dma_tag_t dev_dmat, void *m, int size, char *name) in __sym_mfree_dma() argument
714 mp = ___get_dma_pool(dev_dmat); in __sym_mfree_dma()
724 static m_addr_t __vtobus(bus_dma_tag_t dev_dmat, void *m) in __vtobus() argument
732 mp = ___get_dma_pool(dev_dmat); in __vtobus()