Searched refs:txbuf (Results 1 - 24 of 24) sorted by relevance

/freebsd-10.3-release/sys/boot/powerpc/ps3/
H A Dps3net.c109 volatile static char txbuf[1536] __aligned(128);
132 memcpy(txbuf, pkt, 12);
137 ((uint8_t *)txbuf)[12] = 0x81;
138 ((uint8_t *)txbuf)[13] = 0x00;
139 ((uint8_t *)txbuf)[14] = vlan >> 8;
140 ((uint8_t *)txbuf)[15] = vlan & 0xff;
142 memcpy((void *)txbuf + sendlen, pkt + 12, len - 12);
146 txdesc.paddr = dma_base + (uint32_t)txbuf;
/freebsd-10.3-release/sys/dev/ixgbe/
H A Dix_txrx.c341 struct ixgbe_tx_buf *txbuf; local
359 txbuf = &txr->tx_buffers[first];
360 map = txbuf->map;
439 txbuf = &txr->tx_buffers[i];
458 txbuf->m_head = m_head;
465 txr->tx_buffers[first].map = txbuf->map;
466 txbuf->map = map;
470 txbuf = &txr->tx_buffers[first];
471 txbuf->eop = txd;
502 struct ixgbe_tx_buf *txbuf; local
559 struct ixgbe_tx_buf *txbuf; local
[all...]
/freebsd-10.3-release/sys/dev/netmap/
H A Dif_em_netmap.h151 struct em_txbuffer *txbuf = &txr->tx_buffers[nic_i]; local
161 netmap_reload_map(na, txr->txtag, txbuf->map, addr);
169 bus_dmamap_sync(txr->txtag, txbuf->map,
H A Dif_igb_netmap.h123 struct igb_tx_buf *txbuf = &txr->tx_buffers[nic_i]; local
132 netmap_reload_map(na, txr->txtag, txbuf->map, addr);
149 bus_dmamap_sync(txr->txtag, txbuf->map,
H A Dif_ixl_netmap.h219 struct ixl_tx_buf *txbuf = &txr->buffers[nic_i]; local
232 netmap_reload_map(na, txr->dma.tag, txbuf->map, addr);
245 bus_dmamap_sync(txr->dma.tag, txbuf->map,
H A Dixgbe_netmap.h231 struct ixgbe_tx_buf *txbuf = &txr->tx_buffers[nic_i]; local
244 netmap_reload_map(na, txr->txtag, txbuf->map, addr);
256 bus_dmamap_sync(txr->txtag, txbuf->map,
H A Dif_lem_netmap.h138 struct em_buffer *txbuf = &adapter->tx_buffer_area[nic_i]; local
148 netmap_reload_map(na, adapter->txtag, txbuf->map, addr);
156 bus_dmamap_sync(adapter->txtag, txbuf->map,
/freebsd-10.3-release/sys/dev/digi/
H A Ddigi.h75 u_char *txbuf; member in struct:digi_p
H A Ddigi.c556 port->txbuf = ptr +
563 port->txbuf = ptr + ((bc->tseg - sc->mem_seg) << 4);
567 port->txbuf = ptr +
1367 ocount = q_to_b(&tp->t_outq, port->txbuf + head, size);
/freebsd-10.3-release/tools/tools/netmap/
H A Dbridge.c100 char *txbuf = NETMAP_BUF(txring, ts->buf_idx); local
101 nm_pkt_copy(rxbuf, txbuf, ts->len);
/freebsd-10.3-release/sys/dev/e1000/
H A Dif_em.c3557 struct em_txbuffer *txbuf; local
3588 txbuf = txr->tx_buffers;
3589 for (i = 0; i < adapter->num_tx_desc; i++, txbuf++) {
3590 error = bus_dmamap_create(txr->txtag, 0, &txbuf->map);
3613 struct em_txbuffer *txbuf; local
3633 txbuf = txr->tx_buffers;
3634 for (i = 0; i < adapter->num_tx_desc; i++, txbuf++) {
3635 if (txbuf->m_head != NULL) {
3636 bus_dmamap_sync(txr->txtag, txbuf->map,
3638 bus_dmamap_unload(txr->txtag, txbuf
3841 struct em_txbuffer *txbuf; local
[all...]
H A Dif_igb.c1789 struct igb_tx_buf *txbuf; local
1807 txbuf = &txr->tx_buffers[first];
1808 map = txbuf->map;
1873 txbuf = &txr->tx_buffers[i];
1892 txbuf->m_head = m_head;
1899 txr->tx_buffers[first].map = txbuf->map;
1900 txbuf->map = map;
1904 txbuf = &txr->tx_buffers[first];
1905 txbuf->eop = txd;
3382 struct igb_tx_buf *txbuf; local
3438 struct igb_tx_buf *txbuf; local
[all...]
/freebsd-10.3-release/contrib/ntp/ntpd/
H A Drefclock_parse.c5034 struct txbuf struct
5040 void sendcmd (struct txbuf *buf, int c);
5041 void sendbyte (struct txbuf *buf, int b);
5042 void sendetx (struct txbuf *buf, struct parseunit *parse);
5043 void sendint (struct txbuf *buf, int a);
5044 void sendflt (struct txbuf *buf, double a);
5048 struct txbuf *buf,
5057 void sendcmd (struct txbuf *buf, int c);
5058 void sendbyte (struct txbuf *buf, int b);
5059 void sendetx (struct txbuf *bu
[all...]
/freebsd-10.3-release/contrib/bsnmp/snmpd/
H A Daction.c628 value->v.integer = snmpd.txbuf;
650 ctx->scratch->int1 = snmpd.txbuf;
654 snmpd.txbuf = value->v.integer;
699 snmpd.txbuf = ctx->scratch->int1;
H A Dsnmpd.h229 u_int32_t txbuf; member in struct:snmpd
H A Dmain.c90 2048, /* txbuf */
257 if ((buf = malloc(tx ? snmpd.txbuf : snmpd.rxbuf)) == NULL) {
274 return (tx ? snmpd.txbuf : snmpd.rxbuf);
287 resp_b.asn_len = snmpd.txbuf;
673 resp_b.asn_len = snmpd.txbuf;
749 resp_b.asn_len = snmpd.txbuf;
/freebsd-10.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-sriox-defs.h821 uint64_t txbuf : 2; /**< Outgoing SRIO MAC Buffer. */ member in struct:cvmx_sriox_bist_status::cvmx_sriox_bist_status_s
829 uint64_t txbuf : 2;
865 uint64_t txbuf : 2; /**< Outgoing SRIO MAC Buffer. */ member in struct:cvmx_sriox_bist_status::cvmx_sriox_bist_status_cn63xx
874 uint64_t txbuf : 2;
908 uint64_t txbuf : 2; /**< Outgoing SRIO MAC Buffer. */ member in struct:cvmx_sriox_bist_status::cvmx_sriox_bist_status_cn63xxp1
916 uint64_t txbuf : 2;
/freebsd-10.3-release/sys/dev/rc/
H A Drc.c1116 u_char txbuf[CD180_NFIFO]; /* TX buffer */ member in struct:rtest
1159 tchans[chan].txbuf[i] = ctest[i];
1186 tchans[chan].txbuf[iack]);
/freebsd-10.3-release/sys/dev/ctau/
H A Dctddk.h593 void ct_start_scc (ct_chan_t *c, char *rxbuf, char * txbuf);
H A Dctddk.c285 void ct_start_scc (ct_chan_t *c, char *rxbuf, char *txbuf) argument
288 c->scctx = txbuf;
/freebsd-10.3-release/sys/arm/xscale/ixp425/
H A Dif_npe.c277 SYSCTL_INT(_hw_npe, OID_AUTO, txbuf, CTLFLAG_RD, &npe_txbuf,
279 TUNABLE_INT("hw.npe.txbuf", &npe_txbuf);
/freebsd-10.3-release/sys/dev/malo/
H A Dif_malo.c79 SYSCTL_INT(_hw_malo, OID_AUTO, txbuf, CTLFLAG_RW, &malo_txbuf,
81 TUNABLE_INT("hw.malo.txbuf", &malo_txbuf);
/freebsd-10.3-release/sys/dev/mwl/
H A Dif_mwl.c194 SYSCTL_INT(_hw_mwl, OID_AUTO, txbuf, CTLFLAG_RW, &mwl_txbuf,
196 TUNABLE_INT("hw.mwl.txbuf", &mwl_txbuf);
/freebsd-10.3-release/sys/dev/ath/
H A Dif_ath.c245 SYSCTL_INT(_hw_ath, OID_AUTO, txbuf, CTLFLAG_RW, &ath_txbuf,
247 TUNABLE_INT("hw.ath.txbuf", &ath_txbuf);
708 * in the txbuf list before allowing data frames (raw or
2562 * safe print a warning and fudge the txbuf

Completed in 382 milliseconds