Home
last modified time | relevance | path

Searched refs:msrc (Results 1 – 4 of 4) sorted by relevance

/dpdk/drivers/crypto/bcmfs/
H A Dbcmfs_sym.c262 struct rte_mbuf *msrc, *mdst; in bcmfs_process_sym_crypto_op() local
265 msrc = op->sym->m_src; in bcmfs_process_sym_crypto_op()
271 rc = process_crypto_cipher_op(op, msrc, mdst, sess, req); in bcmfs_process_sym_crypto_op()
274 rc = process_crypto_auth_op(op, msrc, sess, req); in bcmfs_process_sym_crypto_op()
278 rc = process_crypto_combined_op(op, msrc, mdst, sess, req); in bcmfs_process_sym_crypto_op()
281 rc = process_crypto_aead_op(op, msrc, mdst, sess, req); in bcmfs_process_sym_crypto_op()
/dpdk/lib/mbuf/
H A Drte_mbuf.h1087 rte_mbuf_dynfield_copy(struct rte_mbuf *mdst, const struct rte_mbuf *msrc) in rte_mbuf_dynfield_copy() argument
1089 memcpy(&mdst->dynfield1, msrc->dynfield1, sizeof(mdst->dynfield1)); in rte_mbuf_dynfield_copy()
1094 __rte_pktmbuf_copy_hdr(struct rte_mbuf *mdst, const struct rte_mbuf *msrc) in __rte_pktmbuf_copy_hdr() argument
1096 mdst->port = msrc->port; in __rte_pktmbuf_copy_hdr()
1097 mdst->vlan_tci = msrc->vlan_tci; in __rte_pktmbuf_copy_hdr()
1098 mdst->vlan_tci_outer = msrc->vlan_tci_outer; in __rte_pktmbuf_copy_hdr()
1099 mdst->tx_offload = msrc->tx_offload; in __rte_pktmbuf_copy_hdr()
1100 mdst->hash = msrc->hash; in __rte_pktmbuf_copy_hdr()
1101 mdst->packet_type = msrc->packet_type; in __rte_pktmbuf_copy_hdr()
1102 rte_mbuf_dynfield_copy(mdst, msrc); in __rte_pktmbuf_copy_hdr()
/dpdk/drivers/crypto/openssl/
H A Drte_openssl_pmd.c2063 struct rte_mbuf *msrc, *mdst; in process_op() local
2066 msrc = op->sym->m_src; in process_op()
2073 process_openssl_cipher_op(op, sess, msrc, mdst); in process_op()
2076 process_openssl_auth_op(qp, op, sess, msrc, mdst); in process_op()
2079 process_openssl_cipher_op(op, sess, msrc, mdst); in process_op()
2081 if (msrc != mdst) in process_op()
2082 copy_plaintext(msrc, mdst, op); in process_op()
2086 process_openssl_auth_op(qp, op, sess, msrc, mdst); in process_op()
2087 process_openssl_cipher_op(op, sess, msrc, mdst); in process_op()
2090 process_openssl_combined_op(op, sess, msrc, mdst); in process_op()
[all …]
/dpdk/drivers/crypto/armv8/
H A Drte_armv8_pmd.c657 struct rte_mbuf *msrc, *mdst; in process_op() local
659 msrc = op->sym->m_src; in process_op()
667 process_armv8_chained_op(qp, op, sess, msrc, mdst); in process_op()