OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DecodeUnsignedLeb128
(Results
1 - 12
of
12
) 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
...]
vmap_table.h
38
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) {
dex_file.cc
764
uint32_t line =
DecodeUnsignedLeb128
(&stream);
765
uint32_t parameters_size =
DecodeUnsignedLeb128
(&stream);
828
address +=
DecodeUnsignedLeb128
(&stream);
837
reg =
DecodeUnsignedLeb128
(&stream);
865
reg =
DecodeUnsignedLeb128
(&stream);
879
reg =
DecodeUnsignedLeb128
(&stream);
[
all
...]
dex_file_verifier.cc
423
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
(&ptr_)
[
all
...]
dex_file-inl.h
30
return
DecodeUnsignedLeb128
(&ptr);
37
*utf16_length =
DecodeUnsignedLeb128
(&ptr);
leb128.h
28
static inline uint32_t
DecodeUnsignedLeb128
(const uint8_t** data) {
58
return
DecodeUnsignedLeb128
(data) - 1;
leb128_test.cc
108
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);
elf_file.cc
[
all
...]
class_linker.cc
[
all
...]
/art/compiler/driver/
compiler_driver.cc
659
size_t num_encoded_catch_handlers =
DecodeUnsignedLeb128
(&encoded_catch_handler_list);
669
DecodeUnsignedLeb128
(&encoded_catch_handler_list);
677
DecodeUnsignedLeb128
(&encoded_catch_handler_list);
681
DecodeUnsignedLeb128
(&encoded_catch_handler_list);
[
all
...]
/art/runtime/verifier/
method_verifier.cc
630
uint32_t handlers_size =
DecodeUnsignedLeb128
(&handlers_ptr);
[
all
...]
/art/compiler/dex/
mir_graph.cc
320
uint32_t handlers_size =
DecodeUnsignedLeb128
(&handlers_ptr);
[
all
...]
Completed in 801 milliseconds