Lines Matching full:width
27 * Compute the width of the instruction at each address in the instruction
48 int width;
56 width = 4 + insns[1] * 2;
58 width = 2 + insns[1] * 4;
61 width = 4 + (insns[1] * size + 1) / 2;
64 width = dexGetInstrWidthAbs(gDvm.instrWidth, instr);
65 if (width == 0) {
68 LOGI("### instr=%d width=%d table=%d\n",
69 instr, width, dexGetInstrWidthAbs(gDvm.instrWidth, instr));
72 if (width < 0 || width > 5) {
73 LOGE("VFY: bizarre width value %d\n", width);
81 if (width > 65535) {
82 LOG_VFY_METH(meth, "VFY: insane width %d\n", width);
86 insnFlags[i] |= width;
87 i += width;
88 insns += width;