OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DecodeUnsignedLeb128
(Results
1 - 16
of
16
) 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
...]
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);
dex_file-inl.h
30
return
DecodeUnsignedLeb128
(&ptr);
37
*utf16_length =
DecodeUnsignedLeb128
(&ptr);
leb128.h
31
static inline uint32_t
DecodeUnsignedLeb128
(const uint8_t** data) {
61
return
DecodeUnsignedLeb128
(data) - 1;
147
uint32_t old_value =
DecodeUnsignedLeb128
(&old_end);
dex_file_verifier_test.cc
301
DecodeUnsignedLeb128
(&trailing);
302
DecodeUnsignedLeb128
(&trailing);
303
DecodeUnsignedLeb128
(&trailing);
304
DecodeUnsignedLeb128
(&trailing);
321
DecodeUnsignedLeb128
(&trailing);
353
return
DecodeUnsignedLeb128
(&method_flags_ptr);
374
DecodeUnsignedLeb128
(&ptr);
378
DecodeUnsignedLeb128
(&tmp);
[
all
...]
dex_file_verifier.cc
471
uint32_t type_idx =
DecodeUnsignedLeb128
(&ptr_);
476
uint32_t addr =
DecodeUnsignedLeb128
(&ptr_);
484
uint32_t addr =
DecodeUnsignedLeb128
(&ptr_);
719
uint32_t size =
DecodeUnsignedLeb128
(&ptr_);
731
uint32_t idx =
DecodeUnsignedLeb128
(&ptr_);
736
uint32_t size =
DecodeUnsignedLeb128
(&ptr_);
740
idx =
DecodeUnsignedLeb128
(&ptr_);
[
all
...]
dex_file.cc
873
DecodeUnsignedLeb128
(&stream); // Line.
874
uint32_t parameters_size =
DecodeUnsignedLeb128
(&stream);
920
address +=
DecodeUnsignedLeb128
(&stream);
927
uint16_t reg =
DecodeUnsignedLeb128
(&stream);
[
all
...]
type_lookup_table.h
127
DecodeUnsignedLeb128
(&ptr);
stack_map.h
[
all
...]
elf_file.cc
[
all
...]
class_linker.cc
[
all
...]
/art/compiler/optimizing/
block_builder.cc
66
uint32_t handlers_size =
DecodeUnsignedLeb128
(&handlers_ptr);
277
uint32_t handlers_size =
DecodeUnsignedLeb128
(&handlers_ptr);
instruction_builder.cc
[
all
...]
/art/compiler/debug/
elf_debug_info_writer.h
52
DecodeUnsignedLeb128
(&stream); // line.
53
uint32_t parameters_size =
DecodeUnsignedLeb128
(&stream);
/art/compiler/driver/
compiler_driver.cc
[
all
...]
/art/runtime/verifier/
method_verifier.cc
[
all
...]
Completed in 316 milliseconds