Home
last modified time | relevance | path

Searched refs:rhs_real (Results 1 – 1 of 1) sorted by relevance

/AliOS-Things-master/components/py_engine/engine/py/
A Dobjcomplex.c180 mp_float_t rhs_real, rhs_imag; in mp_obj_complex_binary_op() local
188 lhs_real += rhs_real; in mp_obj_complex_binary_op()
193 lhs_real -= rhs_real; in mp_obj_complex_binary_op()
212 if (rhs_real == 0) { in mp_obj_complex_binary_op()
215 lhs_real /= rhs_real; in mp_obj_complex_binary_op()
216 lhs_imag /= rhs_real; in mp_obj_complex_binary_op()
217 } else if (rhs_real == 0) { in mp_obj_complex_binary_op()
222 mp_float_t rhs_len_sq = rhs_real * rhs_real + rhs_imag * rhs_imag; in mp_obj_complex_binary_op()
223 rhs_real /= rhs_len_sq; in mp_obj_complex_binary_op()
238 if (rhs_imag == 0 && rhs_real >= 0) { in mp_obj_complex_binary_op()
[all …]

Completed in 3 milliseconds