Home
last modified time | relevance | path

Searched refs:PushUint32 (Results 1 – 8 of 8) sorted by relevance

/art/libelffile/dwarf/
Dheaders.h49 writer.PushUint32(0); // Length placeholder. in WriteCIE()
50 writer.PushUint32(0xFFFFFFFF); // CIE id. in WriteCIE()
77 writer.PushUint32(0); // Length placeholder. in WriteFDE()
78 writer.PushUint32(cie_pointer); in WriteFDE()
84 writer.PushUint32(code_address); in WriteFDE()
85 writer.PushUint32(code_size); in WriteFDE()
102 writer.PushUint32(0); // Length placeholder. in WriteDebugInfoCU()
104 writer.PushUint32(debug_abbrev_offset); in WriteDebugInfoCU()
129 writer.PushUint32(0); // Section-length placeholder. in WriteDebugLineTable()
132 writer.PushUint32(0); // Header-length placeholder. in WriteDebugLineTable()
Dwriter.h50 void PushUint32(uint32_t value) { in PushUint32() function
57 void PushUint32(int value) { in PushUint32() function
59 PushUint32(static_cast<uint32_t>(value)); in PushUint32()
62 void PushUint32(uint64_t value) { in PushUint32() function
64 PushUint32(static_cast<uint32_t>(value)); in PushUint32()
91 PushUint32(static_cast<uint32_t>(value)); in PushInt32()
Ddebug_info_entry_writer.h91 this->PushUint32(value); in WriteAddr()
119 this->PushUint32(value); in WriteData4()
129 this->PushUint32(offset); in WriteSecOffset()
158 this->PushUint32(cu_offset); in WriteRef4()
173 this->PushUint32(dchecked_integral_cast<uint32_t>(debug_str_offset)); in WriteStrp()
179 this->PushUint32(debug_str->size()); in WriteStrp()
Ddebug_line_opcode_writer.h136 this->PushUint32(absolute_address); in SetAddress()
Ddebug_frame_opcode_writer.h62 this->PushUint32(delta); in AdvancePC()
/art/compiler/debug/
Delf_debug_loc_writer.h262 debug_loc.PushUint32(variable_location.low_pc); in WriteDebugLocEntry()
263 debug_loc.PushUint32(variable_location.high_pc); in WriteDebugLocEntry()
277 debug_loc.PushUint32(0); in WriteDebugLocEntry()
278 debug_loc.PushUint32(0); in WriteDebugLocEntry()
296 debug_ranges.PushUint32(low_pc); in WriteDebugLocEntry()
297 debug_ranges.PushUint32(high_pc); in WriteDebugLocEntry()
305 debug_ranges.PushUint32(0); in WriteDebugLocEntry()
306 debug_ranges.PushUint32(0); in WriteDebugLocEntry()
Delf_debug_info_writer.h134 debug_ranges.PushUint32(low_pc); in Write()
135 debug_ranges.PushUint32(high_pc); in Write()
142 debug_ranges.PushUint32(0); // End of list. in Write()
143 debug_ranges.PushUint32(0); in Write()
Delf_debug_frame_writer.h225 header.PushUint32(dchecked_integral_cast<uint32_t>(binary_search_table.size()/2)); in WriteCFISection()