Searched defs:sval64 (Results 1 - 7 of 7) sorted by relevance

/external/lldb/include/lldb/Interpreter/
H A DArgs.h377 SInt64ValueIsValidForByteSize (int64_t sval64, size_t total_byte_size) argument
387 return min <= sval64 && sval64 <= max;
/external/libunwind/include/
H A Ddwarf_i.h357 int64_t sval64; local
422 if ((ret = dwarf_reads64 (as, a, addr, &sval64, arg)) < 0)
424 val = sval64;
/external/lldb/include/lldb/Core/
H A DScalar.h244 SIntValueIsValidForSize (int64_t sval64, size_t total_byte_size) argument
254 return min <= sval64 && sval64 <= max;
/external/lldb/source/Core/
H A DRegisterValue.cpp491 uint64_t sval64 = Args::StringToSInt64(value_str, INT64_MAX, 0, &success); local
494 else if (!Args::SInt64ValueIsValidForByteSize (sval64, byte_size))
495 error.SetErrorStringWithFormat ("value 0x%" PRIx64 " is too large to fit in a %u byte signed integer value", sval64, byte_size);
498 if (!SetUInt (sval64, reg_info->byte_size))
H A DScalar.cpp1828 uint64_t sval64 = Args::StringToSInt64(value_str, INT64_MAX, 0, &success); local
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;
H A DDataExtractor.cpp713 int64_t sval64 = GetMaxS64 (offset_ptr, size); local
717 sval64 >>= bitfield_bit_offset;
719 sval64 &= bitfield_mask;
721 if (sval64 & (((uint64_t)1) << (bitfield_bit_size - 1)))
722 sval64 |= ~bitfield_mask;
724 return sval64;
/external/lldb/source/Commands/
H A DCommandObjectMemory.cpp1058 SIntValueIsValidForSize (int64_t sval64, size_t total_byte_size) argument
1068 return min <= sval64 && sval64 <= max;
1167 int64_t sval64; local
1281 sval64 = Args::StringToSInt64(value_str, INT64_MAX, 0, &success);
1288 else if (!SIntValueIsValidForSize (sval64, item_byte_size))
1290 result.AppendErrorWithFormat ("Value %" PRIi64 " is too large or small to fit in a %lu byte signed integer value.\n", sval64, item_byte_size);
1294 buffer.PutMaxHex64 (sval64, item_byte_size);

Completed in 162 milliseconds