Lines Matching refs:stream

98           const uint8_t* stream = debug_info;  in ProcessDexFiles()  local
99 DecodeUnsignedLeb128(&stream); // line_start in ProcessDexFiles()
100 uint32_t parameters_size = DecodeUnsignedLeb128(&stream); in ProcessDexFiles()
102 DecodeUnsignedLeb128P1(&stream); // Parameter name. in ProcessDexFiles()
105 const uint8_t* after_header_start = stream; in ProcessDexFiles()
107 const uint8_t* const op_start = stream; in ProcessDexFiles()
108 uint8_t opcode = *stream++; in ProcessDexFiles()
117 DecodeUnsignedLeb128(&stream); // addr_diff in ProcessDexFiles()
118 total_advance_pc_bytes_ += stream - op_start; in ProcessDexFiles()
121 DecodeSignedLeb128(&stream); // line_diff in ProcessDexFiles()
122 total_advance_line_bytes_ += stream - op_start; in ProcessDexFiles()
125 DecodeUnsignedLeb128(&stream); // register_num in ProcessDexFiles()
126 DecodeUnsignedLeb128P1(&stream); // name_idx in ProcessDexFiles()
127 DecodeUnsignedLeb128P1(&stream); // type_idx in ProcessDexFiles()
128 total_start_local_bytes_ += stream - op_start; in ProcessDexFiles()
131 DecodeUnsignedLeb128(&stream); // register_num in ProcessDexFiles()
132 DecodeUnsignedLeb128P1(&stream); // name_idx in ProcessDexFiles()
133 DecodeUnsignedLeb128P1(&stream); // type_idx in ProcessDexFiles()
134 DecodeUnsignedLeb128P1(&stream); // sig_idx in ProcessDexFiles()
135 total_start_local_extended_bytes_ += stream - op_start; in ProcessDexFiles()
138 DecodeUnsignedLeb128(&stream); // register_num in ProcessDexFiles()
139 total_end_local_bytes_ += stream - op_start; in ProcessDexFiles()
142 DecodeUnsignedLeb128(&stream); // register_num in ProcessDexFiles()
143 total_restart_local_bytes_ += stream - op_start; in ProcessDexFiles()
147 total_epilogue_bytes_ += stream - op_start; in ProcessDexFiles()
150 DecodeUnsignedLeb128P1(&stream); // name_idx in ProcessDexFiles()
151 total_set_file_bytes_ += stream - op_start; in ProcessDexFiles()
155 total_other_bytes_ += stream - op_start; in ProcessDexFiles()
160 const size_t bytes = stream - debug_info; in ProcessDexFiles()
162 total_non_header_bytes_ += stream - after_header_start; in ProcessDexFiles()
163 if (unique_non_header.insert(std::vector<uint8_t>(after_header_start, stream)).second) { in ProcessDexFiles()
164 total_unique_non_header_bytes_ += stream - after_header_start; in ProcessDexFiles()