Lines Matching refs:sd_value
3124 float sd_value = std::fabs(sm_value); in DecodeTypeVFP() local
3125 sd_value = canonicalizeNaN(sd_value); in DecodeTypeVFP()
3126 set_s_register_from_float(d, sd_value); in DecodeTypeVFP()
3137 float sd_value = -sm_value; in DecodeTypeVFP() local
3138 sd_value = canonicalizeNaN(sd_value); in DecodeTypeVFP()
3139 set_s_register_from_float(d, sd_value); in DecodeTypeVFP()
3168 float sd_value = fast_sqrt(sm_value, isolate_); in DecodeTypeVFP() local
3169 sd_value = canonicalizeNaN(sd_value); in DecodeTypeVFP()
3170 set_s_register_from_float(d, sd_value); in DecodeTypeVFP()
3188 float sd_value = truncf(sm_value); in DecodeTypeVFP() local
3189 sd_value = canonicalizeNaN(sd_value); in DecodeTypeVFP()
3190 set_s_register_from_float(d, sd_value); in DecodeTypeVFP()
3207 float sd_value = sn_value - sm_value; in DecodeTypeVFP() local
3208 sd_value = canonicalizeNaN(sd_value); in DecodeTypeVFP()
3209 set_s_register_from_float(d, sd_value); in DecodeTypeVFP()
3222 float sd_value = sn_value + sm_value; in DecodeTypeVFP() local
3223 sd_value = canonicalizeNaN(sd_value); in DecodeTypeVFP()
3224 set_s_register_from_float(d, sd_value); in DecodeTypeVFP()
3238 float sd_value = sn_value * sm_value; in DecodeTypeVFP() local
3239 sd_value = canonicalizeNaN(sd_value); in DecodeTypeVFP()
3240 set_s_register_from_float(d, sd_value); in DecodeTypeVFP()
3288 float sd_value = sn_value / sm_value; in DecodeTypeVFP() local
3290 sd_value = canonicalizeNaN(sd_value); in DecodeTypeVFP()
3291 set_s_register_from_float(d, sd_value); in DecodeTypeVFP()
3423 float sd_value = get_float_from_s_register(d); in DecodeVCMP() local
3431 if (std::isnan(sd_value)) { in DecodeVCMP()
3436 Compute_FPSCR_Flags(sd_value, sm_value); in DecodeVCMP()
3911 float sd_value = 0.0; in DecodeSpecialCondition() local
3915 sd_value = roundf(sm_value); in DecodeSpecialCondition()
3918 sd_value = nearbyintf(sm_value); in DecodeSpecialCondition()
3922 sd_value = ceilf(sm_value); in DecodeSpecialCondition()
3925 sd_value = floorf(sm_value); in DecodeSpecialCondition()
3931 sd_value = canonicalizeNaN(sd_value); in DecodeSpecialCondition()
3932 set_s_register_from_float(d, sd_value); in DecodeSpecialCondition()