Searched defs:offset_ptr (Results 1 - 11 of 11) sorted by relevance

/external/llvm/lib/DebugInfo/
H A DDWARFAbbreviationDeclaration.cpp18 DWARFAbbreviationDeclaration::extract(DataExtractor data, uint32_t* offset_ptr){ argument
19 return extract(data, offset_ptr, data.getULEB128(offset_ptr));
23 DWARFAbbreviationDeclaration::extract(DataExtractor data, uint32_t* offset_ptr, argument
28 Tag = data.getULEB128(offset_ptr);
29 HasChildren = data.getU8(offset_ptr);
31 while (data.isValidOffset(*offset_ptr)) {
32 uint16_t attr = data.getULEB128(offset_ptr);
33 uint16_t form = data.getULEB128(offset_ptr);
H A DDWARFDebugAbbrev.cpp16 uint32_t* offset_ptr) {
17 const uint32_t beginOffset = *offset_ptr;
22 while (abbrevDeclaration.extract(data, offset_ptr)) {
32 return beginOffset != *offset_ptr;
15 extract(DataExtractor data, uint32_t* offset_ptr) argument
H A DDWARFDebugArangeSet.cpp50 DWARFDebugArangeSet::extract(DataExtractor data, uint32_t *offset_ptr) { argument
51 if (data.isValidOffset(*offset_ptr)) {
53 Offset = *offset_ptr;
69 Header.Length = data.getU32(offset_ptr);
70 Header.Version = data.getU16(offset_ptr);
71 Header.CuOffset = data.getU32(offset_ptr);
72 Header.AddrSize = data.getU8(offset_ptr);
73 Header.SegSize = data.getU8(offset_ptr);
86 const uint32_t header_size = *offset_ptr - Offset;
92 *offset_ptr
[all...]
H A DDWARFCompileUnit.cpp24 bool DWARFCompileUnit::extract(DataExtractor debug_info, uint32_t *offset_ptr) { argument
27 Offset = *offset_ptr;
29 if (debug_info.isValidOffset(*offset_ptr)) {
32 Length = debug_info.getU32(offset_ptr);
33 Version = debug_info.getU16(offset_ptr);
34 abbrOffset = debug_info.getU32(offset_ptr);
35 AddrSize = debug_info.getU8(offset_ptr);
48 *offset_ptr = Offset;
H A DDWARFDebugInfoEntry.cpp69 uint32_t* offset_ptr,
73 OS << format("0x%8.8x: ", *offset_ptr);
88 if (!formValue.extractValue(cu->getDebugInfoExtractor(), offset_ptr, cu))
98 uint32_t *offset_ptr) {
99 Offset = *offset_ptr;
102 uint64_t abbrCode = debug_info_data.getULEB128(offset_ptr);
107 uint32_t offset = *offset_ptr;
192 *offset_ptr = Offset;
200 *offset_ptr = offset;
210 uint32_t *offset_ptr) {
67 dumpAttribute(raw_ostream &OS, const DWARFCompileUnit *cu, uint32_t* offset_ptr, uint16_t attr, uint16_t form, unsigned indent) const argument
96 extractFast(const DWARFCompileUnit *cu, const uint8_t *fixed_form_sizes, uint32_t *offset_ptr) argument
209 extract(const DWARFCompileUnit *cu, uint32_t *offset_ptr) argument
[all...]
H A DDWARFFormValue.cpp82 DWARFFormValue::extractValue(DataExtractor data, uint32_t *offset_ptr, argument
94 Value.uval = data.getUnsigned(offset_ptr, cu->getAddressByteSize());
97 Value.uval = data.getULEB128(offset_ptr);
101 Value.uval = data.getU8(offset_ptr);
105 Value.uval = data.getU16(offset_ptr);
109 Value.uval = data.getU32(offset_ptr);
115 Value.uval = data.getU8(offset_ptr);
119 Value.uval = data.getU16(offset_ptr);
123 Value.uval = data.getU32(offset_ptr);
127 Value.uval = data.getU64(offset_ptr);
168 skipValue(DataExtractor debug_info_data, uint32_t* offset_ptr, const DWARFCompileUnit *cu) const argument
174 skipValue(uint16_t form, DataExtractor debug_info_data, uint32_t *offset_ptr, const DWARFCompileUnit *cu) argument
[all...]
H A DDWARFDebugLine.cpp134 uint32_t *offset_ptr, Prologue *prologue) {
135 const uint32_t prologue_offset = *offset_ptr;
138 prologue->TotalLength = debug_line_data.getU32(offset_ptr);
139 prologue->Version = debug_line_data.getU16(offset_ptr);
143 prologue->PrologueLength = debug_line_data.getU32(offset_ptr);
144 const uint32_t end_prologue_offset = prologue->PrologueLength + *offset_ptr;
145 prologue->MinInstLength = debug_line_data.getU8(offset_ptr);
146 prologue->DefaultIsStmt = debug_line_data.getU8(offset_ptr);
147 prologue->LineBase = debug_line_data.getU8(offset_ptr);
148 prologue->LineRange = debug_line_data.getU8(offset_ptr);
133 parsePrologue(DataExtractor debug_line_data, uint32_t *offset_ptr, Prologue *prologue) argument
188 parseStatementTable(DataExtractor debug_line_data, uint32_t *offset_ptr, State &state) argument
[all...]
/external/llvm/lib/Support/
H A DDataExtractor.cpp17 static T getU(uint32_t *offset_ptr, const DataExtractor *de, argument
20 uint32_t offset = *offset_ptr;
27 *offset_ptr += sizeof(val);
33 static T *getUs(uint32_t *offset_ptr, T *dst, uint32_t count, argument
35 uint32_t offset = *offset_ptr;
40 *value_ptr = getU<T>(offset_ptr, de, isLittleEndian, Data);
42 *offset_ptr = offset;
50 uint8_t DataExtractor::getU8(uint32_t *offset_ptr) const {
51 return getU<uint8_t>(offset_ptr, this, IsLittleEndian, Data.data());
55 DataExtractor::getU8(uint32_t *offset_ptr, uint8_ argument
65 getU16(uint32_t *offset_ptr, uint16_t *dst, uint32_t count) const argument
75 getU32(uint32_t *offset_ptr, uint32_t *dst, uint32_t count) const argument
85 getU64(uint32_t *offset_ptr, uint64_t *dst, uint32_t count) const argument
92 getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const argument
107 getSigned(uint32_t *offset_ptr, uint32_t byte_size) const argument
[all...]
/external/v8/src/
H A Dunicode.cc281 unsigned capacity, unsigned* chars_read_ptr, unsigned* offset_ptr) {
282 unsigned offset = *offset_ptr;
297 *chars_read_ptr = offset - *offset_ptr;
298 *offset_ptr = offset;
326 *offset_ptr = offset;
280 ReadBlock(Buffer<const char*> str, byte* buffer, unsigned capacity, unsigned* chars_read_ptr, unsigned* offset_ptr) argument
H A Dobjects.cc6150 unsigned* offset_ptr,
6153 unsigned offset = *offset_ptr;
6177 *offset_ptr = offset;
6184 unsigned* offset_ptr,
6187 kHeapObjectTag + kHeaderSize + *offset_ptr * kCharSize;
6189 *offset_ptr += max_chars;
6202 unsigned* offset_ptr,
6205 unsigned offset = *offset_ptr;
6228 *offset_ptr = offset + offset_correction;
6243 *offset_ptr
6149 SeqTwoByteStringReadBlockIntoBuffer(ReadBlockBuffer* rbb, unsigned* offset_ptr, unsigned max_chars) argument
6182 SeqAsciiStringReadBlock( unsigned* remaining, unsigned* offset_ptr, unsigned max_chars) argument
6201 ConsStringReadBlock(ReadBlockBuffer* rbb, unsigned* offset_ptr, unsigned max_chars) argument
6266 ExternalAsciiStringReadBlock( unsigned* remaining, unsigned* offset_ptr, unsigned max_chars) argument
6279 ExternalTwoByteStringReadBlockIntoBuffer( ReadBlockBuffer* rbb, unsigned* offset_ptr, unsigned max_chars) argument
6310 SeqAsciiStringReadBlockIntoBuffer(ReadBlockBuffer* rbb, unsigned* offset_ptr, unsigned max_chars) argument
6325 ExternalAsciiStringReadBlockIntoBuffer( ReadBlockBuffer* rbb, unsigned* offset_ptr, unsigned max_chars) argument
6342 ReadBlock(String* input, ReadBlockBuffer* rbb, unsigned* offset_ptr, unsigned max_chars) argument
6493 ReadBlockIntoBuffer(String* input, ReadBlockBuffer* rbb, unsigned* offset_ptr, unsigned max_chars) argument
6543 ReadBlock(String* input, unibrow::byte* util_buffer, unsigned capacity, unsigned* remaining, unsigned* offset_ptr) argument
6558 ReadBlock(String** raw_input, unibrow::byte* util_buffer, unsigned capacity, unsigned* remaining, unsigned* offset_ptr) argument
6580 ConsStringReadBlockIntoBuffer(ReadBlockBuffer* rbb, unsigned* offset_ptr, unsigned max_chars) argument
6673 SlicedStringReadBlock( ReadBlockBuffer* buffer, unsigned* offset_ptr, unsigned chars) argument
6684 SlicedStringReadBlockIntoBuffer( ReadBlockBuffer* buffer, unsigned* offset_ptr, unsigned chars) argument
[all...]
/external/qemu/target-i386/
H A Dtranslate.c1965 static void gen_lea_modrm(DisasContext *s, int modrm, int *reg_ptr, int *offset_ptr) argument
2146 *offset_ptr = disp;

Completed in 229 milliseconds