/external/syslinux/gpxe/src/include/gpxe/ |
D | malloc.h | 40 static inline void * __malloc malloc_dma ( size_t size, size_t phys_align ) { in malloc_dma() function
|
/external/syslinux/gpxe/src/core/ |
D | iobuf.c | 54 data = malloc_dma ( len + sizeof ( *iobuf ), IOB_ALIGN ); in alloc_iob()
|
/external/syslinux/gpxe/src/drivers/net/ |
D | eepro100.c | 338 ias = malloc_dma ( sizeof ( *ias ), CB_ALIGN ); in ifec_net_open() 348 cfg = malloc_dma ( sizeof ( *cfg ), CB_ALIGN ); in ifec_net_open() 1073 priv->tcbs = malloc_dma ( TX_RING_BYTES, CB_ALIGN ); in ifec_tx_setup()
|
D | 3c90x.c | 257 malloc_dma(TX_RING_SIZE * sizeof(struct TXD), TX_RING_ALIGN); in a3c90x_setup_tx_ring() 468 malloc_dma(RX_RING_SIZE * sizeof(struct RXD), RX_RING_ALIGN); in a3c90x_setup_rx_ring()
|
D | b44.c | 443 bp->rx = malloc_dma(B44_RX_RING_LEN_BYTES, B44_DMA_ALIGNMENT); in b44_init_rx_ring() 471 bp->tx = malloc_dma(B44_TX_RING_LEN_BYTES, B44_DMA_ALIGNMENT); in b44_init_tx_ring()
|
D | sis190.c | 562 tp->TxDescRing = malloc_dma(TX_RING_BYTES, RING_ALIGNMENT); in sis190_open() 571 tp->RxDescRing = malloc_dma(RX_RING_BYTES, RING_ALIGNMENT); in sis190_open()
|
D | myri10ge.c | 696 priv->dma = malloc_dma ( sizeof ( *priv->dma ) , 128 ); in myri10ge_net_open()
|
D | r8169.c | 1594 tp->tx_base = malloc_dma ( R8169_TX_RING_BYTES, TX_RING_ALIGN ); in rtl8169_setup_tx_resources() 1728 tp->rx_base = malloc_dma ( R8169_RX_RING_BYTES, RX_RING_ALIGN ); in rtl8169_setup_rx_resources()
|
D | sky2.c | 1139 sky2->tx_le = malloc_dma(TX_RING_SIZE * sizeof(struct sky2_tx_le), TX_RING_ALIGN); in sky2_up() 1151 sky2->rx_le = malloc_dma(RX_LE_BYTES, RX_RING_ALIGN); in sky2_up() 2293 hw->st_le = malloc_dma(STATUS_LE_BYTES, STATUS_RING_ALIGN); in sky2_probe()
|
D | atl1e.c | 414 adapter->ring_vir_addr = malloc_dma(adapter->ring_size, 32); in atl1e_setup_ring_resources()
|
D | skge.c | 1719 skge->mem = malloc_dma(RING_SIZE, SKGE_RING_ALIGN); in skge_up()
|
D | etherfabric.c | 3048 buffer = malloc_dma ( bytes, EFAB_BUF_ALIGN ); in falcon_alloc_special_buffer()
|
/external/syslinux/gpxe/src/drivers/infiniband/ |
D | arbel.c | 578 arbel_cq->cqe = malloc_dma ( arbel_cq->cqe_size, in arbel_create_cq() 707 arbel_send_wq->wqe = malloc_dma ( arbel_send_wq->wqe_size, in arbel_create_send_wq() 744 arbel_recv_wq->wqe = malloc_dma ( arbel_recv_wq->wqe_size, in arbel_create_recv_wq() 1325 arbel_eq->eqe = malloc_dma ( arbel_eq->eqe_size, in arbel_create_eq() 2132 arbel->mailbox_in = malloc_dma ( ARBEL_MBOX_SIZE, ARBEL_MBOX_ALIGN ); in arbel_probe() 2137 arbel->mailbox_out = malloc_dma ( ARBEL_MBOX_SIZE, ARBEL_MBOX_ALIGN ); in arbel_probe()
|
D | hermon.c | 731 hermon_cq->cqe = malloc_dma ( hermon_cq->cqe_size, in hermon_create_cq() 987 hermon_qp->wqe = malloc_dma ( hermon_qp->wqe_size, in hermon_create_qp() 1586 hermon_eq->eqe = malloc_dma ( hermon_eq->eqe_size, in hermon_create_eq() 2609 hermon->mailbox_in = malloc_dma ( HERMON_MBOX_SIZE, in hermon_probe() 2615 hermon->mailbox_out = malloc_dma ( HERMON_MBOX_SIZE, in hermon_probe()
|
D | linda.c | 547 linda->sendbufavail = malloc_dma ( sizeof ( *linda->sendbufavail ), in linda_init_send() 629 linda_wq->header = malloc_dma ( LINDA_RECV_HEADERS_SIZE, in linda_create_recv_wq()
|
/external/syslinux/gpxe/src/drivers/net/e1000/ |
D | e1000.c | 212 malloc_dma ( adapter->tx_ring_size, adapter->tx_ring_size ); in e1000_setup_tx_resources() 358 malloc_dma ( adapter->rx_ring_size, adapter->rx_ring_size ); in e1000_setup_rx_resources()
|
/external/syslinux/gpxe/src/drivers/net/phantom/ |
D | phantom.c | 612 buf = malloc_dma ( sizeof ( *buf ), UNM_DMA_BUFFER_ALIGN ); in phantom_create_rx_ctx() 732 buf = malloc_dma ( sizeof ( *buf ), UNM_DMA_BUFFER_ALIGN ); in phantom_create_tx_ctx() 1131 phantom->desc = malloc_dma ( sizeof ( *(phantom->desc) ), in phantom_open()
|
/external/syslinux/gpxe/src/drivers/net/rtl818x/ |
D | rtl818x.c | 331 priv->rx_ring = malloc_dma(sizeof(*priv->rx_ring) * RTL818X_RX_RING_SIZE, in rtl818x_init_rx_ring() 376 priv->tx_ring = malloc_dma(sizeof(*priv->tx_ring) * RTL818X_TX_RING_SIZE, in rtl818x_init_tx_ring()
|
/external/syslinux/gpxe/src/drivers/net/ath5k/ |
D | ath5k.c | 922 sc->desc = malloc_dma(sc->desc_len, ATH5K_DESC_ALIGN); in ath5k_desc_alloc()
|