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

/art/runtime/verifier/
H A Dmethod_verifier.cc981 const uint16_t* switch_insns = insns + switch_offset; local
983 if ((reinterpret_cast<uintptr_t>(switch_insns) & 0x03) != 0) {
988 uint32_t switch_count = switch_insns[1];
1003 if (switch_insns[0] != expected_signature) {
1006 switch_insns[0], expected_signature);
1019 int32_t last_key = switch_insns[keys_offset] | (switch_insns[keys_offset + 1] << 16);
1021 int32_t key = (int32_t) switch_insns[keys_offset + targ * 2] |
1022 (int32_t) (switch_insns[keys_offset + targ * 2 + 1] << 16);
1033 int32_t offset = (int32_t) switch_insns[targets_offse
2763 const uint16_t* switch_insns = insns + offset_to_switch; local
[all...]

Completed in 287 milliseconds