Lines Matching refs:tmpV
63 M_APM tmpM, tmpN, tmpT, tmpU, tmpV; in m_apm_gcd() local
93 tmpV = M_get_stack_var(); in m_apm_gcd()
96 m_apm_absolute_value(tmpV, v); in m_apm_gcd()
109 if (m_apm_is_odd(tmpV)) in m_apm_gcd()
115 m_apm_multiply(tmpN, MM_0_5, tmpV); in m_apm_gcd()
116 m_apm_copy(tmpV, tmpN); in m_apm_gcd()
125 m_apm_negate(tmpT, tmpV); in m_apm_gcd()
150 m_apm_negate(tmpV, tmpT); in m_apm_gcd()
154 m_apm_subtract(tmpT, tmpU, tmpV); in m_apm_gcd()
258 M_APM tmpD, tmpN, tmpU, tmpV; in m_apm_gcd_traditional() local
263 tmpV = M_get_stack_var(); in m_apm_gcd_traditional()
266 m_apm_absolute_value(tmpV, v); in m_apm_gcd_traditional()
270 if (tmpV->m_apm_sign == 0) in m_apm_gcd_traditional()
273 m_apm_integer_div_rem(tmpD, tmpN, tmpU, tmpV); in m_apm_gcd_traditional()
274 m_apm_copy(tmpU, tmpV); in m_apm_gcd_traditional()
275 m_apm_copy(tmpV, tmpN); in m_apm_gcd_traditional()