Home
last modified time | relevance | path

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

/f-stack/dpdk/drivers/raw/ioat/
H A Dioat_rawdev_test.c45 char *src_data, *dst_data; in test_enqueue_copies() local
54 dst_data = rte_pktmbuf_mtod(dst, char *); in test_enqueue_copies()
83 if (dst_data[i] != src_data[i]) { in test_enqueue_copies()
130 char *src_data, *dst_data; in test_enqueue_copies() local
142 dst_data = rte_pktmbuf_mtod(dsts[i], char *); in test_enqueue_copies()
144 if (src_data[j] != dst_data[j]) { in test_enqueue_copies()
163 char *dst_data = rte_pktmbuf_mtod(dst, char *); in test_enqueue_fill() local
170 memset(dst_data, 0, length[i]); in test_enqueue_fill()
191 if (dst_data[j] != pat_byte) { in test_enqueue_fill()
193 length[i], dst_data[j], in test_enqueue_fill()
/f-stack/dpdk/drivers/compress/qat/
H A Dqat_comp.c382 parent_cookie->dst_data = op->m_dst; in qat_comp_build_multiple_requests()
485 struct rte_mbuf *sgl_buf = pc->dst_data; in qat_comp_response_data_copy()
500 pc->dst_data = sgl_buf->next; in qat_comp_response_data_copy()
533 pc->dst_data = sgl_buf->next; in qat_comp_response_data_copy()
536 pc->dst_data = sgl_buf; in qat_comp_response_data_copy()
717 qat_comp_mbuf_skip(&cookie->dst_data, in qat_comp_process_response()
H A Dqat_comp.h79 struct rte_mbuf *dst_data; member
/f-stack/dpdk/doc/guides/rawdevs/
H A Dioat.rst264 char *src_data, *dst_data;
276 dst_data = rte_pktmbuf_mtod(dsts[i], char *);
278 if (src_data[j] != dst_data[j]) {
/f-stack/dpdk/app/test/
H A Dtest_compressdev.c532 uint8_t *dst_data = rte_pktmbuf_mtod_offset(dst_buf, in compress_zlib() local
536 memcpy(dst_data, src_data, remaining_data); in compress_zlib()
539 memcpy(dst_data, src_data, dst_buf->data_len); in compress_zlib()
656 uint8_t *dst_data = rte_pktmbuf_mtod(dst_buf, in decompress_zlib() local
660 memcpy(dst_data, src_data, remaining_data); in decompress_zlib()
663 memcpy(dst_data, src_data, dst_buf->data_len); in decompress_zlib()
/f-stack/dpdk/lib/librte_vhost/
H A Dvhost_crypto.c569 copy_data(void *dst_data, struct vhost_crypto_data_req *vc_req, in copy_data() argument
577 uint8_t *data = dst_data; in copy_data()