Home
last modified time | relevance | path

Searched refs:mbuf_dst (Results 1 – 5 of 5) sorted by relevance

/f-stack/dpdk/drivers/compress/zlib/
H A Dzlib_pmd.c23 struct rte_mbuf *mbuf_dst = op->m_dst; in process_zlib_deflate() local
47 strm->next_out = rte_pktmbuf_mtod_offset(mbuf_dst, uint8_t *, in process_zlib_deflate()
50 strm->avail_out = rte_pktmbuf_data_len(mbuf_dst) - op->dst.offset; in process_zlib_deflate()
78 COMPUTE_BUF(mbuf_dst, strm->next_out, strm->avail_out)); in process_zlib_deflate()
113 struct rte_mbuf *mbuf_dst = op->m_dst; in process_zlib_inflate() local
125 strm->next_out = rte_pktmbuf_mtod_offset(mbuf_dst, uint8_t *, in process_zlib_inflate()
128 strm->avail_out = rte_pktmbuf_data_len(mbuf_dst) - op->dst.offset; in process_zlib_inflate()
165 COMPUTE_BUF(mbuf_dst, strm->next_out, strm->avail_out)); in process_zlib_inflate()
/f-stack/dpdk/drivers/crypto/bcmfs/
H A Dbcmfs_sym.c23 struct rte_mbuf *mbuf_dst, in process_crypto_cipher_op() argument
40 (mbuf_dst, in process_crypto_cipher_op()
45 fsattr_pa(&dst) = rte_pktmbuf_iova(mbuf_dst); in process_crypto_cipher_op()
125 struct rte_mbuf *mbuf_dst, in process_crypto_combined_op() argument
143 (mbuf_dst, in process_crypto_combined_op()
149 fsattr_pa(&dst) = rte_pktmbuf_iova_offset(mbuf_dst, in process_crypto_combined_op()
202 struct rte_mbuf *mbuf_dst, in process_crypto_aead_op() argument
218 fsattr_va(&dst) = rte_pktmbuf_mtod_offset(mbuf_dst, in process_crypto_aead_op()
224 fsattr_pa(&dst) = rte_pktmbuf_iova_offset(mbuf_dst, in process_crypto_aead_op()
/f-stack/dpdk/drivers/crypto/armv8/
H A Drte_armv8_pmd.c572 struct rte_mbuf *mbuf_src, struct rte_mbuf *mbuf_dst) in process_armv8_chained_op() argument
587 cdst = rte_pktmbuf_mtod_offset(mbuf_dst, uint8_t *, in process_armv8_chained_op()
592 m_asrc = m_adst = mbuf_dst; in process_armv8_chained_op()
596 m_adst = mbuf_dst; in process_armv8_chained_op()
/f-stack/dpdk/drivers/crypto/openssl/
H A Drte_openssl_pmd.c1324 struct rte_mbuf *mbuf_src, struct rte_mbuf *mbuf_dst) in process_openssl_combined_op() argument
1337 if (!rte_pktmbuf_is_contiguous(mbuf_dst)) { in process_openssl_combined_op()
1352 tag = rte_pktmbuf_mtod_offset(mbuf_dst, uint8_t *, in process_openssl_combined_op()
1356 dst = rte_pktmbuf_mtod_offset(mbuf_dst, uint8_t *, in process_openssl_combined_op()
1363 tag = rte_pktmbuf_mtod_offset(mbuf_dst, uint8_t *, in process_openssl_combined_op()
1417 uint8_t inplace = (mbuf_src == mbuf_dst) ? 1 : 0; in process_openssl_cipher_op()
1425 if (!rte_pktmbuf_is_contiguous(mbuf_dst) && in process_openssl_cipher_op()
1432 dst = rte_pktmbuf_mtod_offset(mbuf_dst, uint8_t *, in process_openssl_cipher_op()
1464 struct rte_mbuf *mbuf_dst) in process_openssl_docsis_bpi_op() argument
1473 dst = rte_pktmbuf_mtod_offset(mbuf_dst, uint8_t *, in process_openssl_docsis_bpi_op()
[all …]
/f-stack/dpdk/drivers/crypto/ccp/
H A Dccp_crypto.c1458 struct rte_mbuf *mbuf_src, *mbuf_dst; in cpu_crypto_auth() local
1466 mbuf_dst = op->sym->m_dst ? op->sym->m_dst : op->sym->m_src; in cpu_crypto_auth()
1476 dst = rte_pktmbuf_mtod_offset(mbuf_dst, uint8_t *, in cpu_crypto_auth()