Lines Matching refs:places
85 void m_apm_sin(M_APM r, int places, M_APM a) in m_apm_sin() argument
90 M_limit_angle_to_pi(tmp3, (places + 6), a); in m_apm_sin()
91 M_5x_sin(r, places, tmp3); in m_apm_sin()
95 void m_apm_cos(M_APM r, int places, M_APM a) in m_apm_cos() argument
100 M_limit_angle_to_pi(tmp3, (places + 6), a); in m_apm_cos()
101 M_4x_cos(r, places, tmp3); in m_apm_cos()
105 void m_apm_sin_cos(M_APM sinv, M_APM cosv, int places, M_APM aa) in m_apm_sin_cos() argument
113 M_limit_angle_to_pi(tmp5, (places + 6), aa); in m_apm_sin_cos()
114 M_4x_cos(tmp7, (places + 6), tmp5); in m_apm_sin_cos()
124 M_cos_to_sin(tmp6, (places + 6), tmp7); in m_apm_sin_cos()
128 m_apm_round(sinv, places, tmp6); in m_apm_sin_cos()
129 m_apm_round(cosv, places, tmp7); in m_apm_sin_cos()
133 void m_apm_tan(M_APM r, int places, M_APM a) in m_apm_tan() argument
141 m_apm_sin_cos(tmps, tmpc, (places + 4), a); in m_apm_tan()
145 m_apm_divide(tmp0, (places + 4), tmps, tmpc); in m_apm_tan()
146 m_apm_round(r, places, tmp0); in m_apm_tan()
150 void M_limit_angle_to_pi(M_APM rr, int places, M_APM aa) in M_limit_angle_to_pi() argument
154 M_check_PI_places(places); in M_limit_angle_to_pi()
168 m_apm_round(rr, places, tmp9); in M_limit_angle_to_pi()
184 m_apm_round(rr, places, tmp9); in M_limit_angle_to_pi()