/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
D | CstLong.java | 59 long value = getLongBits(); in toString() 76 return Long.toString(getLongBits()); in toHuman() 85 return getLongBits(); in getValue()
|
D | CstDouble.java | 61 long bits = getLongBits(); in toString() 79 return Double.toString(Double.longBitsToDouble(getLongBits())); in toHuman() 88 return Double.longBitsToDouble(getLongBits()); in getValue()
|
D | CstLiteralBits.java | 51 public abstract long getLongBits(); in getLongBits() method in CstLiteralBits
|
D | CstKnownNull.java | 107 public long getLongBits() { in getLongBits() method in CstKnownNull
|
D | CstLiteral32.java | 84 public final long getLongBits() { in getLongBits() method in CstLiteral32
|
D | CstLiteral64.java | 84 public final long getLongBits() { in getLongBits() method in CstLiteral64
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
D | CstLong.java | 59 long value = getLongBits(); in toString() 76 return Long.toString(getLongBits()); in toHuman() 85 return getLongBits(); in getValue()
|
D | CstDouble.java | 61 long bits = getLongBits(); in toString() 79 return Double.toString(Double.longBitsToDouble(getLongBits())); in toHuman() 88 return Double.longBitsToDouble(getLongBits()); in getValue()
|
D | CstLiteralBits.java | 51 public abstract long getLongBits(); in getLongBits() method in CstLiteralBits
|
D | CstKnownNull.java | 107 public long getLongBits() { in getLongBits() method in CstKnownNull
|
D | CstLiteral32.java | 84 public final long getLongBits() { in getLongBits() method in CstLiteral32
|
D | CstLiteral64.java | 84 public final long getLongBits() { in getLongBits() method in CstLiteral64
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/ |
D | Form21h.java | 93 long bits = cb.getLongBits(); in isCompatible() 115 bits = (short) (cb.getLongBits() >>> 48); in writeTo()
|
D | Form51l.java | 93 ((CstLiteral64) ((CstInsn) insn).getConstant()).getLongBits(); in writeTo()
|
/dalvik/dx/src/com/android/dx/dex/code/form/ |
D | Form21h.java | 94 long bits = cb.getLongBits(); in isCompatible() 120 bits = (short) (cb.getLongBits() >>> 48); in writeTo()
|
D | Form51l.java | 98 ((CstLiteral64) ((CstInsn) insn).getConstant()).getLongBits(); in writeTo()
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
D | ValueEncoder.java | 137 long value = ((CstLiteralBits) cst).getLongBits(); in writeConstant() 142 long value = ((CstLiteralBits) cst).getLongBits(); in writeConstant() 148 long value = ((CstFloat) cst).getLongBits() << 32; in writeConstant() 153 long value = ((CstDouble) cst).getLongBits(); in writeConstant()
|
D | ClassDataItem.java | 296 if (((CstLiteralBits) cst).getLongBits() != 0) { in makeStaticValuesConstant()
|
/dalvik/dx/src/com/android/dx/dex/file/ |
D | ValueEncoder.java | 136 long value = ((CstLiteralBits) cst).getLongBits(); in writeConstant() 141 long value = ((CstLiteralBits) cst).getLongBits(); in writeConstant() 147 long value = ((CstFloat) cst).getLongBits() << 32; in writeConstant() 152 long value = ((CstDouble) cst).getLongBits(); in writeConstant()
|
D | ClassDataItem.java | 292 if (((CstLiteralBits) cst).getLongBits() != 0) { in makeStaticValuesConstant()
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
D | ArrayData.java | 144 out.writeLong(((CstLiteral64) cst).getLongBits()); in writeTo()
|
D | InsnFormat.java | 223 bits = ((CstLiteral64) value).getLongBits(); in literalBitsComment()
|
/dalvik/dx/src/com/android/dx/dex/code/ |
D | ArrayData.java | 146 out.writeLong(((CstLiteral64) cst).getLongBits()); in writeTo()
|
/dalvik/dx/src/com/android/dx/ssa/ |
D | LiteralOpUpgrader.java | 73 return (clb.getLongBits() == 0); in isConstIntZeroOrKnownNull()
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
D | CodeObserver.java | 124 ((CstDouble) cst).getLongBits()); in visitConstant()
|