Home
last modified time | relevance | path

Searched defs:literal (Results 1 – 9 of 9) sorted by relevance

/dalvik/dx/src/com/android/dx/io/instructions/
DZeroRegisterDecodedInstruction.java29 int index, IndexType indexType, int target, long literal) { in ZeroRegisterDecodedInstruction()
DOneRegisterDecodedInstruction.java32 int index, IndexType indexType, int target, long literal, in OneRegisterDecodedInstruction()
DRegisterRangeDecodedInstruction.java36 int index, IndexType indexType, int target, long literal, in RegisterRangeDecodedInstruction()
DInstructionCodec.java48 int literal = byte1(opcodeUnit); // should be zero in FORMAT_10X() local
83 int literal = (nibble3(opcodeUnit) << 28) >> 28; // sign-extend in FORMAT_11N() local
135 int literal = byte1(opcodeUnit); // should be zero in FORMAT_20T() local
153 int literal = byte1(opcodeUnit); in FORMAT_20BC() local
210 int literal = (short) in.read(); // sign-extend in FORMAT_21S() local
229 long literal = (short) in.read(); // sign-extend in FORMAT_21H() local
248 short literal = (short) (insn.getLiteral() >> shift); in FORMAT_21H() local
250 out.write(codeUnit(opcode, insn.getA()), literal); in FORMAT_21H() local
302 int literal = (byte) byte1(bc); // sign-extend in FORMAT_22B() local
346 int literal = (short) in.read(); // sign-extend in FORMAT_22S() local
[all …]
DTwoRegisterDecodedInstruction.java35 int index, IndexType indexType, int target, long literal, in TwoRegisterDecodedInstruction()
DThreeRegisterDecodedInstruction.java38 int index, IndexType indexType, int target, long literal, in ThreeRegisterDecodedInstruction()
DFourRegisterDecodedInstruction.java41 int index, IndexType indexType, int target, long literal, in FourRegisterDecodedInstruction()
DFiveRegisterDecodedInstruction.java44 int index, IndexType indexType, int target, long literal, in FiveRegisterDecodedInstruction()
DDecodedInstruction.java64 private final long literal; field in DecodedInstruction
102 int index, IndexType indexType, int target, long literal) { in DecodedInstruction()