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

/art/runtime/verifier/
H A Dmethod_verifier.cc1127 const uint16_t* switch_insns = insns + switch_offset; local
1129 if ((reinterpret_cast<uintptr_t>(switch_insns) & 0x03) != 0) {
1134 uint32_t switch_count = switch_insns[1];
1149 if (switch_insns[0] != expected_signature) {
1152 switch_insns[0], expected_signature);
1165 int32_t last_key = switch_insns[keys_offset] | (switch_insns[keys_offset + 1] << 16);
1167 int32_t key = (int32_t) switch_insns[keys_offset + targ * 2] |
1168 (int32_t) (switch_insns[keys_offset + targ * 2 + 1] << 16);
1179 int32_t offset = (int32_t) switch_insns[targets_offse
2990 const uint16_t* switch_insns = insns + offset_to_switch; local
[all...]

Completed in 9 milliseconds