Lines Matching refs:m_dst
494 if (op->m_dst->nb_segs > 1) { in compress_zlib()
497 rte_pktmbuf_pkt_len(op->m_dst), 0); in compress_zlib()
504 stream.avail_out = op->m_dst->pkt_len; in compress_zlib()
508 stream.avail_out = op->m_dst->data_len; in compress_zlib()
509 stream.next_out = rte_pktmbuf_mtod_offset(op->m_dst, uint8_t *, in compress_zlib()
526 if (op->m_dst->nb_segs > 1) { in compress_zlib()
529 struct rte_mbuf *dst_buf = op->m_dst; in compress_zlib()
549 rte_pktmbuf_adj(op->m_dst, ZLIB_HEADER_SIZE); in compress_zlib()
550 rte_pktmbuf_trim(op->m_dst, ZLIB_TRAILER_SIZE); in compress_zlib()
554 rte_pktmbuf_adj(op->m_dst, GZIP_HEADER_SIZE); in compress_zlib()
555 rte_pktmbuf_trim(op->m_dst, GZIP_TRAILER_SIZE); in compress_zlib()
613 rte_pktmbuf_pkt_len(op->m_dst), 0); in decompress_zlib()
628 stream.avail_out = rte_pktmbuf_pkt_len(op->m_dst); in decompress_zlib()
634 stream.avail_out = op->m_dst->data_len; in decompress_zlib()
635 stream.next_out = rte_pktmbuf_mtod(op->m_dst, uint8_t *); in decompress_zlib()
653 struct rte_mbuf *dst_buf = op->m_dst; in decompress_zlib()
1236 ops[i]->m_dst = comp_bufs[i]; in test_deflate_comp_run()
1348 ops[i]->m_dst, in test_deflate_comp_run()
1567 ops[i]->m_dst = uncomp_bufs[i]; in test_deflate_decomp_run()
1802 ops_processed[i]->m_dst, in test_deflate_decomp_finalize()
1942 buf2 = rte_pktmbuf_read(ops_processed[i]->m_dst, 0, in test_results_validation()