Lines Matching full:result

52                                            float32 arg3, float32 result,  in f_maddsub_nan_result()  argument
84 return result; in f_maddsub_nan_result()
209 uint32_t new_E, new_M, new_S, result; in helper_qseed() local
219 result = float32_quiet_nan; in helper_qseed()
222 result = float32_infinity | (1 << 31); in helper_qseed()
224 result = float32_infinity; in helper_qseed()
227 result = float32_sqrt_nan; in helper_qseed()
229 result = float32_zero; in helper_qseed()
237 result = 0; in helper_qseed()
238 result = deposit32(result, 31, 1, new_S); in helper_qseed()
239 result = deposit32(result, 23, 8, new_E); in helper_qseed()
240 result = deposit32(result, 15, 8, new_M); in helper_qseed()
244 || result == float32_sqrt_nan) { in helper_qseed()
251 return (uint32_t) result; in helper_qseed()
336 uint32_t result, flags; in helper_fcmp() local
342 result = 1 << (float32_compare_quiet(arg1, arg2, &env->fp_status) + 1); in helper_fcmp()
343 result |= float32_is_denormal(arg1) << 4; in helper_fcmp()
344 result |= float32_is_denormal(arg2) << 5; in helper_fcmp()
354 return result; in helper_fcmp()
360 int32_t result, flags; in helper_ftoi() local
362 result = float32_to_int32(f_arg, &env->fp_status); in helper_ftoi()
367 result = 0; in helper_ftoi()
373 return (uint32_t)result; in helper_ftoi()
379 uint32_t result = 0; in helper_hptof() local
391 result = 0; in helper_hptof()
392 result = float32_set_sign(result, f_arg >> 15); in helper_hptof()
393 result = deposit32(result, 23, 8, 0xff); in helper_hptof()
394 result = deposit32(result, 21, 2, extract32(f_arg, 8, 2)); in helper_hptof()
395 result = deposit32(result, 0, 8, extract32(f_arg, 0, 8)); in helper_hptof()
398 result = float16_to_float32(f_arg, true, &env->fp_status); in helper_hptof()
409 return result; in helper_hptof()
415 uint32_t result = 0; in helper_ftohp() local
427 result = float16_set_sign(result, arg >> 31); in helper_ftohp()
428 result = deposit32(result, 10, 5, 0x1f); in helper_ftohp()
429 result = deposit32(result, 8, 2, extract32(arg, 21, 2)); in helper_ftohp()
430 result = deposit32(result, 0, 8, extract32(arg, 0, 8)); in helper_ftohp()
431 if (extract32(result, 0, 10) == 0) { in helper_ftohp()
432 result |= (1 << 8); in helper_ftohp()
436 result = float32_to_float16(f_arg, true, &env->fp_status); in helper_ftohp()
447 return result; in helper_ftohp()
484 uint32_t result; in helper_ftoiz() local
487 result = float32_to_int32_round_to_zero(f_arg, &env->fp_status); in helper_ftoiz()
493 result = 0; in helper_ftoiz()
503 return result; in helper_ftoiz()
509 uint32_t result; in helper_ftou() local
512 result = float32_to_uint32(f_arg, &env->fp_status); in helper_ftou()
518 result = 0; in helper_ftou()
527 result = 0; in helper_ftou()
535 return result; in helper_ftou()
541 uint32_t result; in helper_ftouz() local
544 result = float32_to_uint32_round_to_zero(f_arg, &env->fp_status); in helper_ftouz()
550 result = 0; in helper_ftouz()
559 result = 0; in helper_ftouz()
567 return result; in helper_ftouz()