/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
D | CstLiteralBits.java | 42 public abstract int getIntBits(); in getIntBits() method in CstLiteralBits 64 int bits = getIntBits(); in fitsIn16Bits() 79 int bits = getIntBits(); in fitsIn8Bits()
|
D | CstChar.java | 71 int value = getIntBits(); in toString() 88 return Integer.toString(getIntBits()); in toHuman() 97 return (char) getIntBits(); in getValue()
|
D | CstShort.java | 72 int value = getIntBits(); in toString() 89 return Integer.toString(getIntBits()); in toHuman() 98 return (short) getIntBits(); in getValue()
|
D | CstByte.java | 71 int value = getIntBits(); in toString() 88 return Integer.toString(getIntBits()); in toHuman() 97 return (byte) getIntBits(); in getValue()
|
D | CstFloat.java | 62 int bits = getIntBits(); in toString() 80 return Float.toString(Float.intBitsToFloat(getIntBits())); in toHuman() 89 return Float.intBitsToFloat(getIntBits()); in getValue()
|
D | CstInteger.java | 88 int value = getIntBits(); in toString() 105 return Integer.toString(getIntBits()); in toHuman() 114 return getIntBits(); in getValue()
|
D | CstKnownNull.java | 96 public int getIntBits() { in getIntBits() method in CstKnownNull
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
D | CstLiteralBits.java | 42 public abstract int getIntBits(); in getIntBits() method in CstLiteralBits 64 int bits = getIntBits(); in fitsIn16Bits() 79 int bits = getIntBits(); in fitsIn8Bits()
|
D | CstByte.java | 71 int value = getIntBits(); in toString() 90 return Integer.toString(getIntBits()); in toHuman() 99 return (byte) getIntBits(); in getValue()
|
D | CstChar.java | 71 int value = getIntBits(); in toString() 90 return Integer.toString(getIntBits()); in toHuman() 99 return (char) getIntBits(); in getValue()
|
D | CstShort.java | 72 int value = getIntBits(); in toString() 91 return Integer.toString(getIntBits()); in toHuman() 100 return (short) getIntBits(); in getValue()
|
D | CstFloat.java | 62 int bits = getIntBits(); in toString() 82 return Float.toString(Float.intBitsToFloat(getIntBits())); in toHuman() 91 return Float.intBitsToFloat(getIntBits()); in getValue()
|
D | CstInteger.java | 88 int value = getIntBits(); in toString() 107 return Integer.toString(getIntBits()); in toHuman() 116 return getIntBits(); in getValue()
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
D | ArrayData.java | 123 out.writeByte((byte) ((CstLiteral32) cst).getIntBits()); in writeTo() 130 out.writeShort((short) ((CstLiteral32) cst).getIntBits()); in writeTo() 137 out.writeInt(((CstLiteral32) cst).getIntBits()); in writeTo()
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/ |
D | Form22b.java | 86 return cb.fitsInInt() && signedFitsInByte(cb.getIntBits()); in isCompatible() 100 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
|
D | Form21s.java | 84 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits()); in isCompatible() 98 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
|
D | Form11n.java | 85 return cb.fitsInInt() && signedFitsInNibble(cb.getIntBits()); in isCompatible() 99 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
|
D | Form22s.java | 86 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits()); in isCompatible() 100 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
|
D | Form21h.java | 90 int bits = cb.getIntBits(); in isCompatible() 113 bits = (short) (cb.getIntBits() >>> 16); in writeTo()
|
/dalvik/dx/src/com/android/dx/dex/code/ |
D | ArrayData.java | 125 out.writeByte((byte) ((CstLiteral32) cst).getIntBits()); in writeTo() 132 out.writeShort((short) ((CstLiteral32) cst).getIntBits()); in writeTo() 139 out.writeInt(((CstLiteral32) cst).getIntBits()); in writeTo()
|
/dalvik/dx/src/com/android/dx/dex/code/form/ |
D | Form11n.java | 86 return cb.fitsInInt() && signedFitsInNibble(cb.getIntBits()); in isCompatible() 104 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
|
D | Form21s.java | 85 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits()); in isCompatible() 103 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
|
D | Form22s.java | 87 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits()); in isCompatible() 106 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
|
D | Form22b.java | 87 return cb.fitsInInt() && signedFitsInByte(cb.getIntBits()); in isCompatible() 106 ((CstLiteralBits) ((CstInsn) insn).getConstant()).getIntBits(); in writeTo()
|
D | Form21h.java | 91 int bits = cb.getIntBits(); in isCompatible() 118 bits = (short) (cb.getIntBits() >>> 16); in writeTo()
|