HomeSort by relevance Sort by last modified time
    Searched refs:uval64 (Results 1 - 13 of 13) sorted by null

  /external/lldb/source/Commands/
CommandObjectMemory.cpp 1166 uint64_t uval64; local
    [all...]
  /external/lldb/include/lldb/Interpreter/
Args.h 364 UInt64ValueIsValidForByteSize (uint64_t uval64, size_t total_byte_size)
373 return uval64 <= max;
  /external/lldb/include/lldb/Core/
Scalar.h 231 UIntValueIsValidForSize (uint64_t uval64, size_t total_byte_size)
240 return uval64 <= max;
  /external/libunwind/include/
dwarf_i.h 354 uint64_t uval64; local
399 if ((ret = dwarf_readu64 (as, a, addr, &uval64, arg)) < 0)
401 val = uval64;
  /external/lldb/source/Core/
EmulateInstruction.cpp 182 uint64_t uval64 = 0; local
192 uval64 = data.GetMaxU64 (&offset, byte_size);
201 uval64 = fail_value;
202 return uval64;
DataExtractor.cpp 697 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
1587 uint64_t uval64 = GetMaxU64Bitfield(&offset, item_byte_size, item_bit_size, item_bit_offset); local
    [all...]
RegisterValue.cpp 470 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))
    [all...]
Address.cpp 74 uint64_t uval64 = 0; local
91 uval64 = data.GetU64(&offset);
96 return uval64;
    [all...]
Scalar.cpp 1799 uint64_t uval64 = Args::StringToUInt64(value_str, UINT64_MAX, 0, &success); local
    [all...]
  /external/lldb/tools/lldb-perf/lib/
Results.cpp 84 uint64_t uval64 = result->GetAsUnsigned()->GetValue(); local
85 CFCReleaser<CFNumberRef> cf_number(::CFNumberCreate (kCFAllocatorDefault, kCFNumberSInt64Type, &uval64));
  /external/lldb/source/Plugins/Disassembler/llvm/
DisassemblerLLVMC.cpp 334 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/Symbol/
ClangASTType.cpp     [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARF.cpp 1428 uint64_t uval64 = 0; local
    [all...]

Completed in 335 milliseconds