Searched refs:DecodeUnsignedLeb128 (Results 1 - 12 of 12) sorted by last modified time

/art/compiler/dex/
H A Dmir_graph.cc320 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
/art/compiler/driver/
H A Dcompiler_driver.cc642 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
652 DecodeUnsignedLeb128(&encoded_catch_handler_list);
660 DecodeUnsignedLeb128(&encoded_catch_handler_list);
664 DecodeUnsignedLeb128(&encoded_catch_handler_list);
/art/runtime/
H A Dclass_linker.cc3696 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
H A Ddex_file-inl.h30 return DecodeUnsignedLeb128(&ptr);
37 *utf16_length = DecodeUnsignedLeb128(&ptr);
H A Ddex_file.cc757 uint32_t line = DecodeUnsignedLeb128(&stream);
758 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
821 address += DecodeUnsignedLeb128(&stream);
830 reg = DecodeUnsignedLeb128(&stream);
858 reg = DecodeUnsignedLeb128(&stream);
872 reg = DecodeUnsignedLeb128(&stream);
1037 header_.static_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
1038 header_.instance_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
1039 header_.direct_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
1040 header_.virtual_methods_size_ = DecodeUnsignedLeb128(
[all...]
H A Ddex_file_verifier.cc423 uint32_t type_idx = DecodeUnsignedLeb128(&ptr_);
428 uint32_t addr = DecodeUnsignedLeb128(&ptr_);
436 uint32_t addr = DecodeUnsignedLeb128(&ptr_);
642 uint32_t size = DecodeUnsignedLeb128(&ptr_);
654 uint32_t idx = DecodeUnsignedLeb128(&ptr_);
659 uint32_t size = DecodeUnsignedLeb128(&ptr_);
663 idx = DecodeUnsignedLeb128(&ptr_);
761 uint32_t handlers_size = DecodeUnsignedLeb128(&ptr_);
814 uint32_t size = DecodeUnsignedLeb128(&ptr_);
900 DecodeUnsignedLeb128(
[all...]
H A Delf_file.cc1354 uint32_t index = DecodeUnsignedLeb128(&data);
1359 tag->tag_ = DecodeUnsignedLeb128(&data);
1363 uint32_t attr = DecodeUnsignedLeb128(&data);
1364 uint32_t form = DecodeUnsignedLeb128(&data);
1448 uint32_t tag_num = DecodeUnsignedLeb128(&entry);
H A Dleb128.h28 static inline uint32_t DecodeUnsignedLeb128(const uint8_t** data) { function in namespace:art
58 return DecodeUnsignedLeb128(data) - 1;
H A Dleb128_test.cc108 EXPECT_EQ(DecodeUnsignedLeb128(&data_ptr), uleb128_tests[i].decoded) << " i = " << i;
127 EXPECT_EQ(DecodeUnsignedLeb128(&data_ptr), uleb128_tests[i].decoded) << " i = " << i;
146 EXPECT_EQ(DecodeUnsignedLeb128(&encoded_data_ptr), uleb128_tests[i].decoded) << " i = " << i;
169 EXPECT_EQ(DecodeUnsignedLeb128(&encoded_data_ptr), uleb128_tests[i].decoded) << " i = " << i;
274 EXPECT_EQ(DecodeUnsignedLeb128(&encoded_data_ptr), (i * 1024) + j);
H A Dmapping_table.h36 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(
[all...]
H A Dvmap_table.h38 size_t size = DecodeUnsignedLeb128(&table);
40 uint16_t adjusted_entry = DecodeUnsignedLeb128(&table);
42 adjusted_entry = DecodeUnsignedLeb128(&table);
49 return DecodeUnsignedLeb128(&table);
66 size_t end = DecodeUnsignedLeb128(&table);
75 uint16_t adjusted_entry = DecodeUnsignedLeb128(&table);
102 DecodeUnsignedLeb128(&table); // Skip size.
103 while (DecodeUnsignedLeb128(&table) != kAdjustedFpMarker) {
/art/runtime/verifier/
H A Dmethod_verifier.cc613 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2961 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);

Completed in 164 milliseconds