Lines Matching defs:nb_ops
672 * @param ops The address of an array of *nb_ops* pointers
675 * @param nb_ops The number of operations to process.
683 struct rte_crypto_op **ops, uint16_t nb_ops, void *user_param);
1946 * A return value equal to *nb_ops* indicates that the queue contained
1947 * at least *nb_ops* operations, and this is likely to signify that other
1952 * *nb_ops* is returned.
1964 * large enough to store *nb_ops* pointers in it.
1965 * @param nb_ops The maximum number of operations to dequeue.
1974 struct rte_crypto_op **ops, uint16_t nb_ops)
1979 rte_cryptodev_trace_dequeue_burst(dev_id, qp_id, (void **)ops, nb_ops);
1984 nb_ops = fp_ops->dequeue_burst(qp, ops, nb_ops);
2002 nb_ops = cb->fn(dev_id, qp_id, ops, nb_ops,
2010 return nb_ops;
2020 * The *nb_ops* parameter is the number of operations to process which are
2025 * *nb_ops* means that all packets have been enqueued.
2033 * @param ops The address of an array of *nb_ops* pointers
2036 * @param nb_ops The number of operations to process.
2040 * value can be less than the value of the *nb_ops* parameter when the
2046 struct rte_crypto_op **ops, uint16_t nb_ops)
2069 nb_ops = cb->fn(dev_id, qp_id, ops, nb_ops,
2078 rte_cryptodev_trace_enqueue_burst(dev_id, qp_id, (void **)ops, nb_ops);
2079 return fp_ops->enqueue_burst(qp, ops, nb_ops);