Searched refs:DecodeUnsignedLeb128Checked (Results 1 – 4 of 4) sorted by relevance
/art/runtime/verifier/ |
D | verifier_deps.cc | 361 if (UNLIKELY(!DecodeUnsignedLeb128Checked(in, end, &v1)) || in DecodeTuple() 362 UNLIKELY(!DecodeUnsignedLeb128Checked(in, end, &v2))) { in DecodeTuple() 379 if (UNLIKELY(!DecodeUnsignedLeb128Checked(in, end, &v1)) || in DecodeTuple() 380 UNLIKELY(!DecodeUnsignedLeb128Checked(in, end, &v2)) || in DecodeTuple() 381 UNLIKELY(!DecodeUnsignedLeb128Checked(in, end, &v3))) { in DecodeTuple()
|
/art/libdexfile/dex/ |
D | dex_file_verifier.cc | 766 if (!DecodeUnsignedLeb128Checked(&(ptr), begin_ + size_, &(var))) { \ 772 if (!DecodeUnsignedLeb128Checked(&(ptr), begin_ + size_, &(var))) { \ 1398 if (UNLIKELY(!DecodeUnsignedLeb128Checked(&ptr, data_end, &field_idx_diff)) || in CheckIntraClassDataItemFields() 1399 UNLIKELY(!DecodeUnsignedLeb128Checked(&ptr, data_end, &access_flags))) { in CheckIntraClassDataItemFields() 1445 if (UNLIKELY(!DecodeUnsignedLeb128Checked(&ptr, data_end, &method_idx_diff)) || in CheckIntraClassDataItemMethods() 1446 UNLIKELY(!DecodeUnsignedLeb128Checked(&ptr, data_end, &access_flags)) || in CheckIntraClassDataItemMethods() 1447 UNLIKELY(!DecodeUnsignedLeb128Checked(&ptr, data_end, &code_off))) { in CheckIntraClassDataItemMethods() 1496 if (UNLIKELY(!DecodeUnsignedLeb128Checked(&ptr, data_end, &static_fields_size)) || in CheckIntraClassDataItem() 1497 UNLIKELY(!DecodeUnsignedLeb128Checked(&ptr, data_end, &instance_fields_size)) || in CheckIntraClassDataItem() 1498 UNLIKELY(!DecodeUnsignedLeb128Checked(&ptr, data_end, &direct_methods_size)) || in CheckIntraClassDataItem() [all …]
|
/art/runtime/ |
D | vdex_file.cc | 481 if (UNLIKELY(!DecodeUnsignedLeb128Checked(&cursor, end, &destination_index) || in ComputeClassStatus() 482 !DecodeUnsignedLeb128Checked(&cursor, end, &source_index))) { in ComputeClassStatus()
|
/art/libartbase/base/ |
D | leb128.h | 62 static inline bool DecodeUnsignedLeb128Checked(const uint8_t** data, in DecodeUnsignedLeb128Checked() function
|