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

  /art/runtime/
mapping_table.h 36 return DecodeUnsignedLeb128(&table);
45 uint32_t total_size = DecodeUnsignedLeb128(&table);
46 uint32_t pc_to_dex_size = DecodeUnsignedLeb128(&table);
54 uint32_t total_size = DecodeUnsignedLeb128(&table);
55 uint32_t pc_to_dex_size = DecodeUnsignedLeb128(&table);
59 DecodeUnsignedLeb128(&table); // Move ptr past native PC delta.
74 native_pc_offset_ = DecodeUnsignedLeb128(&encoded_table_ptr_);
91 native_pc_offset_ += DecodeUnsignedLeb128(&encoded_table_ptr_);
128 DecodeUnsignedLeb128(&table); // Total_size, unused.
129 uint32_t pc_to_dex_size = DecodeUnsignedLeb128(&table)
    [all...]
method_info.h 35 num_method_indices_ = DecodeUnsignedLeb128(&ptr);
dex_file.cc 687 uint32_t handlers_size = DecodeUnsignedLeb128(&handler_data);
695 DecodeUnsignedLeb128(&handler_data);
    [all...]
leb128_test.cc 109 EXPECT_EQ(DecodeUnsignedLeb128(&data_ptr), uleb128_tests[i].decoded) << " i = " << i;
128 EXPECT_EQ(DecodeUnsignedLeb128(&data_ptr), uleb128_tests[i].decoded) << " i = " << i;
147 EXPECT_EQ(DecodeUnsignedLeb128(&encoded_data_ptr), uleb128_tests[i].decoded) << " i = " << i;
170 EXPECT_EQ(DecodeUnsignedLeb128(&encoded_data_ptr), uleb128_tests[i].decoded) << " i = " << i;
267 EXPECT_EQ(DecodeUnsignedLeb128(&new_end), new_value);
294 EXPECT_EQ(DecodeUnsignedLeb128(&encoded_data_ptr), (i * 1024) + j);
leb128.h 31 static inline uint32_t DecodeUnsignedLeb128(const uint8_t** data) {
104 return DecodeUnsignedLeb128(data) - 1;
241 uint32_t old_value = DecodeUnsignedLeb128(&old_end);
dex_file_verifier_test.cc 237 DecodeUnsignedLeb128(&trailing);
238 DecodeUnsignedLeb128(&trailing);
239 DecodeUnsignedLeb128(&trailing);
240 DecodeUnsignedLeb128(&trailing);
257 DecodeUnsignedLeb128(&trailing);
289 return DecodeUnsignedLeb128(&method_flags_ptr);
310 DecodeUnsignedLeb128(&ptr);
314 DecodeUnsignedLeb128(&tmp);
848 DecodeUnsignedLeb128(&trailing);
849 DecodeUnsignedLeb128(&trailing)
    [all...]
type_lookup_table.h 131 DecodeUnsignedLeb128(&ptr);
dex_file-inl.h 30 return DecodeUnsignedLeb128(&ptr);
37 *utf16_length = DecodeUnsignedLeb128(&ptr);
dex_file_annotations.cc 168 uint32_t type_index = DecodeUnsignedLeb128(&annotation);
202 uint32_t size = DecodeUnsignedLeb128(&annotation);
213 DecodeUnsignedLeb128(&annotation); // unused type_index
214 uint32_t size = DecodeUnsignedLeb128(&annotation);
216 DecodeUnsignedLeb128(&annotation); // unused element_name_index
242 DecodeUnsignedLeb128(&annotation); // unused type_index
243 uint32_t size = DecodeUnsignedLeb128(&annotation);
246 uint32_t element_name_index = DecodeUnsignedLeb128(&annotation);
317 uint32_t type_index = DecodeUnsignedLeb128(annotation);
318 uint32_t size = DecodeUnsignedLeb128(annotation)
    [all...]
stack_map.h     [all...]
elf_file.cc     [all...]
class_linker.cc     [all...]
  /art/dexlayout/
dex_ir.cc 62 DecodeUnsignedLeb128(&stream); // line_start
63 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
74 DecodeUnsignedLeb128(&stream); // addr_diff
80 DecodeUnsignedLeb128(&stream); // register_num
85 DecodeUnsignedLeb128(&stream); // register_num
92 DecodeUnsignedLeb128(&stream); // register_num
292 const uint32_t size = DecodeUnsignedLeb128(data);
302 const uint32_t type_idx = DecodeUnsignedLeb128(data);
303 const uint32_t size = DecodeUnsignedLeb128(data);
306 const uint32_t name_index = DecodeUnsignedLeb128(data)
    [all...]
  /art/compiler/optimizing/
block_builder.cc 67 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
287 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
  /art/dexdump/
dexdump.cc 506 const u4 size = DecodeUnsignedLeb128(data);
515 const u4 type_idx = DecodeUnsignedLeb128(data);
518 const u4 size = DecodeUnsignedLeb128(data);
520 const u4 name_idx = DecodeUnsignedLeb128(data);
    [all...]
  /art/compiler/debug/
elf_debug_info_writer.h 53 DecodeUnsignedLeb128(&stream); // line.
54 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
  /art/compiler/driver/
compiler_driver.cc     [all...]
  /art/runtime/verifier/
verifier_deps.cc 554 return DecodeUnsignedLeb128(in);
    [all...]
method_verifier.cc     [all...]

Completed in 1583 milliseconds