Lines Matching refs:dst_buf
529 struct rte_mbuf *dst_buf = op->m_dst; in compress_zlib() local
532 uint8_t *dst_data = rte_pktmbuf_mtod_offset(dst_buf, in compress_zlib()
535 if (remaining_data < dst_buf->data_len) { in compress_zlib()
539 memcpy(dst_data, src_data, dst_buf->data_len); in compress_zlib()
540 remaining_data -= dst_buf->data_len; in compress_zlib()
541 src_data += dst_buf->data_len; in compress_zlib()
542 dst_buf = dst_buf->next; in compress_zlib()
653 struct rte_mbuf *dst_buf = op->m_dst; in decompress_zlib() local
656 uint8_t *dst_data = rte_pktmbuf_mtod(dst_buf, in decompress_zlib()
659 if (remaining_data < dst_buf->data_len) { in decompress_zlib()
663 memcpy(dst_data, src_data, dst_buf->data_len); in decompress_zlib()
664 remaining_data -= dst_buf->data_len; in decompress_zlib()
665 src_data += dst_buf->data_len; in decompress_zlib()
666 dst_buf = dst_buf->next; in decompress_zlib()