Lines Matching refs:FP_STATUS
26 #define FP_STATUS (env->fp_status) macro
116 fr = float32_add(fa, fb, &FP_STATUS); in helper_addf()
126 fr = float32_sub(fa, fb, &FP_STATUS); in helper_subf()
136 fr = float32_mul(fa, fb, &FP_STATUS); in helper_mulf()
146 fr = float32_div(fa, fb, &FP_STATUS); in helper_divf()
155 fr = float32_sqrt(ft, &FP_STATUS); in helper_sqrtf()
243 fr = float64_add(fa, fb, &FP_STATUS); in helper_addg()
253 fr = float64_sub(fa, fb, &FP_STATUS); in helper_subg()
263 fr = float64_mul(fa, fb, &FP_STATUS); in helper_mulg()
273 fr = float64_div(fa, fb, &FP_STATUS); in helper_divg()
282 fr = float64_sqrt(fa, &FP_STATUS); in helper_sqrtg()
293 if (float64_eq_quiet(fa, fb, &FP_STATUS)) { in helper_cmpgeq()
307 if (float64_le(fa, fb, &FP_STATUS)) { in helper_cmpgle()
321 if (float64_lt(fa, fb, &FP_STATUS)) { in helper_cmpglt()
330 float32 fr = int64_to_float32(a, &FP_STATUS); in helper_cvtqf()
340 fr = float64_to_float32(fa, &FP_STATUS); in helper_cvtgf()
347 return float64_to_int64_round_to_zero(fa, &FP_STATUS); in helper_cvtgq()
353 fr = int64_to_float64(a, &FP_STATUS); in helper_cvtqg()