Lines Matching full:intermediate
1424 * @param[in] pState points to the array for storing intermediate results
1440 * @param[in] pState points to the array for storing intermediate results
4700 …* The accumulator has a 2.62 format and maintains full precision of the intermediate multiplicatio…
4747 * The 2.30 intermediate results are accumulated in a 64-bit accumulator in 34.30 format.
4748 …isk of internal overflow with this approach and the full precision of intermediate multiplications…
4887 …* The accumulator maintains 1.31 format by truncating lower 31 bits of the intermediate multiplica…
4896 …q31_t product1, product2; /* Temporary variables used to store intermediate res… in arm_clarke_q31()
4901 /* Intermediate product is calculated by (1/(sqrt(3)) * Ia) */ in arm_clarke_q31()
4904 /* Intermediate product is calculated by (2/sqrt(3) * Ib) */ in arm_clarke_q31()
4907 /* pIbeta is calculated by adding the intermediate products */ in arm_clarke_q31()
4984 …* The accumulator maintains 1.31 format by truncating lower 31 bits of the intermediate multiplica…
4993 …q31_t product1, product2; /* Temporary variables used to store intermediate res… in arm_inv_clarke_q31()
4998 /* Intermediate product is calculated by (1/(2*sqrt(3)) * Ia) */ in arm_inv_clarke_q31()
5001 /* Intermediate product is calculated by (1/sqrt(3) * pIb) */ in arm_inv_clarke_q31()
5098 …* The accumulator maintains 1.31 format by truncating lower 31 bits of the intermediate multiplica…
5109 …q31_t product1, product2; /* Temporary variables used to store intermediate res… in arm_park_q31()
5110 …q31_t product3, product4; /* Temporary variables used to store intermediate res… in arm_park_q31()
5112 /* Intermediate product is calculated by (Ialpha * cosVal) */ in arm_park_q31()
5115 /* Intermediate product is calculated by (Ibeta * sinVal) */ in arm_park_q31()
5119 /* Intermediate product is calculated by (Ialpha * sinVal) */ in arm_park_q31()
5122 /* Intermediate product is calculated by (Ibeta * cosVal) */ in arm_park_q31()
5125 /* Calculate pId by adding the two intermediate products 1 and 2 */ in arm_park_q31()
5128 /* Calculate pIq by subtracting the two intermediate products 3 from 4 */ in arm_park_q31()
5211 …* The accumulator maintains 1.31 format by truncating lower 31 bits of the intermediate multiplica…
5222 …q31_t product1, product2; /* Temporary variables used to store intermediate res… in arm_inv_park_q31()
5223 …q31_t product3, product4; /* Temporary variables used to store intermediate res… in arm_inv_park_q31()
5225 /* Intermediate product is calculated by (Id * cosVal) */ in arm_inv_park_q31()
5228 /* Intermediate product is calculated by (Iq * sinVal) */ in arm_inv_park_q31()
5232 /* Intermediate product is calculated by (Id * sinVal) */ in arm_inv_park_q31()
5235 /* Intermediate product is calculated by (Iq * cosVal) */ in arm_inv_park_q31()
5238 /* Calculate pIalpha by using the two intermediate products 1 and 2 */ in arm_inv_park_q31()
5241 /* Calculate pIbeta by using the two intermediate products 3 and 4 */ in arm_inv_park_q31()
6666 /* Calculation of intermediate values */ in arm_bilinear_interp_f32()