Lines Matching refs:temp
59 q63_t temp; in arm_sin_cos_q31() local
77 temp = Dn * ((q63_t)d1 + d2); in arm_sin_cos_q31()
78 temp = temp - ((q63_t)Df << 32); in arm_sin_cos_q31()
79 temp = (q63_t)fract * (temp >> 31); in arm_sin_cos_q31()
80 temp = temp + ((3 * (q63_t)Df << 31) - (d2 + ((q63_t)d1 << 1)) * Dn); in arm_sin_cos_q31()
81 temp = (q63_t)fract * (temp >> 31); in arm_sin_cos_q31()
82 temp = temp + (q63_t)d1 * Dn; in arm_sin_cos_q31()
83 temp = (q63_t)fract * (temp >> 31); in arm_sin_cos_q31()
86 *pCosVal = clip_q63_to_q31((temp >> 31) + (q63_t)f1); in arm_sin_cos_q31()
95 temp = Dn * ((q63_t)d1 + d2); in arm_sin_cos_q31()
96 temp = temp - ((q63_t)Df << 32); in arm_sin_cos_q31()
97 temp = (q63_t)fract * (temp >> 31); in arm_sin_cos_q31()
98 temp = temp + ((3 * (q63_t)Df << 31) - (d2 + ((q63_t)d1 << 1)) * Dn); in arm_sin_cos_q31()
99 temp = (q63_t)fract * (temp >> 31); in arm_sin_cos_q31()
100 temp = temp + (q63_t)d1 * Dn; in arm_sin_cos_q31()
101 temp = (q63_t)fract * (temp >> 31); in arm_sin_cos_q31()
104 *pSinVal = clip_q63_to_q31((temp >> 31) + (q63_t)f1); in arm_sin_cos_q31()