Searched defs:uval64 (Results 1 - 12 of 12) sorted by relevance

/external/lldb/tools/lldb-perf/lib/
H A DResults.cpp84 uint64_t uval64 = result->GetAsUnsigned()->GetValue(); local
85 CFCReleaser<CFNumberRef> cf_number(::CFNumberCreate (kCFAllocatorDefault, kCFNumberSInt64Type, &uval64));
/external/lldb/include/lldb/Interpreter/
H A DArgs.h364 UInt64ValueIsValidForByteSize (uint64_t uval64, size_t total_byte_size) argument
373 return uval64 <= max;
/external/libunwind/include/
H A Ddwarf_i.h354 uint64_t uval64; local
399 if ((ret = dwarf_readu64 (as, a, addr, &uval64, arg)) < 0)
401 val = uval64;
/external/lldb/include/lldb/Core/
H A DScalar.h231 UIntValueIsValidForSize (uint64_t uval64, size_t total_byte_size) argument
240 return uval64 <= max;
/external/lldb/source/Core/
H A DEmulateInstruction.cpp182 uint64_t uval64 = 0; local
192 uval64 = data.GetMaxU64 (&offset, byte_size);
201 uval64 = fail_value;
202 return uval64;
H A DRegisterValue.cpp470 uint64_t uval64 = Args::StringToUInt64(value_str, UINT64_MAX, 0, &success); local
473 else if (!Args::UInt64ValueIsValidForByteSize (uval64, byte_size))
474 error.SetErrorStringWithFormat ("value 0x%" PRIx64 " is too large to fit in a %u byte unsigned integer value", uval64, byte_size);
477 if (!SetUInt (uval64, reg_info->byte_size))
H A DAddress.cpp74 uint64_t uval64 = 0; local
91 uval64 = data.GetU64(&offset);
96 return uval64;
H A DScalar.cpp1799 uint64_t uval64 = Args::StringToUInt64(value_str, UINT64_MAX, 0, &success); local
1802 else if (!UIntValueIsValidForSize (uval64, byte_size))
1803 error.SetErrorStringWithFormat ("value 0x%" PRIx64 " is too large to fit in a %zu byte unsigned integer value", uval64, byte_size);
1809 case e_uint: m_data.uint = (uint_t)uval64; break;
1810 case e_ulong: m_data.ulong = (ulong_t)uval64; break;
1811 case e_ulonglong: m_data.ulonglong = (ulonglong_t)uval64; break;
H A DDataExtractor.cpp697 uint64_t uval64 = GetMaxU64 (offset_ptr, size); local
701 uval64 >>= bitfield_bit_offset;
704 return uval64;
705 uval64 &= bitfield_mask;
707 return uval64;
1474 uint64_t uval64 = GetMaxU64Bitfield(&offset, item_byte_size, item_bit_size, item_bit_offset); local
1478 std::bitset<64> bits(uval64);
1587 uint64_t uval64 = GetMaxU64Bitfield(&offset, item_byte_size, item_bit_size, item_bit_offset); local
1591 uint8_t ch = (uint8_t)(uval64 >> ((item_byte_size - i - 1) * 8));
/external/lldb/source/Commands/
H A DCommandObjectMemory.cpp1045 UIntValueIsValidForSize (uint64_t uval64, size_t total_byte_size) argument
1054 return uval64 <= max;
1166 uint64_t uval64; local
1213 uval64 = Args::StringToUInt64(value_str, UINT64_MAX, 16, &success);
1220 else if (!UIntValueIsValidForSize (uval64, item_byte_size))
1222 result.AppendErrorWithFormat ("Value 0x%" PRIx64 " is too large to fit in a %lu byte unsigned integer value.\n", uval64, item_byte_size);
1226 buffer.PutMaxHex64 (uval64, item_byte_size);
1230 uval64 = Args::StringToBoolean(value_str, false, &success);
1237 buffer.PutMaxHex64 (uval64, item_byte_size);
1241 uval64
[all...]
/external/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp334 const uint64_t uval64 = data.GetU64(&offset); local
335 m_opcode.SetOpcode64(uval64);
337 mnemonic_strm.Printf("0x%16.16" PRIx64, uval64);
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1428 uint64_t uval64 = 0; local
1458 uval64 = form_value.Unsigned();
1483 llvm::APInt apint (lldb_type->GetByteSize() * 8, uval64, is_signed);

Completed in 1127 milliseconds