Lines Matching defs:val
149 void _Stl_set_exponent(uint64 &val, uint64 exp)
150 { val = (val & ~exponent_mask) | ((exp & bit11) << 52); }
331 double val;
474 return drep.val;
846 __string_to_float(const __iostring& v, float& val)
849 val = (float)_Stl_string_to_double(v.c_str());
851 val = (float)_Stl_string_to_doubleT<double,ieee754_double,12,IEEE754_DOUBLE_BIAS>(v.c_str());
856 __string_to_float(const __iostring& v, double& val)
859 val = _Stl_string_to_double(v.c_str());
861 val = _Stl_string_to_doubleT<double,ieee754_double,12,IEEE754_DOUBLE_BIAS>(v.c_str());
867 __string_to_float(const __iostring& v, long double& val) {
872 val = _Stl_string_to_double(v.c_str());
874 val = _Stl_string_to_doubleT<long double,ieee854_long_double,16,IEEE854_LONG_DOUBLE_BIAS>(v.c_str());