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
41 @brief Sum of the squares of the elements of a floating-point vector.
63 /* C = A[0] * A[0] + A[1] * A[1] + ... + A[blockSize-1] * A[blockSize-1] */ in arm_power_f64()
65 /* Compute Power and store result in a temporary variable, sum. */ in arm_power_f64()
73 blkCnt--; in arm_power_f64()
83 /* C = A[0] * A[0] + A[1] * A[1] + ... + A[blockSize-1] * A[blockSize-1] */ in arm_power_f64()
85 /* Compute Power and store result in a temporary variable, sum. */ in arm_power_f64()
90 blkCnt--; in arm_power_f64()
111 /* C = A[0] * A[0] + A[1] * A[1] + ... + A[blockSize-1] * A[blockSize-1] */ in arm_power_f64()
113 /* Compute Power and store result in a temporary variable, sum. */ in arm_power_f64()
118 blkCnt--; in arm_power_f64()