Home | History | Annotate | Download | only in libdex

Lines Matching full:width

26  * Generate a table that holds the width of all instructions.
29 * have negative values, unimplemented instructions have a width of zero.
43 LOGD("creating instr width table\n");
54 int width = 0;
128 width = 1;
255 width = 2;
280 width = 3;
284 width = 5;
298 width = -2;
307 width = -3;
335 assert(width == 0);
344 instrWidth[opc] = width;
1233 * Return the width of the specified instruction, or 0 if not defined. Also
1239 int width;
1242 width = 4 + insns[1] * 2;
1244 width = 2 + insns[1] * 4;
1248 width = 4 + (elemWidth * len + 1) / 2;
1250 width = dexGetInstrWidthAbs(widths, INST_INST(insns[0]));
1252 return width;