Searched refs:rx (Results 76 - 100 of 142) sorted by relevance

123456

/freebsd-11-stable/tools/tools/netmap/
H A Dpkt-gen.c277 #define OPT_DUMP 64 /* dump rx/tx traffic */
616 * by commas: #tx-slots,#rx-slots,#tx-rings,#rx-rings.
619 * is specified, then this is assigned to both #tx-slots and #rx-slots.
621 * and #rx-rings.
1286 int i, m, rx = 0; local
1375 rx = 0;
1410 rx++;
1413 //D("tx %d rx %d", sent, rx);
1478 int i, rx = 0; local
1763 u_int head, rx, n; local
[all...]
/freebsd-11-stable/sys/dev/altera/atse/
H A Dif_atse.c1409 atse_intr_debug(sc, "rx");
1421 * There is considerable subtlety in the race-free handling of rx
1519 uint32_t rx, tx; local
1521 rx = ATSE_RX_EVENT_READ(sc);
1524 if (rx & (A_ONCHIP_FIFO_MEM_CORE_EVENT_OVERFLOW|
1527 atse_update_rx_err(sc, ((rx &
/freebsd-11-stable/sys/dev/cxgbe/tom/
H A Dt4_tls.h122 struct tls_rx_ctxt rx; member in struct:tls_key_context
/freebsd-11-stable/contrib/file/src/
H A Dfile.h562 regex_t rx; member in struct:__anon10
H A Dapprentice.c2697 file_regex_t rx; local
2698 int rc = file_regcomp(&rx, m->value.s, REG_EXTENDED);
2701 file_regerror(&rx, rc, ms);
2703 file_regfree(&rx);
/freebsd-11-stable/sys/dev/bwn/
H A Dif_bwnvar.h703 struct bwn_dma_ring *rx; member in struct:bwn_dma
736 struct bwn_pio_rxqueue rx; member in struct:bwn_pio
H A Dif_bwn.c2419 bwn_pio_setupqueue_rx(mac, &pio->rx, 0);
2631 bwn_dma_setup(dma->rx);
4591 bwn_dma_ringfree(&dma->rx);
4863 int i, tx = 0, rx = 0; local
4922 bwn_dma_rx(mac->mac_method.dma.rx);
4923 rx = 1;
4926 rx = bwn_pio_rx(&mac->mac_method.pio.rx);
4944 if (tx && rx) {
4951 } else if (rx) {
[all...]
/freebsd-11-stable/sys/dev/bnxt/
H A Dif_bnxt.c1267 if (link_info->flow_ctrl.rx)
2208 if (link_info->flow_ctrl.tx & link_info->flow_ctrl.rx)
2212 else if (link_info->flow_ctrl.rx)
2229 link_info->last_flow_ctrl.rx = link_info->flow_ctrl.rx;
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Devents.c4548 struct rx_mgmt *rx = &data->rx_mgmt; local
4549 size_t hex_len = 2 * rx->frame_len + 1;
4553 rx->frame, rx->frame_len);
4555 rx->freq, rx->datarate, rx->ssi_signal,
/freebsd-11-stable/sys/dev/bxe/
H A Decore_sp.c2552 /* In e1x there we only take into account rx accept flag since tx switching
4772 data->rx.tpa_en |= ECORE_TEST_BIT(ECORE_Q_FLG_TPA_IPV6,
4937 /* initialize the general, tx and rx parts of a queue object */
4954 &data->rx,
4959 &data->rx);
5015 ECORE_TEST_BIT(ECORE_Q_FLG_HC, &init->rx.flags)) {
5016 hc_usec = init->rx.hc_rate ? 1000000 / init->rx.hc_rate : 0;
5018 ECORE_UPDATE_COALESCE_SB_INDEX(sc, init->rx.fw_sb_id,
5019 init->rx
[all...]
/freebsd-11-stable/sys/dev/ce/
H A Dceddk.c152 return "Allocation error, not enough tx/rx descriptors";
180 return "frame has splitted between two requests due rx-gap allocation";
527 void ce_start_chan (ce_chan_t *c, int tx, int rx, ce_buf_t *cb, argument
562 /* submit rx */
579 CE_DDK_DEBUG (b, c, ("Faild to submit rx request\n"));
587 if (tx | rx) {
594 (rx ? TAU32_Rx_Start : 0);
/freebsd-11-stable/sys/dev/vxge/include/
H A Dvxgehal-ll.h4026 * @rx : A field to return the pause reception capability of the NIC.
4037 u32 *rx);
4551 * @rx : A field to return the pause reception capability of the NIC.
4561 u32 *rx);
4569 * @rx: A field that indicates the pause reception capability to be
4583 u32 rx);
/freebsd-11-stable/crypto/heimdal/
H A Dconfig.sub290 | rx \
376 | romp-* | rs6000-* | rx-* \
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Decore_l2.c89 u8 rx = 0, tx = 0; local
91 ecore_vf_get_num_rxqs(p_hwfn, &rx);
94 p_l2_info->queues = (u32)OSAL_MAX_T(u8, rx, tx);
1001 /* Init the rcq, rx bd and rx sge (if valid) producers to 0 */
1408 p_ramrod->filter_cmd_hdr.rx = p_filter_cmd->is_rx_filter ? 1 : 0;
/freebsd-11-stable/sys/dev/iwn/
H A Dif_iwn.c3341 "%s: size of rx statistics (%d) not an expected size!\n",
3358 memcpy(&lstats->rx.ofdm, &stats_bt->rx_bt.ofdm,
3360 memcpy(&lstats->rx.cck, &stats_bt->rx_bt.cck,
3362 memcpy(&lstats->rx.general, &stats_bt->rx_bt.general_bt.common,
3364 memcpy(&lstats->rx.ht, &stats_bt->rx_bt.ht,
3439 sc->noise = iwn_get_noise(&lstats->rx.general);
3443 if (le32toh(lstats->rx.general.flags) != 1) {
3450 iwn_collect_noise(sc, &lstats->rx.general);
3452 iwn_tune_sensitivity(sc, &lstats->rx);
3473 calib->bad_plcp_cck = le32toh(rs->rx
[all...]
/freebsd-11-stable/contrib/tcpdump/
H A DMakefile.in203 print-rx.c \
H A Dconfig.sub629 | rl78 | rx \
756 | rl78-* | romp-* | rs6000-* | rx-* \
/freebsd-11-stable/contrib/file/
H A Dconfig.sub1232 | rl78 | romp | rs6000 | rx \
/freebsd-11-stable/sys/dev/vxge/vxgehal/
H A Dvxgehal-device.c3541 * @rx : A field to return the pause reception capability of the NIC.
3552 u32 *rx)
3566 "rx = 0x"VXGE_OS_STXFMT, (ptr_t) devh, port, (ptr_t) tx,
3567 (ptr_t) rx);
3595 *rx = 1;
3548 vxge_hal_device_getpause_data( vxge_hal_device_h devh, u32 port, u32 *tx, u32 *rx) argument
H A Dvxgehal-mrpcim.c6221 * @rx : A field to return the pause reception capability of the NIC.
6232 u32 *rx)
6244 "rx = 0x"VXGE_OS_STXFMT, (ptr_t) devh, port, (ptr_t) tx,
6245 (ptr_t) rx);
6273 *rx = 1;
6288 * @rx: A field that indicates the pause reception capability to be
6302 u32 rx)
6313 "devh = 0x"VXGE_OS_STXFMT", port = %d, tx = %d, rx = %d",
6314 (ptr_t) devh, port, tx, rx);
6341 if (rx)
6228 vxge_hal_mrpcim_getpause_data( vxge_hal_device_h devh, u32 port, u32 *tx, u32 *rx) argument
6298 vxge_hal_mrpcim_setpause_data( vxge_hal_device_h devh, u32 port, u32 tx, u32 rx) argument
[all...]
/freebsd-11-stable/sys/dev/ixgbe/
H A Dix_txrx.c1127 ixgbe_rsc_count(union ixgbe_adv_rx_desc *rx) argument
1129 return (le32toh(rx->wb.lower.lo_dword.data) &
2150 snprintf(rxr->mtx_name, sizeof(rxr->mtx_name), "%s:rx(%d)",
/freebsd-11-stable/contrib/libpcap/
H A Dconfig.sub629 | rl78 | rx \
756 | rl78-* | romp-* | rs6000-* | rx-* \
/freebsd-11-stable/contrib/unbound/
H A Dconfig.sub1234 | rl78 | romp | rs6000 | rx \
/freebsd-11-stable/contrib/ncurses/
H A Dconfig.sub304 | rl78 | rx \
422 | rl78-* | romp-* | rs6000-* | rx-* \
/freebsd-11-stable/contrib/dialog/
H A Dconfig.sub303 | rl78 | rx \
420 | rl78-* | romp-* | rs6000-* | rx-* \

Completed in 427 milliseconds

123456