Lines Matching +full:in +full:-
1 /* Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved.
2 * SPDX-License-Identifier: Apache-2.0
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
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
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
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
61 * @param[in] scale scale factor to be applied
63 * @param[in] block_size number of samples in the vector
70 * @brief Floating-point vector absolute value.
71 * @param[in] src points to the input buffer
73 * @param[in] block_size number of samples in each vector
79 * @brief Dot product of floating-point vectors.
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
92 * @param[in] offset is the offset to be added
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
104 * @param[in] block_size number of samples in the vector
110 * @brief Elementwise floating-point clipping
111 * @param[in] src points to input values
113 * @param[in] low lower bound
114 * @param[in] high higher bound
115 * @param[in] num_samples number of samples to clip