Lines Matching full:vector
26 * @brief Floating-point vector multiplication.
27 * @param[in] src_a points to the first input vector
28 * @param[in] src_b points to the second input vector
29 * @param[out] dst points to the output vector
30 * @param[in] block_size number of samples in each vector
37 * @brief Floating-point vector addition.
38 * @param[in] src_a points to the first input vector
39 * @param[in] src_b points to the second input vector
40 * @param[out] dst points to the output vector
41 * @param[in] block_size number of samples in each vector
48 * @brief Floating-point vector subtraction.
49 * @param[in] src_a points to the first input vector
50 * @param[in] src_b points to the second input vector
51 * @param[out] dst points to the output vector
52 * @param[in] block_size number of samples in each vector
59 * @brief Multiplies a floating-point vector by a scalar.
60 * @param[in] src points to the input vector
62 * @param[out] dst points to the output vector
63 * @param[in] block_size number of samples in the vector
70 * @brief Floating-point vector absolute value.
73 * @param[in] block_size number of samples in each vector
80 * @param[in] src_a points to the first input vector
81 * @param[in] src_b points to the second input vector
82 * @param[in] block_size number of samples in each vector
90 * @brief Adds a constant offset to a floating-point vector.
91 * @param[in] src points to the input vector
93 * @param[out] dst points to the output vector
94 * @param[in] block_size number of samples in the vector
101 * @brief Negates the elements of a floating-point vector.
102 * @param[in] src points to the input vector
103 * @param[out] dst points to the output vector
104 * @param[in] block_size number of samples in the vector