Lines Matching defs:nb_ops
274 * @param nb_ops Number of crypto operations to allocate
282 struct rte_crypto_op **ops, uint16_t nb_ops)
291 if (rte_mempool_get_bulk(mempool, (void **)ops, nb_ops) == 0)
292 return nb_ops;
329 * @param nb_ops Number of crypto operations to allocate
332 * - nb_ops if the number of operations requested were allocated.
340 struct rte_crypto_op **ops, uint16_t nb_ops)
344 if (unlikely(__rte_crypto_op_raw_bulk_alloc(mempool, type, ops, nb_ops)
345 != nb_ops))
348 for (i = 0; i < nb_ops; i++)
351 return nb_ops;