Lines Matching full:fr

218     float32 fa, fb, fr;  in helper_adds()  local
222 fr = float32_add(fa, fb, &FP_STATUS); in helper_adds()
225 return float32_to_s(fr); in helper_adds()
230 float32 fa, fb, fr; in helper_subs() local
234 fr = float32_sub(fa, fb, &FP_STATUS); in helper_subs()
237 return float32_to_s(fr); in helper_subs()
242 float32 fa, fb, fr; in helper_muls() local
246 fr = float32_mul(fa, fb, &FP_STATUS); in helper_muls()
249 return float32_to_s(fr); in helper_muls()
254 float32 fa, fb, fr; in helper_divs() local
258 fr = float32_div(fa, fb, &FP_STATUS); in helper_divs()
261 return float32_to_s(fr); in helper_divs()
266 float32 fa, fr; in helper_sqrts() local
269 fr = float32_sqrt(fa, &FP_STATUS); in helper_sqrts()
272 return float32_to_s(fr); in helper_sqrts()
295 float64 fa, fb, fr; in helper_addt() local
299 fr = float64_add(fa, fb, &FP_STATUS); in helper_addt()
302 return float64_to_t(fr); in helper_addt()
307 float64 fa, fb, fr; in helper_subt() local
311 fr = float64_sub(fa, fb, &FP_STATUS); in helper_subt()
314 return float64_to_t(fr); in helper_subt()
319 float64 fa, fb, fr; in helper_mult() local
323 fr = float64_mul(fa, fb, &FP_STATUS); in helper_mult()
326 return float64_to_t(fr); in helper_mult()
331 float64 fa, fb, fr; in helper_divt() local
335 fr = float64_div(fa, fb, &FP_STATUS); in helper_divt()
338 return float64_to_t(fr); in helper_divt()
343 float64 fa, fr; in helper_sqrtt() local
346 fr = float64_sqrt(fa, &FP_STATUS); in helper_sqrtt()
349 return float64_to_t(fr); in helper_sqrtt()
421 float32 fr; in helper_cvtts() local
424 fr = float64_to_float32(fa, &FP_STATUS); in helper_cvtts()
427 return float32_to_s(fr); in helper_cvtts()
433 float64 fr; in helper_cvtst() local
436 fr = float32_to_float64(fa, &FP_STATUS); in helper_cvtst()
439 return float64_to_t(fr); in helper_cvtst()
444 float32 fr = int64_to_float32(a, &FP_STATUS); in helper_cvtqs() local
447 return float32_to_s(fr); in helper_cvtqs()
498 float64 fr = int64_to_float64(a, &FP_STATUS); in helper_cvtqt() local
500 return float64_to_t(fr); in helper_cvtqt()