Lines Matching refs:cb
1745 struct rte_cryptodev_cb *cb);
1813 struct rte_cryptodev_cb *cb);
1869 struct rte_cryptodev_cb *cb; in rte_cryptodev_dequeue_burst() local
1879 cb = __atomic_load_n(&list->next, __ATOMIC_RELAXED); in rte_cryptodev_dequeue_burst()
1881 while (cb != NULL) { in rte_cryptodev_dequeue_burst()
1882 nb_ops = cb->fn(dev_id, qp_id, ops, nb_ops, in rte_cryptodev_dequeue_burst()
1883 cb->arg); in rte_cryptodev_dequeue_burst()
1884 cb = cb->next; in rte_cryptodev_dequeue_burst()
1936 struct rte_cryptodev_cb *cb; in rte_cryptodev_enqueue_burst() local
1946 cb = __atomic_load_n(&list->next, __ATOMIC_RELAXED); in rte_cryptodev_enqueue_burst()
1948 while (cb != NULL) { in rte_cryptodev_enqueue_burst()
1949 nb_ops = cb->fn(dev_id, qp_id, ops, nb_ops, in rte_cryptodev_enqueue_burst()
1950 cb->arg); in rte_cryptodev_enqueue_burst()
1951 cb = cb->next; in rte_cryptodev_enqueue_burst()