Home
last modified time | relevance | path

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

/dpdk/drivers/crypto/cnxk/
H A Dcnxk_cryptodev_ops.c188 int mb_pool_sz, mlen = 8; in cnxk_cpt_metabuf_mempool_create() local
193 mlen = cnxk_cpt_get_mlen(); in cnxk_cpt_metabuf_mempool_create()
199 mlen = RTE_MAX(mlen, cnxk_cpt_asym_get_mlen()); in cnxk_cpt_metabuf_mempool_create()
217 pool = rte_mempool_create(mempool_name, mb_pool_sz, mlen, cache_sz, 0, in cnxk_cpt_metabuf_mempool_create()
228 meta_info->mlen = mlen; in cnxk_cpt_metabuf_mempool_create()
241 meta_info->mlen = 0; in cnxk_cpt_metabuf_mempool_destroy()
H A Dcnxk_cryptodev_ops.h30 int mlen; member
H A Dcnxk_se.h2305 mdata = alloc_op_meta(&fc_params.meta_buf, m_info->mlen, in fill_fc_params()
2414 mdata = alloc_op_meta(&params.meta_buf, m_info->mlen, m_info->pool, in fill_digest_params()
/dpdk/drivers/crypto/nitrox/
H A Dnitrox_sym_reqmgr.c275 int mlen; in create_sglist_from_mbuf() local
286 mlen = rte_pktmbuf_data_len(m) - off; in create_sglist_from_mbuf()
287 if (datalen <= mlen) in create_sglist_from_mbuf()
288 mlen = datalen; in create_sglist_from_mbuf()
289 sglist[cnt].len = mlen; in create_sglist_from_mbuf()
292 sgtbl->total_bytes += mlen; in create_sglist_from_mbuf()
294 datalen -= mlen; in create_sglist_from_mbuf()
296 mlen = rte_pktmbuf_data_len(m) < datalen ? in create_sglist_from_mbuf()
298 sglist[cnt].len = mlen; in create_sglist_from_mbuf()
301 sgtbl->total_bytes += mlen; in create_sglist_from_mbuf()
[all …]
/dpdk/app/test-crypto-perf/
H A Dcperf_test_vectors.h75 uint32_t mlen; member
H A Dcperf_test_vectors.c659 t_vec->modex.mlen = options->modex_data->modulus.len; in cperf_test_vector_get_dummy()