HomeSort by relevance Sort by last modified time
    Searched refs:cst (Results 26 - 50 of 453) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
ConstantPool.java 17 package com.android.dx.rop.cst;
CstMethodRef.java 17 package com.android.dx.rop.cst;
StdConstantPool.java 17 package com.android.dx.rop.cst;
94 * @param cst {@code null-ok;} the constant to store
96 public void set(int n, Constant cst) {
99 boolean cat2 = (cst != null) && cst.isCategory2();
109 "cst.isCategory2()");
114 if ((cst != null) && (entries[n] == null)) {
125 entries[n] = cst;
  /dalvik/dx/src/com/android/dx/rop/code/
PlainInsn.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstInteger;
113 Constant cst = (Constant) firstType; local
116 newSources, cst);
118 newSources, cst);
123 Constant cst = (Constant) lastType; local
131 if (opcode == RegOps.SUB && cst instanceof CstInteger) {
133 cst = CstInteger.make(-((CstInteger)cst).getValue());
135 newRop = Rops.ropFor(opcode, getResult(), newSources, cst);
    [all...]
DexTranslationAdvice.java 19 import com.android.dx.rop.cst.CstInteger;
68 CstInteger cst = (CstInteger) sourceA.getTypeBearer(); local
69 return cst.fitsIn16Bits();
75 CstInteger cst = (CstInteger) sourceB.getTypeBearer(); local
78 // These have 8 and 16 bit cst representations
86 return cst.fitsIn16Bits();
87 // These only have 8 bit cst reps
91 return cst.fitsIn8Bits();
94 CstInteger cst2 = CstInteger.make(-cst.getValue());
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
PlainInsn.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstInteger;
113 Constant cst = (Constant) firstType; local
116 newSources, cst);
118 newSources, cst);
123 Constant cst = (Constant) lastType; local
131 if (opcode == RegOps.SUB && cst instanceof CstInteger) {
133 cst = CstInteger.make(-((CstInteger)cst).getValue());
135 newRop = Rops.ropFor(opcode, getResult(), newSources, cst);
    [all...]
DexTranslationAdvice.java 19 import com.android.dx.rop.cst.CstInteger;
68 CstInteger cst = (CstInteger) sourceA.getTypeBearer(); local
69 return cst.fitsIn16Bits();
75 CstInteger cst = (CstInteger) sourceB.getTypeBearer(); local
78 // These have 8 and 16 bit cst representations
86 return cst.fitsIn16Bits();
87 // These only have 8 bit cst reps
91 return cst.fitsIn8Bits();
94 CstInteger cst2 = CstInteger.make(-cst.getValue());
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form31c.java 24 import com.android.dexgen.rop.cst.Constant;
25 import com.android.dexgen.rop.cst.CstFieldRef;
26 import com.android.dexgen.rop.cst.CstString;
27 import com.android.dexgen.rop.cst.CstType;
105 Constant cst = ci.getConstant(); local
107 return ((cst instanceof CstType) ||
108 (cst instanceof CstFieldRef) ||
109 (cst instanceof CstString));
Form22c.java 23 import com.android.dexgen.rop.cst.Constant;
24 import com.android.dexgen.rop.cst.CstFieldRef;
25 import com.android.dexgen.rop.cst.CstString;
26 import com.android.dexgen.rop.cst.CstType;
87 Constant cst = ci.getConstant(); local
88 return (cst instanceof CstType) ||
89 (cst instanceof CstFieldRef);
Form21c.java 24 import com.android.dexgen.rop.cst.Constant;
25 import com.android.dexgen.rop.cst.CstFieldRef;
26 import com.android.dexgen.rop.cst.CstString;
27 import com.android.dexgen.rop.cst.CstType;
111 Constant cst = ci.getConstant(); local
112 return (cst instanceof CstType) ||
113 (cst instanceof CstFieldRef) ||
114 (cst instanceof CstString);
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
StdConstantPool.java 17 package com.android.dexgen.rop.cst;
94 * @param cst {@code null-ok;} the constant to store
96 public void set(int n, Constant cst) {
99 boolean cat2 = (cst != null) && cst.isCategory2();
109 "cst.isCategory2()");
114 if ((cst != null) && (entries[n] == null)) {
125 entries[n] = cst;
  /dalvik/dx/src/com/android/dx/rop/cst/
StdConstantPool.java 17 package com.android.dx.rop.cst;
94 * @param cst {@code null-ok;} the constant to store
96 public void set(int n, Constant cst) {
99 boolean cat2 = (cst != null) && cst.isCategory2();
109 "cst.isCategory2()");
114 if ((cst != null) && (entries[n] == null)) {
125 entries[n] = cst;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DexFile.java 20 import com.android.dexgen.rop.cst.Constant;
21 import com.android.dexgen.rop.cst.CstBaseMethodRef;
22 import com.android.dexgen.rop.cst.CstEnumRef;
23 import com.android.dexgen.rop.cst.CstFieldRef;
24 import com.android.dexgen.rop.cst.CstString;
25 import com.android.dexgen.rop.cst.CstType;
26 import com.android.dexgen.rop.cst.CstUtf8;
420 * @param cst {@code non-null;} constant to possibly intern
422 /*package*/ void internIfAppropriate(Constant cst) {
423 if (cst instanceof CstString)
    [all...]
StringIdsSection.java 19 import com.android.dexgen.rop.cst.Constant;
20 import com.android.dexgen.rop.cst.CstNat;
21 import com.android.dexgen.rop.cst.CstString;
22 import com.android.dexgen.rop.cst.CstUtf8;
59 public IndexedItem get(Constant cst) {
60 if (cst == null) {
61 throw new NullPointerException("cst == null");
66 if (cst instanceof CstString) {
67 cst = ((CstString) cst).getString()
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
double-int.h 64 /* Constructs double_int from integer CST. The bits over the precision of
68 shwi_to_double_int (HOST_WIDE_INT cst)
72 r.low = (unsigned HOST_WIDE_INT) cst;
73 r.high = cst < 0 ? -1 : 0;
86 /* Constructs double_int from unsigned integer CST. The bits over the
90 uhwi_to_double_int (unsigned HOST_WIDE_INT cst)
94 r.low = cst;
100 /* Returns value of CST as a signed number. CST must satisfy
104 double_int_to_shwi (double_int cst)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
double-int.h 64 /* Constructs double_int from integer CST. The bits over the precision of
68 shwi_to_double_int (HOST_WIDE_INT cst)
72 r.low = (unsigned HOST_WIDE_INT) cst;
73 r.high = cst < 0 ? -1 : 0;
86 /* Constructs double_int from unsigned integer CST. The bits over the
90 uhwi_to_double_int (unsigned HOST_WIDE_INT cst)
94 r.low = cst;
100 /* Returns value of CST as a signed number. CST must satisfy
104 double_int_to_shwi (double_int cst)
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
double-int.h 64 /* Constructs double_int from integer CST. The bits over the precision of
68 shwi_to_double_int (HOST_WIDE_INT cst)
72 r.low = (unsigned HOST_WIDE_INT) cst;
73 r.high = cst < 0 ? -1 : 0;
86 /* Constructs double_int from unsigned integer CST. The bits over the
90 uhwi_to_double_int (unsigned HOST_WIDE_INT cst)
94 r.low = cst;
100 /* Returns value of CST as a signed number. CST must satisfy
104 double_int_to_shwi (double_int cst)
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
double-int.h 64 /* Constructs double_int from integer CST. The bits over the precision of
68 shwi_to_double_int (HOST_WIDE_INT cst)
72 r.low = (unsigned HOST_WIDE_INT) cst;
73 r.high = cst < 0 ? -1 : 0;
86 /* Constructs double_int from unsigned integer CST. The bits over the
90 uhwi_to_double_int (unsigned HOST_WIDE_INT cst)
94 r.low = cst;
100 /* Returns value of CST as a signed number. CST must satisfy
104 double_int_to_shwi (double_int cst)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
DexFile.java 22 import com.android.dx.rop.cst.Constant;
23 import com.android.dx.rop.cst.CstBaseMethodRef;
24 import com.android.dx.rop.cst.CstEnumRef;
25 import com.android.dx.rop.cst.CstFieldRef;
26 import com.android.dx.rop.cst.CstString;
27 import com.android.dx.rop.cst.CstType;
439 * @param cst {@code non-null;} constant to possibly intern
441 /*package*/ void internIfAppropriate(Constant cst) {
442 if (cst instanceof CstString) {
443 stringIds.intern((CstString) cst);
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DexFile.java 21 import com.android.dx.rop.cst.Constant;
22 import com.android.dx.rop.cst.CstBaseMethodRef;
23 import com.android.dx.rop.cst.CstEnumRef;
24 import com.android.dx.rop.cst.CstFieldRef;
25 import com.android.dx.rop.cst.CstString;
26 import com.android.dx.rop.cst.CstType;
441 * @param cst {@code non-null;} constant to possibly intern
443 /*package*/ void internIfAppropriate(Constant cst) {
444 if (cst instanceof CstString) {
445 stringIds.intern((CstString) cst);
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
StdField.java 20 import com.android.dx.rop.cst.CstNat;
21 import com.android.dx.rop.cst.CstType;
22 import com.android.dx.rop.cst.TypedConstant;
  /dalvik/dx/src/com/android/dx/dex/code/
ArrayData.java 22 import com.android.dx.rop.cst.Constant;
23 import com.android.dx.rop.cst.CstLiteral32;
24 import com.android.dx.rop.cst.CstLiteral64;
25 import com.android.dx.rop.cst.CstType;
124 Constant cst = values.get(i); local
125 out.writeByte((byte) ((CstLiteral32) cst).getIntBits());
131 Constant cst = values.get(i); local
132 out.writeShort((short) ((CstLiteral32) cst).getIntBits());
138 Constant cst = values.get(i); local
139 out.writeInt(((CstLiteral32) cst).getIntBits())
145 Constant cst = values.get(i); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form3rc.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstMethodRef;
25 import com.android.dx.rop.cst.CstType;
76 Constant cst = ci.getConstant(); local
82 if (!((cst instanceof CstMethodRef) ||
83 (cst instanceof CstType))) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form3rc.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstMethodRef;
25 import com.android.dx.rop.cst.CstType;
76 Constant cst = ci.getConstant(); local
82 if (!((cst instanceof CstMethodRef) ||
83 (cst instanceof CstType))) {
Form5rc.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstMethodRef;
25 import com.android.dx.rop.cst.CstType;
79 Constant cst = ci.getConstant(); local
81 if (!((cst instanceof CstMethodRef) ||
82 (cst instanceof CstType))) {

Completed in 758 milliseconds

12 3 4 5 6 7 8 91011>>