Home
last modified time | relevance | path

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

/openbmc/qemu/target/tricore/
H A Dfpu_helper.c359 float32 f_arg = make_float32(arg); in helper_ftoi() local
362 result = float32_to_int32(f_arg, &env->fp_status); in helper_ftoi()
366 if (float32_is_any_nan(f_arg)) { in helper_ftoi()
378 float16 f_arg = make_float16(arg); in helper_hptof() local
387 if (float16_is_any_nan(f_arg)) { in helper_hptof()
388 if (float16_is_signaling_nan(f_arg, &env->fp_status)) { in helper_hptof()
392 result = float32_set_sign(result, f_arg >> 15); 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()
[all …]