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

  /external/lldb/source/Plugins/ObjectFile/PECOFF/
ObjectFilePECOFF.cpp 202 uint16_t magic = data.GetU16 (&offset);
309 m_dos_header.e_magic = m_data.GetU16(&offset); // Magic number
314 m_dos_header.e_cblp = m_data.GetU16(&offset); // Bytes on last page of file
315 m_dos_header.e_cp = m_data.GetU16(&offset); // Pages in file
316 m_dos_header.e_crlc = m_data.GetU16(&offset); // Relocations
317 m_dos_header.e_cparhdr = m_data.GetU16(&offset); // Size of header in paragraphs
318 m_dos_header.e_minalloc = m_data.GetU16(&offset); // Minimum extra paragraphs needed
319 m_dos_header.e_maxalloc = m_data.GetU16(&offset); // Maximum extra paragraphs needed
320 m_dos_header.e_ss = m_data.GetU16(&offset); // Initial (relative) SS value
321 m_dos_header.e_sp = m_data.GetU16(&offset); // Initial SP valu
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFLocationList.cpp 43 uint32_t loc_length = debug_loc_data.GetU16(&offset);
84 uint16_t loc_length = debug_loc_data.GetU16(&offset);
DWARFLocationDescription.cpp 160 case -2: sint = (int16_t) data.GetU16(offset_ptr); s.Printf("%+" PRIi64, sint); break;
165 case 2: uint = data.GetU16(offset_ptr); s.Printf("0x%4.4" PRIx64, uint); break;
DWARFFormValue.cpp 129 case DW_FORM_block2: m_value.value.uval = data.GetU16(offset_ptr); is_block = true; break;
131 case DW_FORM_data2: m_value.value.uval = data.GetU16(offset_ptr); break;
155 case DW_FORM_ref2: m_value.value.uval = data.GetU16(offset_ptr); break;
201 case DW_FORM_block2: { dw_uleb128_t size = debug_info_data.GetU16(offset_ptr); *offset_ptr += size; } return true;
DWARFDebugPubnamesSet.cpp 88 m_header.version = data.GetU16(offset_ptr);
DWARFDebugArangeSet.cpp 187 m_header.version = data.GetU16(offset_ptr);
DWARFDebugLine.cpp 324 uint16_t pc_offset = debug_line_data.GetU16(&offset);
414 prologue->version = debug_line_data.GetU16(offset_ptr);
479 uint32_t version = debug_line_data.GetU16(&offset);
762 state.address += debug_line_data.GetU16(offset_ptr);
    [all...]
HashedNameToDIE.h 371 AtomType type = (AtomType)data.GetU16 (&offset);
372 dw_form_t form = (dw_form_t)data.GetU16 (&offset);
    [all...]
DWARFCompileUnit.cpp 83 m_version = debug_info.GetU16(offset_ptr);
116 m_version = debug_info_data.GetU16(&offset);
    [all...]
DWARFDebugInfoEntry.cpp 343 case DW_FORM_block2 : form_size = debug_info_data.GetU16(&offset); break;
    [all...]
  /external/lldb/source/Plugins/ObjectFile/ELF/
ELFHeader.cpp 119 if (data.GetU16(offset, &e_type, 2) == NULL)
136 if (data.GetU16(offset, &e_ehsize, 6) == NULL)
341 if (data.GetU16(offset, &st_shndx, 1) == NULL)
351 if (data.GetU16(offset, &st_shndx, 1) == NULL)
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
CommunicationKDP.cpp 322 request_ack_packet.PutHex16 (packet.GetU16(&offset));
361 const uint16_t length = packet.GetU16 (&offset);
854 const uint16_t length = packet.GetU16 (&offset);
    [all...]
  /external/lldb/include/lldb/Core/
DataExtractor.h     [all...]
MappedHash.h 154 version = data.GetU16 (&offset);
160 hash_function = data.GetU16 (&offset);
  /external/lldb/source/Expression/
DWARFExpression.cpp 322 case DW_OP_const2u: s->Printf("DW_OP_const2u(0x%4.4x) ", m_data.GetU16(&offset)); break; // 0x0a 1 2-byte constant
323 case DW_OP_const2s: s->Printf("DW_OP_const2s(0x%4.4x) ", m_data.GetU16(&offset)); break; // 0x0b 1 2-byte constant
355 case DW_OP_skip: s->Printf("DW_OP_skip(0x%4.4x)", m_data.GetU16(&offset)); break; // 0x2f 1 signed 2-byte constant
356 case DW_OP_bra: s->Printf("DW_OP_bra(0x%4.4x)", m_data.GetU16(&offset)); break; // 0x28 1 signed 2-byte constant
570 s->Printf("DW_OP_call2(0x%4.4x)", m_data.GetU16(&offset));
682 lldb::offset_t location_length = m_data.GetU16(&offset);
    [all...]
IRMemoryMap.cpp 661 case 2: scalar = extractor.GetU16(&offset); break;
  /external/lldb/source/Plugins/Disassembler/llvm/
DisassemblerLLVMC.cpp 147 m_opcode.SetOpcode16 (data.GetU16 (&data_offset));
177 uint32_t thumb_opcode = data.GetU16(&data_offset);
186 thumb_opcode |= data.GetU16(&data_offset);
318 const uint16_t uval16 = data.GetU16(&offset);
  /external/lldb/source/Core/
DataExtractor.cpp 406 DataExtractor::GetU16 (offset_t *offset_ptr) const
467 DataExtractor::GetU16 (offset_t *offset_ptr, void *void_dst, uint32_t count) const
627 case 2: return GetU16(offset_ptr); break;
652 case 2: return GetU16(offset_ptr); break;
684 case 2: return (int16_t)GetU16(offset_ptr); break;
916 case DW_EH_PE_udata2 : addressValue = GetU16(offset_ptr); break;
920 case DW_EH_PE_sdata2 : addressValue = (int16_t)GetU16(offset_ptr); break;
    [all...]
Scalar.cpp     [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCTrampolineHandler.cpp 299 const uint16_t header_size = data.GetU16(&offset);
300 const uint16_t descriptor_size = data.GetU16(&offset);
    [all...]
  /external/lldb/source/API/
SBData.cpp 275 value = m_opaque_sp->GetU16(&offset);
  /external/lldb/source/Symbol/
DWARFCallFrameInfo.cpp 548 row->SlideOffset (m_cfi_data.GetU16(&offset) * code_align);
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp     [all...]

Completed in 371 milliseconds