Lines Matching refs:dev_dmat
391 bus_dma_tag_t dev_dmat; /* Identifies the pool */ member
649 static __inline m_pool_s *___get_dma_pool(bus_dma_tag_t dev_dmat) in ___get_dma_pool() argument
652 for (mp = mp0.next; mp && mp->dev_dmat != dev_dmat; mp = mp->next); in ___get_dma_pool()
656 static m_pool_s *___cre_dma_pool(bus_dma_tag_t dev_dmat) in ___cre_dma_pool() argument
662 mp->dev_dmat = dev_dmat; in ___cre_dma_pool()
663 if (!bus_dma_tag_create(dev_dmat, 1, MEMO_CLUSTER_SIZE, in ___cre_dma_pool()
698 static void *__sym_calloc_dma(bus_dma_tag_t dev_dmat, int size, char *name) in __sym_calloc_dma() argument
704 mp = ___get_dma_pool(dev_dmat); in __sym_calloc_dma()
706 mp = ___cre_dma_pool(dev_dmat); in __sym_calloc_dma()
719 __sym_mfree_dma(bus_dma_tag_t dev_dmat, void *m, int size, char *name) in __sym_mfree_dma() argument
724 mp = ___get_dma_pool(dev_dmat); in __sym_mfree_dma()
734 static m_addr_t __vtobus(bus_dma_tag_t dev_dmat, void *m) in __vtobus() argument
742 mp = ___get_dma_pool(dev_dmat); in __vtobus()