Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DELFHeader.cpp125 if (data.GetU16(offset, &e_type, 2) == nullptr) in Parse()
141 if (data.GetU16(offset, &e_ehsize, 6) == nullptr) in Parse()
338 if (data.GetU16(offset, &st_shndx, 1) == nullptr) in Parse()
346 if (data.GetU16(offset, &st_shndx, 1) == nullptr) in Parse()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFFormValue.cpp54 m_value.value.uval = data.GetU16(offset_ptr); in ExtractValue()
92 m_value.value.uval = data.GetU16(offset_ptr); in ExtractValue()
227 dw_uleb128_t size = debug_info_data.GetU16(offset_ptr); in SkipValue()
DDWARFDebugMacro.cpp24 header.m_version = debug_macro_data.GetU16(offset); in ParseHeader()
DDWARFDebugArangeSet.cpp59 m_header.version = data.GetU16(offset_ptr); in extract()
DHashedNameToDIE.cpp227 AtomType type = (AtomType)data.GetU16(&offset); in Read()
228 dw_form_t form = (dw_form_t)data.GetU16(&offset); in Read()
DDWARFUnit.cpp283 if (strOffsets.GetU16(&baseOffset) < 5) in SetDwoStrOffsetsBase()
823 header.m_version = data.GetU16(offset_ptr); in extract()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Core/
DMappedHash.h114 version = data.GetU16(&offset); in Read()
119 hash_function = data.GetU16(&offset); in Read()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
DRegisterContextPOSIXCore_arm64.cpp88 m_sve_vector_length = m_sve_data.GetU16(&sve_header_field_offset); in ConfigureRegisterContext()
91 m_sve_data.GetU16(&sve_header_field_offset); in ConfigureRegisterContext()
DThreadElfCore.cpp286 pr_cursig = data.GetU16(&offset); in Parse()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
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()
DDWARFCallFrameInfo.cpp109 addressValue = DE.GetU16(offset_ptr); in GetGNUEHPointer()
121 addressValue = (int16_t)DE.GetU16(offset_ptr); in GetGNUEHPointer()
719 row->SlideOffset(m_cfi_data.GetU16(&offset) * code_align); in FDEToUnwindPlan()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/
DDataExtractor.h651 uint16_t GetU16(lldb::offset_t *offset_ptr) const;
676 void *GetU16(lldb::offset_t *offset_ptr, void *dst, uint32_t count) const;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
DDataExtractor.cpp349 uint16_t DataExtractor::GetU16(offset_t *offset_ptr) const { in GetU16() function in DataExtractor
398 void *DataExtractor::GetU16(offset_t *offset_ptr, void *void_dst, in GetU16() function in DataExtractor
533 return GetU16(offset_ptr); in GetMaxU64()
938 sstr.Printf(" %4.4x", GetU16(&offset)); in PutToLog()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
DDisassemblerLLVMC.cpp135 m_opcode.SetOpcode16(data.GetU16(&data_offset), byte_order); in Decode()
164 uint32_t thumb_opcode = data.GetU16(&data_offset); in Decode()
171 thumb_opcode |= data.GetU16(&data_offset); in Decode()
282 const uint16_t uval16 = data.GetU16(&offset); in CalculateMnemonicOperandsAndComment()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Expression/
DDWARFExpression.cpp1244 stack.back().GetScalar() = addr_data.GetU16(&addr_data_offset); in Evaluate()
1341 stack.push_back(to_generic(opcodes.GetU16(&offset))); in Evaluate()
1344 stack.push_back(to_generic((int16_t)opcodes.GetU16(&offset))); in Evaluate()
1761 int16_t skip_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
1788 int16_t bra_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
DIRMemoryMap.cpp747 scalar = extractor.GetU16(&offset); in ReadScalarFromMemory()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCTrampolineHandler.cpp317 const uint16_t header_size = data.GetU16(&offset); in SetUpRegion()
318 const uint16_t descriptor_size = data.GetU16(&offset); in SetUpRegion()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
DDumpDataExtractor.cpp590 uint16_t half = DE.GetU16(&offset); in DumpDataExtractor()
616 s->Printf("U+%4.4x", DE.GetU16(&offset)); in DumpDataExtractor()
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
DSBData.cpp208 value = m_opaque_sp->GetU16(&offset); in GetUnsignedInt16()