Lines Matching refs:FP_STATUS
25 #define FP_STATUS (env->fp_status) macro
115 fr = float32_add(fa, fb, &FP_STATUS); in helper_addf()
125 fr = float32_sub(fa, fb, &FP_STATUS); in helper_subf()
135 fr = float32_mul(fa, fb, &FP_STATUS); in helper_mulf()
145 fr = float32_div(fa, fb, &FP_STATUS); in helper_divf()
154 fr = float32_sqrt(ft, &FP_STATUS); in helper_sqrtf()
242 fr = float64_add(fa, fb, &FP_STATUS); in helper_addg()
252 fr = float64_sub(fa, fb, &FP_STATUS); in helper_subg()
262 fr = float64_mul(fa, fb, &FP_STATUS); in helper_mulg()
272 fr = float64_div(fa, fb, &FP_STATUS); in helper_divg()
281 fr = float64_sqrt(fa, &FP_STATUS); in helper_sqrtg()
292 if (float64_eq_quiet(fa, fb, &FP_STATUS)) { in helper_cmpgeq()
306 if (float64_le(fa, fb, &FP_STATUS)) { in helper_cmpgle()
320 if (float64_lt(fa, fb, &FP_STATUS)) { in helper_cmpglt()
329 float32 fr = int64_to_float32(a, &FP_STATUS); in helper_cvtqf()
339 fr = float64_to_float32(fa, &FP_STATUS); in helper_cvtgf()
346 return float64_to_int64_round_to_zero(fa, &FP_STATUS); in helper_cvtgq()
352 fr = int64_to_float64(a, &FP_STATUS); in helper_cvtqg()