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

  /external/llvm/include/llvm/Support/
DataExtractor.h 188 uint16_t getU16(uint32_t *offset_ptr) const;
213 uint16_t *getU16(uint32_t *offset_ptr, uint16_t *dst, uint32_t count) const;
  /external/llvm/lib/Support/
DataExtractor.cpp 61 uint16_t DataExtractor::getU16(uint32_t *offset_ptr) const {
65 uint16_t *DataExtractor::getU16(uint32_t *offset_ptr, uint16_t *dst,
97 return getU16(offset_ptr);
112 return (int16_t)getU16(offset_ptr);
  /external/llvm/lib/DebugInfo/
DWARFCompileUnit.cpp 33 Version = debug_info.getU16(offset_ptr);
63 Version = debug_info_data.getU16(&offset);
DWARFFormValue.cpp 105 Value.uval = data.getU16(offset_ptr);
119 Value.uval = data.getU16(offset_ptr);
193 uint16_t size = debug_info_data.getU16(offset_ptr);
DWARFDebugArangeSet.cpp 70 Header.Version = data.getU16(offset_ptr);
DWARFDebugInfoEntry.cpp 136 form_size = debug_info_data.getU16(&offset);
261 form_size = debug_info_data.getU16(&offset);
DWARFDebugLine.cpp 138 prologue->Version = debug_line_data.getU16(offset_ptr);
354 state.Address += debug_line_data.getU16(offset_ptr);
  /external/llvm/unittests/Support/
DataExtractorTest.cpp 32 EXPECT_EQ(0x8090U, DE.getU16(&offset));
54 EXPECT_EQ(0x9080U, DE.getU16(&offset));

Completed in 29 milliseconds