HomeSort by relevance Sort by last modified time
    Searched refs:DecodeUnsignedLeb128 (Results 1 - 10 of 10) 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 DecodeUnsignedLeb128(&table); // Total_size, unused.
55 uint32_t pc_to_dex_size = DecodeUnsignedLeb128(&table);
57 DecodeUnsignedLeb128(&table); // Move ptr past native PC.
58 DecodeUnsignedLeb128(&table); // Move ptr past dex PC.
71 native_pc_offset_ = DecodeUnsignedLeb128(&encoded_table_ptr_);
72 dex_pc_ = DecodeUnsignedLeb128(&encoded_table_ptr_);
86 native_pc_offset_ = DecodeUnsignedLeb128(&encoded_table_ptr_)
    [all...]
dex_file-inl.h 29 return DecodeUnsignedLeb128(&ptr);
35 *length = DecodeUnsignedLeb128(&ptr);
vmap_table.h 34 size_t size = DecodeUnsignedLeb128(&table);
36 uint16_t entry = DecodeUnsignedLeb128(&table);
38 entry = DecodeUnsignedLeb128(&table);
45 return DecodeUnsignedLeb128(&table);
61 size_t end = DecodeUnsignedLeb128(&table);
64 uint16_t entry = DecodeUnsignedLeb128(&table);
91 DecodeUnsignedLeb128(&table); // Skip size.
92 while (DecodeUnsignedLeb128(&table) != 0xffff) {
leb128.h 27 static inline uint32_t DecodeUnsignedLeb128(const uint8_t** data) {
57 return DecodeUnsignedLeb128(data) - 1;
dex_file.cc 669 uint32_t line = DecodeUnsignedLeb128(&stream);
670 uint32_t parameters_size = DecodeUnsignedLeb128(&stream);
732 address += DecodeUnsignedLeb128(&stream);
741 reg = DecodeUnsignedLeb128(&stream);
769 reg = DecodeUnsignedLeb128(&stream);
783 reg = DecodeUnsignedLeb128(&stream);
862 header_.static_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
863 header_.instance_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
864 header_.direct_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
865 header_.virtual_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_)
    [all...]
dex_file_verifier.cc 301 uint32_t type_idx = DecodeUnsignedLeb128(&ptr_);
306 uint32_t addr = DecodeUnsignedLeb128(&ptr_);
314 uint32_t addr = DecodeUnsignedLeb128(&ptr_);
522 uint32_t size = DecodeUnsignedLeb128(&ptr_);
534 uint32_t idx = DecodeUnsignedLeb128(&ptr_);
539 uint32_t size = DecodeUnsignedLeb128(&ptr_);
543 idx = DecodeUnsignedLeb128(&ptr_);
638 uint32_t handlers_size = DecodeUnsignedLeb128(&ptr_);
692 uint32_t size = DecodeUnsignedLeb128(&ptr_);
776 DecodeUnsignedLeb128(&ptr_)
    [all...]
class_linker.cc     [all...]
  /art/compiler/driver/
compiler_driver.cc 619 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
629 DecodeUnsignedLeb128(&encoded_catch_handler_list);
637 DecodeUnsignedLeb128(&encoded_catch_handler_list);
641 DecodeUnsignedLeb128(&encoded_catch_handler_list);
    [all...]
  /art/compiler/dex/
mir_graph.cc 265 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
    [all...]
  /art/runtime/verifier/
method_verifier.cc 556 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
    [all...]

Completed in 250 milliseconds