Home | History | Annotate | Download | only in instruction

Lines Matching full:constant

37     public int     constant;
67 int constant)
71 this.constant = constant;
86 this.constant = variableInstruction.constant;
274 constant = readSignedValue(code, offset, constantSize);
290 throw new IllegalArgumentException("Instruction has invalid constant size ("+this.toString(offset)+")");
294 writeSignedValue(code, offset, constant, constantSize);
317 (constantSize() > 0 ? ", "+constant : "");
352 * Returns the constant size for this instruction.
363 * Computes the required constant size for this instruction's constant.
368 constant << 24 >> 24 == constant ? 1 :
369 constant << 16 >> 16 == constant ? 2 :