Home
last modified time | relevance | path

Searched refs:DecodeUnsignedLeb128Checked (Results 1 – 4 of 4) sorted by relevance

/art/runtime/verifier/
Dverifier_deps.cc361 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/
Ddex_file_verifier.cc766 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/
Dvdex_file.cc481 if (UNLIKELY(!DecodeUnsignedLeb128Checked(&cursor, end, &destination_index) || in ComputeClassStatus()
482 !DecodeUnsignedLeb128Checked(&cursor, end, &source_index))) { in ComputeClassStatus()
/art/libartbase/base/
Dleb128.h62 static inline bool DecodeUnsignedLeb128Checked(const uint8_t** data, in DecodeUnsignedLeb128Checked() function