Lines Matching refs:R_TFU
83 R_TFU->SCDT1 = angle; in __sinf()
86 return R_TFU->SCDT1; in __sinf()
101 R_TFU->SCDT1 = angle; in __cosf()
104 return R_TFU->SCDT0; in __cosf()
119 R_TFU->SCDT1 = angle; in __sincosf()
122 *sin = R_TFU->SCDT1; in __sincosf()
125 *cos = R_TFU->SCDT0; in __sincosf()
141 R_TFU->ATDT0 = x_cord; in __atan2f()
144 R_TFU->ATDT1 = y_cord; in __atan2f()
147 return R_TFU->ATDT1; in __atan2f()
163 R_TFU->ATDT0 = x_cord; in __hypotf()
166 R_TFU->ATDT1 = y_cord; in __hypotf()
169 return R_TFU->ATDT0 * R_TFU_HYPOT_SCALING_FACTOR; in __hypotf()
185 R_TFU->ATDT0 = x_cord; in __atan2hypotf()
188 R_TFU->ATDT1 = y_cord; in __atan2hypotf()
191 *atan2 = R_TFU->ATDT1; in __atan2hypotf()
194 *hypot = R_TFU->ATDT0 * R_TFU_HYPOT_SCALING_FACTOR; in __atan2hypotf()