Home
last modified time | relevance | path

Searched refs:GetU16 (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.cpp125 if (data.GetU16(offset, &e_type, 2) == nullptr) in Parse()
141 if (data.GetU16(offset, &e_ehsize, 6) == nullptr) in Parse()
344 if (data.GetU16(offset, &st_shndx, 1) == nullptr) in Parse()
352 if (data.GetU16(offset, &st_shndx, 1) == nullptr) in Parse()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.cpp55 m_value.value.uval = data.GetU16(offset_ptr); in ExtractValue()
93 m_value.value.uval = data.GetU16(offset_ptr); in ExtractValue()
228 uint16_t size = debug_info_data.GetU16(offset_ptr); in SkipValue()
H A DDWARFDebugMacro.cpp26 header.m_version = debug_macro_data.GetU16(offset); in ParseHeader()
H A DDWARFDebugArangeSet.cpp60 m_header.version = data.GetU16(offset_ptr); in extract()
H A DDWARFUnit.cpp364 if (strOffsets.GetU16(&baseOffset) < 5) in SetDwoStrOffsetsBase()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DMappedHash.h
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_arm64.cpp157 m_sve_vector_length = m_sve_data.GetU16(&sve_header_field_offset); in ConfigureRegisterContext()
162 m_sve_data.GetU16(&sve_header_field_offset); in ConfigureRegisterContext()
187 uint16_t svl = m_za_data.GetU16(&vlen_offset); in ConfigureRegisterContext()
H A DThreadElfCore.cpp303 pr_cursig = data.GetU16(&offset); in Parse()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompactUnwindInfo.cpp560 m_unwindinfo_data.GetU16(&offset); // entryPageOffset in GetCompactUnwindInfoForFunction()
561 uint16_t entry_count = m_unwindinfo_data.GetU16(&offset); // entryCount in GetCompactUnwindInfoForFunction()
622 m_unwindinfo_data.GetU16(&offset); // entryPageOffset in GetCompactUnwindInfoForFunction()
623 uint16_t entry_count = m_unwindinfo_data.GetU16(&offset); // entryCount in GetCompactUnwindInfoForFunction()
625 m_unwindinfo_data.GetU16(&offset); // encodingsPageOffset in GetCompactUnwindInfoForFunction()
627 m_unwindinfo_data.GetU16(&offset); // encodingsCount in GetCompactUnwindInfoForFunction()
H A DDWARFCallFrameInfo.cpp113 addressValue = DE.GetU16(offset_ptr); in GetGNUEHPointer()
125 addressValue = (int16_t)DE.GetU16(offset_ptr); in GetGNUEHPointer()
724 row->SlideOffset(m_cfi_data.GetU16(&offset) * code_align); in FDEToUnwindPlan()
H A DSymbol.cpp653 m_type_data = data.GetU16(offset_ptr); in Decode()
654 const uint16_t bitfields = data.GetU16(offset_ptr); in Decode()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataExtractor.h662 uint16_t GetU16(lldb::offset_t *offset_ptr) const;
687 void *GetU16(lldb::offset_t *offset_ptr, void *dst, uint32_t count) const;
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DDataExtractor.cpp348 uint16_t DataExtractor::GetU16(offset_t *offset_ptr) const { in GetU16() function in DataExtractor
397 void *DataExtractor::GetU16(offset_t *offset_ptr, void *void_dst, in GetU16() function in DataExtractor
532 return GetU16(offset_ptr); in GetMaxU64()
937 sstr.Printf(" %4.4x", GetU16(&offset)); in PutToLog()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp109 ctf_header.preamble.magic = m_data.GetU16(&offset); in ParseHeader()
681 field_offset = m_data.GetU16(&offset); in ParseType()
682 m_data.GetU16(&offset); // Padding in ParseType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp473 m_opcode.SetOpcode16(data.GetU16(&data_offset), byte_order); in Decode()
502 uint32_t thumb_opcode = data.GetU16(&data_offset); in Decode()
509 thumb_opcode |= data.GetU16(&data_offset); in Decode()
642 const uint16_t uval16 = data.GetU16(&offset); in CalculateMnemonicOperandsAndComment()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpression.cpp1213 stack.push_back(to_generic(opcodes.GetU16(&offset))); in Evaluate()
1216 stack.push_back(to_generic((int16_t)opcodes.GetU16(&offset))); in Evaluate()
1489 int16_t skip_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
1513 int16_t bra_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
H A DIRMemoryMap.cpp768 scalar = extractor.GetU16(&offset); in ReadScalarFromMemory()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp216 const uint16_t header_size = data.GetU16(&offset); in SetUpRegion()
217 const uint16_t descriptor_size = data.GetU16(&offset); in SetUpRegion()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBData.cpp200 value = m_opaque_sp->GetU16(&offset); in GetUnsignedInt16()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDumpDataExtractor.cpp693 s->Printf("U+%4.4x", DE.GetU16(&offset)); in DumpDataExtractor()