Lines Matching refs:float_rounding_mode

236                   s->float_rounding_mode == float_round_nearest_even);
3065 parts_round_to_int(&p, s->float_rounding_mode, 0, s, &float16_params); in float16_round_to_int()
3074 parts_round_to_int(&p, s->float_rounding_mode, 0, s, &float32_params); in float32_round_to_int()
3083 parts_round_to_int(&p, s->float_rounding_mode, 0, s, &float64_params); in float64_round_to_int()
3092 parts_round_to_int(&p, s->float_rounding_mode, 0, s, &bfloat16_params); in bfloat16_round_to_int()
3101 parts_round_to_int(&p, s->float_rounding_mode, 0, s, &float128_params); in float128_round_to_int()
3113 parts_round_to_int(&p, status->float_rounding_mode, 0, status, in floatx80_round_to_int()
3345 return float16_to_int8_scalbn(a, s->float_rounding_mode, 0, s); in float16_to_int8()
3350 return float16_to_int16_scalbn(a, s->float_rounding_mode, 0, s); in float16_to_int16()
3355 return float16_to_int32_scalbn(a, s->float_rounding_mode, 0, s); in float16_to_int32()
3360 return float16_to_int64_scalbn(a, s->float_rounding_mode, 0, s); in float16_to_int64()
3365 return float32_to_int16_scalbn(a, s->float_rounding_mode, 0, s); in float32_to_int16()
3370 return float32_to_int32_scalbn(a, s->float_rounding_mode, 0, s); in float32_to_int32()
3375 return float32_to_int64_scalbn(a, s->float_rounding_mode, 0, s); in float32_to_int64()
3380 return float64_to_int16_scalbn(a, s->float_rounding_mode, 0, s); in float64_to_int16()
3385 return float64_to_int32_scalbn(a, s->float_rounding_mode, 0, s); in float64_to_int32()
3390 return float64_to_int64_scalbn(a, s->float_rounding_mode, 0, s); in float64_to_int64()
3395 return float128_to_int32_scalbn(a, s->float_rounding_mode, 0, s); in float128_to_int32()
3400 return float128_to_int64_scalbn(a, s->float_rounding_mode, 0, s); in float128_to_int64()
3405 return float128_to_int128_scalbn(a, s->float_rounding_mode, 0, s); in float128_to_int128()
3410 return floatx80_to_int32_scalbn(a, s->float_rounding_mode, 0, s); in floatx80_to_int32()
3415 return floatx80_to_int64_scalbn(a, s->float_rounding_mode, 0, s); in floatx80_to_int64()
3490 return bfloat16_to_int8_scalbn(a, s->float_rounding_mode, 0, s); in bfloat16_to_int8()
3495 return bfloat16_to_int16_scalbn(a, s->float_rounding_mode, 0, s); in bfloat16_to_int16()
3500 return bfloat16_to_int32_scalbn(a, s->float_rounding_mode, 0, s); in bfloat16_to_int32()
3505 return bfloat16_to_int64_scalbn(a, s->float_rounding_mode, 0, s); in bfloat16_to_int64()
3752 return float16_to_uint8_scalbn(a, s->float_rounding_mode, 0, s); in float16_to_uint8()
3757 return float16_to_uint16_scalbn(a, s->float_rounding_mode, 0, s); in float16_to_uint16()
3762 return float16_to_uint32_scalbn(a, s->float_rounding_mode, 0, s); in float16_to_uint32()
3767 return float16_to_uint64_scalbn(a, s->float_rounding_mode, 0, s); in float16_to_uint64()
3772 return float32_to_uint16_scalbn(a, s->float_rounding_mode, 0, s); in float32_to_uint16()
3777 return float32_to_uint32_scalbn(a, s->float_rounding_mode, 0, s); in float32_to_uint32()
3782 return float32_to_uint64_scalbn(a, s->float_rounding_mode, 0, s); in float32_to_uint64()
3787 return float64_to_uint16_scalbn(a, s->float_rounding_mode, 0, s); in float64_to_uint16()
3792 return float64_to_uint32_scalbn(a, s->float_rounding_mode, 0, s); in float64_to_uint32()
3797 return float64_to_uint64_scalbn(a, s->float_rounding_mode, 0, s); in float64_to_uint64()
3802 return float128_to_uint32_scalbn(a, s->float_rounding_mode, 0, s); in float128_to_uint32()
3807 return float128_to_uint64_scalbn(a, s->float_rounding_mode, 0, s); in float128_to_uint64()
3812 return float128_to_uint128_scalbn(a, s->float_rounding_mode, 0, s); in float128_to_uint128()
3877 return bfloat16_to_uint8_scalbn(a, s->float_rounding_mode, 0, s); in bfloat16_to_uint8()
3882 return bfloat16_to_uint16_scalbn(a, s->float_rounding_mode, 0, s); in bfloat16_to_uint16()
3887 return bfloat16_to_uint32_scalbn(a, s->float_rounding_mode, 0, s); in bfloat16_to_uint32()
3892 return bfloat16_to_uint64_scalbn(a, s->float_rounding_mode, 0, s); in bfloat16_to_uint64()
5060 roundingMode = status->float_rounding_mode; in roundAndPackFloatx80()