Lines Matching defs:ops
436 struct rte_bbdev_enc_op **ops,
442 struct rte_bbdev_dec_op **ops,
448 struct rte_bbdev_fft_op **ops,
454 struct rte_bbdev_mldts_op **ops,
460 struct rte_bbdev_enc_op **ops, uint16_t num);
465 struct rte_bbdev_dec_op **ops, uint16_t num);
470 struct rte_bbdev_fft_op **ops, uint16_t num);
475 struct rte_bbdev_mldts_op **ops, uint16_t num);
556 * @param ops
564 * entries in the @p ops array).
568 struct rte_bbdev_enc_op **ops, uint16_t num_ops)
572 return dev->enqueue_enc_ops(q_data, ops, num_ops);
586 * @param ops
594 * entries in the @p ops array).
598 struct rte_bbdev_dec_op **ops, uint16_t num_ops)
602 return dev->enqueue_dec_ops(q_data, ops, num_ops);
616 * @param ops
624 * entries in the @p ops array).
628 struct rte_bbdev_enc_op **ops, uint16_t num_ops)
632 return dev->enqueue_ldpc_enc_ops(q_data, ops, num_ops);
646 * @param ops
654 * entries in the @p ops array).
658 struct rte_bbdev_dec_op **ops, uint16_t num_ops)
662 return dev->enqueue_ldpc_dec_ops(q_data, ops, num_ops);
676 * @param ops
684 * (This is the number of processed entries in the @p ops array.)
688 struct rte_bbdev_fft_op **ops, uint16_t num_ops)
692 return dev->enqueue_fft_ops(q_data, ops, num_ops);
706 * @param ops
714 * entries in the @p ops array).
718 struct rte_bbdev_mldts_op **ops, uint16_t num_ops)
722 return dev->enqueue_mldts_ops(q_data, ops, num_ops);
736 * @param ops
739 * a pointer to a table of void * pointers (ops) that will be filled.
745 * (This is the number of entries copied into the @p ops array.)
749 struct rte_bbdev_enc_op **ops, uint16_t num_ops)
753 return dev->dequeue_enc_ops(q_data, ops, num_ops);
767 * @param ops
770 * ie. A pointer to a table of void * pointers (ops) that will be filled.
776 * copied into the @p ops array).
781 struct rte_bbdev_dec_op **ops, uint16_t num_ops)
785 return dev->dequeue_dec_ops(q_data, ops, num_ops);
800 * @param ops
808 * copied into the @p ops array).
812 struct rte_bbdev_enc_op **ops, uint16_t num_ops)
816 return dev->dequeue_ldpc_enc_ops(q_data, ops, num_ops);
830 * @param ops
838 * copied into the @p ops array).
842 struct rte_bbdev_dec_op **ops, uint16_t num_ops)
846 return dev->dequeue_ldpc_dec_ops(q_data, ops, num_ops);
860 * @param ops
868 * copied into the @p ops array).
872 struct rte_bbdev_fft_op **ops, uint16_t num_ops)
876 return dev->dequeue_fft_ops(q_data, ops, num_ops);
890 * @param ops
898 * copied into the @p ops array).
902 struct rte_bbdev_mldts_op **ops, uint16_t num_ops)
906 return dev->dequeue_mldts_ops(q_data, ops, num_ops);