Searched defs:switch_offset (Results 1 - 1 of 1) sorted by relevance

/art/runtime/verifier/
H A Dmethod_verifier.cc973 int32_t switch_offset = insns[1] | ((int32_t) insns[2]) << 16; local
974 if ((int32_t) cur_offset + switch_offset < 0 || cur_offset + switch_offset + 2 >= insn_count) {
976 << ", switch offset " << switch_offset
981 const uint16_t* switch_insns = insns + switch_offset;
985 << ", switch offset " << switch_offset; local
1010 if (cur_offset + switch_offset + table_size > (uint32_t) insn_count) {
1012 << ", switch offset " << switch_offset
1013 << ", end " << (cur_offset + switch_offset + table_size)

Completed in 13 milliseconds