Lines Matching refs:fp_ops
1856 const struct rte_crypto_fp_ops *fp_ops; in rte_cryptodev_dequeue_burst() local
1861 fp_ops = &rte_crypto_fp_ops[dev_id]; in rte_cryptodev_dequeue_burst()
1862 qp = fp_ops->qp.data[qp_id]; in rte_cryptodev_dequeue_burst()
1864 nb_ops = fp_ops->dequeue_burst(qp, ops, nb_ops); in rte_cryptodev_dequeue_burst()
1867 if (unlikely(fp_ops->qp.deq_cb != NULL)) { in rte_cryptodev_dequeue_burst()
1877 list = &fp_ops->qp.deq_cb[qp_id]; in rte_cryptodev_dequeue_burst()
1928 const struct rte_crypto_fp_ops *fp_ops; in rte_cryptodev_enqueue_burst() local
1931 fp_ops = &rte_crypto_fp_ops[dev_id]; in rte_cryptodev_enqueue_burst()
1932 qp = fp_ops->qp.data[qp_id]; in rte_cryptodev_enqueue_burst()
1934 if (unlikely(fp_ops->qp.enq_cb != NULL)) { in rte_cryptodev_enqueue_burst()
1944 list = &fp_ops->qp.enq_cb[qp_id]; in rte_cryptodev_enqueue_burst()
1959 return fp_ops->enqueue_burst(qp, ops, nb_ops); in rte_cryptodev_enqueue_burst()