HomeSort by relevance Sort by last modified time
    Searched refs:cst (Results 151 - 175 of 734) sorted by null

1 2 3 4 5 67 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsnList.java 19 import com.android.dexgen.rop.cst.Constant;
20 import com.android.dexgen.rop.cst.CstBaseMethodRef;
197 Constant cst = ((CstInsn) insn).getConstant(); local
199 if (!(cst instanceof CstBaseMethodRef)) {
206 ((CstBaseMethodRef) cst).getParameterWordCount(isStatic);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ClassDefsSection.java 19 import com.android.dexgen.rop.cst.Constant;
20 import com.android.dexgen.rop.cst.CstType;
67 public IndexedItem get(Constant cst) {
68 if (cst == null) {
69 throw new NullPointerException("cst == null");
74 Type type = ((CstType) cst).getClassType();
AnnotationItem.java 22 import com.android.dexgen.rop.cst.Constant;
23 import com.android.dexgen.rop.cst.CstAnnotation;
24 import com.android.dexgen.rop.cst.CstArray;
25 import com.android.dexgen.rop.cst.CstUtf8;
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 22 import com.android.dx.rop.cst.Constant;
23 import com.android.dx.rop.cst.CstCallSiteRef;
24 import com.android.dx.rop.cst.CstFieldRef;
25 import com.android.dx.rop.cst.CstInteger;
26 import com.android.dx.rop.cst.CstInterfaceMethodRef;
27 import com.android.dx.rop.cst.CstInvokeDynamic;
28 import com.android.dx.rop.cst.CstMethodRef;
29 import com.android.dx.rop.cst.CstType;
638 Constant cst, int value) {
645 Type fieldType = ((CstFieldRef) cst).getType()
    [all...]
BasicBlocker.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstInvokeDynamic;
21 import com.android.dx.rop.cst.CstMemberRef;
22 import com.android.dx.rop.cst.CstString;
23 import com.android.dx.rop.cst.CstType;
200 Constant cst, int value) {
203 if ((cst instanceof CstMemberRef) || (cst instanceof CstType) ||
204 (cst instanceof CstString) || (cst instanceof CstInvokeDynamic))
    [all...]
RopperMachine.java 37 import com.android.dx.rop.cst.Constant;
38 import com.android.dx.rop.cst.CstCallSiteRef;
39 import com.android.dx.rop.cst.CstFieldRef;
40 import com.android.dx.rop.cst.CstInteger;
41 import com.android.dx.rop.cst.CstMethodRef;
42 import com.android.dx.rop.cst.CstNat;
43 import com.android.dx.rop.cst.CstString;
44 import com.android.dx.rop.cst.CstType;
371 Constant cst = getAuxCst(); local
410 Type componentType = ((CstType) cst).getClassType()
    [all...]
BytecodeArray.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.ConstantPool;
21 import com.android.dx.rop.cst.CstCallSiteRef;
22 import com.android.dx.rop.cst.CstDouble;
23 import com.android.dx.rop.cst.CstFloat;
24 import com.android.dx.rop.cst.CstInteger;
25 import com.android.dx.rop.cst.CstInvokeDynamic;
26 import com.android.dx.rop.cst.CstKnownNull;
27 import com.android.dx.rop.cst.CstLiteralBits;
28 import com.android.dx.rop.cst.CstLong
322 Constant cst = pool.get(idx); local
330 Constant cst = pool.get(idx); local
338 Constant cst = pool.get(idx); local
764 Constant cst = pool.get(idx); local
772 Constant cst = pool.get(idx); local
793 Constant cst = pool.get(idx); local
1356 Constant cst; field in class:BytecodeArray.ConstantParserVisitor
    [all...]
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 49 import com.android.dx.rop.cst.Constant;
50 import com.android.dx.rop.cst.ConstantPool;
51 import com.android.dx.rop.cst.CstBaseMethodRef;
52 import com.android.dx.rop.cst.CstBoolean;
53 import com.android.dx.rop.cst.CstByte;
54 import com.android.dx.rop.cst.CstCallSite;
55 import com.android.dx.rop.cst.CstCallSiteRef;
56 import com.android.dx.rop.cst.CstChar;
57 import com.android.dx.rop.cst.CstEnumRef;
58 import com.android.dx.rop.cst.CstFieldRef
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
ClassDefsSection.java 19 import com.android.dx.rop.cst.Constant;
20 import com.android.dx.rop.cst.CstType;
66 public IndexedItem get(Constant cst) {
67 if (cst == null) {
68 throw new NullPointerException("cst == null");
73 Type type = ((CstType) cst).getClassType();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
double-int.h 58 static double_int from_uhwi (unsigned HOST_WIDE_INT cst);
59 static double_int from_shwi (HOST_WIDE_INT cst);
202 /* Constructs double_int from integer CST. The bits over the precision of
206 double_int::from_shwi (HOST_WIDE_INT cst)
209 r.low = (unsigned HOST_WIDE_INT) cst;
210 r.high = cst < 0 ? -1 : 0;
225 /* Constructs double_int from unsigned integer CST. The bits over the
229 double_int::from_uhwi (unsigned HOST_WIDE_INT cst)
232 r.low = cst;
302 /* Returns value of CST as a signed number. CST must satisf
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form4rcc.java 23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstMethodRef;
25 import com.android.dx.rop.cst.CstProtoRef;
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
MethodId.java 19 import com.android.dx.rop.cst.CstMethodRef;
20 import com.android.dx.rop.cst.CstNat;
21 import com.android.dx.rop.cst.CstString;
  /external/mesa3d/src/gallium/winsys/radeon/drm/
radeon_drm_cs.c 189 cs->cst = &cs->csc2;
450 struct radeon_cs_context *csc = ((struct radeon_drm_cs*)job)->cst;
618 cs->csc = cs->cst;
619 cs->cst = tmp;
625 num_relocs = cs->cst->num_relocs;
627 cs->cst->chunks[0].length_dw = cs->base.current.cdw;
631 p_atomic_inc(&cs->cst->relocs_bo[i].bo->num_active_ioctls);
636 cs->cst->flags[0] = 0;
637 cs->cst->flags[1] = RADEON_CS_RING_DMA;
638 cs->cst->cs.num_chunks = 3
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstAnnotation.java 17 package com.android.dexgen.rop.cst;
CstByte.java 17 package com.android.dexgen.rop.cst;
CstChar.java 17 package com.android.dexgen.rop.cst;
CstDouble.java 17 package com.android.dexgen.rop.cst;
CstFieldRef.java 17 package com.android.dexgen.rop.cst;
CstFloat.java 17 package com.android.dexgen.rop.cst;
CstShort.java 17 package com.android.dexgen.rop.cst;
CstString.java 17 package com.android.dexgen.rop.cst;
Zeroes.java 17 package com.android.dexgen.rop.cst;
  /dalvik/dx/junit-tests/com/android/dx/rop/cst/
CstTypeTest.java 17 package com.android.dx.rop.cst;
  /dalvik/dx/src/com/android/dx/cf/attrib/
RawAttribute.java 19 import com.android.dx.rop.cst.ConstantPool;
  /dalvik/dx/src/com/android/dx/cf/direct/
MemberListParser.java 24 import com.android.dx.rop.cst.ConstantPool;
25 import com.android.dx.rop.cst.CstNat;
26 import com.android.dx.rop.cst.CstString;
27 import com.android.dx.rop.cst.CstType;

Completed in 615 milliseconds

1 2 3 4 5 67 8 91011>>