Home
last modified time | relevance | path

Searched refs:txf (Results 1 – 6 of 6) sorted by relevance

/freebsd/sys/dev/xen/netback/
H A Dnetback_unit_tests.c186 netif_tx_front_ring_t txf; member
351 FRONT_RING_INIT(&xnb_unit_pvt.txf, xnb_unit_pvt.txs, PAGE_SIZE); in setup_pvt_data()
411 req = RING_GET_REQUEST(&xnb_unit_pvt.txf, in xnb_ring2pkt_1req()
412 xnb_unit_pvt.txf.req_prod_pvt); in xnb_ring2pkt_1req()
416 xnb_unit_pvt.txf.req_prod_pvt++; in xnb_ring2pkt_1req()
418 RING_PUSH_REQUESTS(&xnb_unit_pvt.txf); in xnb_ring2pkt_1req()
441 RING_IDX start_idx = xnb_unit_pvt.txf.req_prod_pvt; in xnb_ring2pkt_2req()
443 req = RING_GET_REQUEST(&xnb_unit_pvt.txf, in xnb_ring2pkt_2req()
444 xnb_unit_pvt.txf.req_prod_pvt); in xnb_ring2pkt_2req()
447 xnb_unit_pvt.txf.req_prod_pvt++; in xnb_ring2pkt_2req()
[all …]
/freebsd/sys/dev/iwm/
H A Dif_iwm_mac_ctxt.c343 uint8_t txf = iwm_ac_to_tx_fifo[i]; in iwm_mac_ctxt_cmd_common() local
345 cmd->ac[txf].cw_min = htole16(ivp->queue_params[i].cw_min); in iwm_mac_ctxt_cmd_common()
346 cmd->ac[txf].cw_max = htole16(ivp->queue_params[i].cw_max); in iwm_mac_ctxt_cmd_common()
347 cmd->ac[txf].edca_txop = in iwm_mac_ctxt_cmd_common()
349 cmd->ac[txf].aifsn = ivp->queue_params[i].aifsn; in iwm_mac_ctxt_cmd_common()
350 cmd->ac[txf].fifos_mask = (1 << txf); in iwm_mac_ctxt_cmd_common()
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dops.c930 struct iwl_mvm_frob_txf_data *txf = data; in iwl_mvm_frob_hcmd()
949 memset(txf->buf, 0xBB, txf->buflen); in iwl_mvm_frob_hcmd()
957 for (i = 0; i < txf->buflen; i++) { in iwl_mvm_frob_hcmd()
958 if (txf->buf[i] != keydata[match]) { in iwl_mvm_frob_hcmd()
964 memset(txf->buf + i - keylen, 0xAA, keylen); in iwl_mvm_frob_mem()
972 if (txf->buf[i] != keydata[match]) in iwl_mvm_frob_mem()
976 memset(txf->buf, 0xAA, i + 1); in iwl_mvm_frob_mem()
977 memset(txf->buf + txf in iwl_mvm_frob_mem()
847 struct iwl_mvm_frob_txf_data *txf = data; iwl_mvm_frob_txf_key_iter() local
903 struct iwl_mvm_frob_txf_data txf = { iwl_mvm_frob_txf() local
[all...]
H A Dtx.c889 unsigned int txf; in iwl_mvm_tx_tso_segment()
897 txf = iwl_mvm_mac_ac_to_tx_fifo(mvm, ac); in iwl_mvm_tx_tso_segment()
929 mvm->fwrt.smem_cfg.lmac[lmac].txfifo_size[txf] - 256); in iwl_mvm_tx_tso_segment()
936 mvm->fwrt.smem_cfg.lmac[lmac].txfifo_size[txf] - 256); in iwl_mvm_tx_tso_segment()
820 unsigned int txf; iwl_mvm_max_amsdu_size() local
H A Dmac-ctxt.c493 u8 txf = iwl_mvm_mac_ac_to_tx_fifo(mvm, i); in iwl_mvm_set_fw_qos_params()
503 ac[ucode_ac].fifos_mask = BIT(txf); in iwl_mvm_get_mac_type()
481 u8 txf = iwl_mvm_mac_ac_to_tx_fifo(mvm, i); iwl_mvm_set_fw_qos_params() local
/freebsd/sys/opencrypto/
H A Dcryptosoft.c1271 const struct enc_xform *txf; in swcr_setup_cipher() local
1275 txf = crypto_cipher(csp); in swcr_setup_cipher()
1277 if (txf->ctxsize != 0) { in swcr_setup_cipher()
1278 swe->sw_ctx = malloc(txf->ctxsize, M_CRYPTO_DATA, in swcr_setup_cipher()
1283 error = txf->setkey(swe->sw_ctx, in swcr_setup_cipher()
1288 swe->sw_exf = txf; in swcr_setup_cipher()
1456 const struct enc_xform *txf; in swcr_cipher_supported() local
1458 txf = crypto_cipher(csp); in swcr_cipher_supported()
1459 if (txf == NULL) in swcr_cipher_supported()
1462 txf->ivsize != csp->csp_ivlen) in swcr_cipher_supported()