Home
last modified time | relevance | path

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

/freebsd-14.2/sys/dev/xen/netback/
H A Dnetback_unit_tests.c185 netif_tx_front_ring_t txf; member
415 xnb_unit_pvt.txf.req_prod_pvt++; in xnb_ring2pkt_1req()
446 xnb_unit_pvt.txf.req_prod_pvt++; in xnb_ring2pkt_2req()
452 xnb_unit_pvt.txf.req_prod_pvt++; in xnb_ring2pkt_2req()
483 xnb_unit_pvt.txf.req_prod_pvt++; in xnb_ring2pkt_3req()
489 xnb_unit_pvt.txf.req_prod_pvt++; in xnb_ring2pkt_3req()
495 xnb_unit_pvt.txf.req_prod_pvt++; in xnb_ring2pkt_3req()
528 xnb_unit_pvt.txf.req_prod_pvt++; in xnb_ring2pkt_extra()
537 xnb_unit_pvt.txf.req_prod_pvt++; in xnb_ring2pkt_extra()
543 xnb_unit_pvt.txf.req_prod_pvt++; in xnb_ring2pkt_extra()
[all …]
/freebsd-14.2/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-14.2/sys/contrib/dev/iwlwifi/mvm/
H A Dops.c847 struct iwl_mvm_frob_txf_data *txf = data; in iwl_mvm_frob_txf_key_iter() local
866 memset(txf->buf, 0xBB, txf->buflen); in iwl_mvm_frob_txf_key_iter()
874 for (i = 0; i < txf->buflen; i++) { in iwl_mvm_frob_txf_key_iter()
875 if (txf->buf[i] != keydata[match]) { in iwl_mvm_frob_txf_key_iter()
881 memset(txf->buf + i - keylen, 0xAA, keylen); in iwl_mvm_frob_txf_key_iter()
889 if (txf->buf[i] != keydata[match]) in iwl_mvm_frob_txf_key_iter()
893 memset(txf->buf, 0xAA, i + 1); in iwl_mvm_frob_txf_key_iter()
894 memset(txf->buf + txf->buflen - matchend, 0xAA, in iwl_mvm_frob_txf_key_iter()
903 struct iwl_mvm_frob_txf_data txf = { in iwl_mvm_frob_txf() local
914 ieee80211_iter_keys_rcu(mvm->hw, NULL, iwl_mvm_frob_txf_key_iter, &txf); in iwl_mvm_frob_txf()
H A Dtx.c820 unsigned int txf; in iwl_mvm_max_amsdu_size() local
828 txf = iwl_mvm_mac_ac_to_tx_fifo(mvm, ac); in iwl_mvm_max_amsdu_size()
860 mvm->fwrt.smem_cfg.lmac[lmac].txfifo_size[txf] - 256); in iwl_mvm_max_amsdu_size()
867 mvm->fwrt.smem_cfg.lmac[lmac].txfifo_size[txf] - 256); in iwl_mvm_max_amsdu_size()
H A Dmac-ctxt.c481 u8 txf = iwl_mvm_mac_ac_to_tx_fifo(mvm, i); in iwl_mvm_set_fw_qos_params() local
491 ac[ucode_ac].fifos_mask = BIT(txf); in iwl_mvm_set_fw_qos_params()
/freebsd-14.2/sys/opencrypto/
H A Dcryptosoft.c1272 const struct enc_xform *txf; in swcr_setup_cipher() local
1276 txf = crypto_cipher(csp); in swcr_setup_cipher()
1278 if (txf->ctxsize != 0) { in swcr_setup_cipher()
1279 swe->sw_ctx = malloc(txf->ctxsize, M_CRYPTO_DATA, in swcr_setup_cipher()
1284 error = txf->setkey(swe->sw_ctx, in swcr_setup_cipher()
1289 swe->sw_exf = txf; in swcr_setup_cipher()
1457 const struct enc_xform *txf; in swcr_cipher_supported() local
1459 txf = crypto_cipher(csp); in swcr_cipher_supported()
1460 if (txf == NULL) in swcr_cipher_supported()
1463 txf->ivsize != csp->csp_ivlen) in swcr_cipher_supported()