Lines Matching defs:ofs
110 } ofs;
935 * Expects that provided *ofs* + *len* not to exceed mbuf's *pkt_len*.
938 * @param ofs
952 rte_crypto_mbuf_to_vec(const struct rte_mbuf *mb, uint32_t ofs, uint32_t len,
961 RTE_ASSERT(mb->data_len > ofs);
966 vec[0].base = rte_pktmbuf_mtod_offset(mb, void *, ofs);
967 vec[0].iova = rte_pktmbuf_iova_offset(mb, ofs);
968 vec[0].tot_len = mb->buf_len - rte_pktmbuf_headroom(mb) - ofs;
971 seglen = mb->data_len - ofs;
984 vec[i].tot_len = mb->buf_len - rte_pktmbuf_headroom(mb) - ofs;