Searched defs:literal (Results 1 – 9 of 9) sorted by relevance
/dalvik/dx/src/com/android/dx/io/instructions/ |
D | InstructionCodec.java | 52 int literal = byte1(opcodeUnit); // should be zero in FORMAT_10X() local 91 int literal = (nibble3(opcodeUnit) << 28) >> 28; // sign-extend in FORMAT_11N() local 149 int literal = byte1(opcodeUnit); // should be zero in FORMAT_20T() local 169 int literal = byte1(opcodeUnit); in FORMAT_20BC() local 232 int literal = (short) in.read(); // sign-extend in FORMAT_21S() local 253 long literal = (short) in.read(); // sign-extend in FORMAT_21H() local 273 short literal = (short) (insn.getLiteral() >> shift); in FORMAT_21H() local 275 out.write(codeUnit(opcode, insn.getA()), literal); in FORMAT_21H() local 332 int literal = (byte) byte1(bc); // sign-extend in FORMAT_22B() local 380 int literal = (short) in.read(); // sign-extend in FORMAT_22S() local [all …]
|
D | DecodedInstruction.java | 64 private final long literal; field in DecodedInstruction 102 int index, IndexType indexType, int target, long literal) { in DecodedInstruction()
|
D | ZeroRegisterDecodedInstruction.java | 29 int index, IndexType indexType, int target, long literal) { in ZeroRegisterDecodedInstruction()
|
D | OneRegisterDecodedInstruction.java | 32 int index, IndexType indexType, int target, long literal, in OneRegisterDecodedInstruction()
|
D | RegisterRangeDecodedInstruction.java | 36 int index, IndexType indexType, int target, long literal, in RegisterRangeDecodedInstruction()
|
D | TwoRegisterDecodedInstruction.java | 35 int index, IndexType indexType, int target, long literal, in TwoRegisterDecodedInstruction()
|
D | ThreeRegisterDecodedInstruction.java | 38 int index, IndexType indexType, int target, long literal, in ThreeRegisterDecodedInstruction()
|
D | FourRegisterDecodedInstruction.java | 41 int index, IndexType indexType, int target, long literal, in FourRegisterDecodedInstruction()
|
D | FiveRegisterDecodedInstruction.java | 44 int index, IndexType indexType, int target, long literal, in FiveRegisterDecodedInstruction()
|