Lines Matching +full:- +full:a

1 /* ----------------------------------------------------------------------
4 * Description: Sum of the squares of the elements of a floating-point vector
9 * Target Processor: Cortex-M and Cortex-A cores
10 * -------------------------------------------------------------------- */
12 * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved.
14 * SPDX-License-Identifier: Apache-2.0
18 * You may obtain a copy of the License at
20 * www.apache.org/licenses/LICENSE-2.0
42 …0] * pSrc[0] + pSrc[1] * pSrc[1] + pSrc[2] * pSrc[2] + ... + pSrc[blockSize-1] * pSrc[blockSize-1];
48 something which is more an energy than a power.
58 @brief Sum of the squares of the elements of a floating-point vector.
78 /* Compute 4 outputs at a time */ in arm_power_f32()
88 blkCnt --; in arm_power_f32()
99 /* C = A[0] * A[0] + A[1] * A[1] + ... + A[blockSize-1] * A[blockSize-1] */ in arm_power_f32()
101 /* Compute Power and store result in a temporary variable, sum. */ in arm_power_f32()
106 blkCnt--; in arm_power_f32()
128 /* Compute 4 outputs at a time. in arm_power_f32()
129 ** a second loop below computes the remaining 1 to 3 samples. */ in arm_power_f32()
132 /* C = A[0] * A[0] + A[1] * A[1] + A[2] * A[2] + ... + A[blockSize-1] * A[blockSize-1] */ in arm_power_f32()
133 /* Compute Power and then store the result in a temporary variable, sum. */ in arm_power_f32()
139 blkCnt--; in arm_power_f32()
144 /* If the blockSize is not a multiple of 4, compute any remaining output samples here. in arm_power_f32()
150 /* C = A[0] * A[0] + A[1] * A[1] + A[2] * A[2] + ... + A[blockSize-1] * A[blockSize-1] */ in arm_power_f32()
151 /* compute power and then store the result in a temporary variable, sum. */ in arm_power_f32()
156 blkCnt--; in arm_power_f32()
174 /* Loop unrolling: Compute 4 outputs at a time */ in arm_power_f32()
179 /* C = A[0] * A[0] + A[1] * A[1] + ... + A[blockSize-1] * A[blockSize-1] */ in arm_power_f32()
181 /* Compute Power and store result in a temporary variable, sum. */ in arm_power_f32()
195 blkCnt--; in arm_power_f32()
210 /* C = A[0] * A[0] + A[1] * A[1] + ... + A[blockSize-1] * A[blockSize-1] */ in arm_power_f32()
212 /* Compute Power and store result in a temporary variable, sum. */ in arm_power_f32()
217 blkCnt--; in arm_power_f32()