Home | History | Annotate | Download | only in Core

Lines Matching defs:sval64

1828             uint64_t sval64 = Args::StringToSInt64(value_str, INT64_MAX, 0, &success);
1831 else if (!SIntValueIsValidForSize (sval64, byte_size))
1832 error.SetErrorStringWithFormat ("value 0x%" PRIx64 " is too large to fit in a %zu byte signed integer value", sval64, byte_size);
1838 case e_sint: m_data.sint = (sint_t)sval64; break;
1839 case e_slong: m_data.slong = (slong_t)sval64; break;
1840 case e_slonglong: m_data.slonglong = (slonglong_t)sval64; break;