Home
last modified time | relevance | path

Searched refs:rop (Results 1 – 25 of 64) sorted by relevance

123

/external/llvm-project/polly/lib/External/isl/imath/
Dgmp_compat.c76 void GMPQAPI(set)(mp_rat rop, mp_rat op) { in GMPQAPI()
77 CHECK(mp_rat_copy(op, rop)); in GMPQAPI()
81 void GMPZAPI(abs)(mp_int rop, mp_int op) { in GMPZAPI()
82 CHECK(mp_int_abs(op, rop)); in GMPZAPI()
86 void GMPZAPI(add)(mp_int rop, mp_int op1, mp_int op2) { in GMPZAPI()
87 CHECK(mp_int_add(op1, op2, rop)); in GMPZAPI()
116 void GMPZAPI(mul)(mp_int rop, mp_int op1, mp_int op2) { in GMPZAPI()
117 CHECK(mp_int_mul(op1, op2, rop)); in GMPZAPI()
121 void GMPZAPI(neg)(mp_int rop, mp_int op) { in GMPZAPI()
122 CHECK(mp_int_neg(op, rop)); in GMPZAPI()
[all …]
Dgmp_compat.h57 void GMPQAPI(set)(mp_rat rop, mp_rat op);
60 void GMPZAPI(abs)(mp_int rop, mp_int op);
63 void GMPZAPI(add)(mp_int rop, mp_int op1, mp_int op2);
81 void GMPZAPI(mul)(mp_int rop, mp_int op1, mp_int op2);
84 void GMPZAPI(neg)(mp_int rop, mp_int op);
87 void GMPZAPI(set_si)(mp_int rop, long op);
90 void GMPZAPI(set)(mp_int rop, mp_int op);
93 void GMPZAPI(sub)(mp_int rop, mp_int op1, mp_int op2);
105 void GMPQAPI(set_ui)(mp_rat rop, unsigned long op1, unsigned long op2);
108 void GMPZAPI(set_ui)(mp_int rop, unsigned long op);
[all …]
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DBinaryOp.java19 import com.android.dx.rop.code.Rop;
20 import com.android.dx.rop.code.Rops;
21 import com.android.dx.rop.type.TypeList;
43 Rop rop(TypeList types) { in ADD() method
51 Rop rop(TypeList types) { in SUBTRACT() method
59 Rop rop(TypeList types) { in MULTIPLY() method
67 Rop rop(TypeList types) { in DIVIDE() method
75 Rop rop(TypeList types) { in REMAINDER() method
83 Rop rop(TypeList types) { in AND() method
91 Rop rop(TypeList types) { in OR() method
[all …]
DComparison.java19 import com.android.dx.rop.code.Rop;
20 import com.android.dx.rop.code.Rops;
21 import com.android.dx.rop.type.TypeList;
31 Rop rop(TypeList types) { in LT() method
39 Rop rop(TypeList types) { in LE() method
47 Rop rop(TypeList types) { in EQ() method
55 Rop rop(TypeList types) { in GE() method
63 Rop rop(TypeList types) { in GT() method
71 Rop rop(TypeList types) { in NE() method
76 abstract Rop rop(TypeList types); in rop() method in Comparison
DConstants.java19 import com.android.dx.rop.cst.CstBoolean;
20 import com.android.dx.rop.cst.CstByte;
21 import com.android.dx.rop.cst.CstChar;
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.CstKnownNull;
26 import com.android.dx.rop.cst.CstLong;
27 import com.android.dx.rop.cst.CstShort;
28 import com.android.dx.rop.cst.CstString;
[all …]
DTypeId.java19 import com.android.dx.rop.cst.CstType;
36 … public static final TypeId<Boolean> BOOLEAN = new TypeId<>(com.android.dx.rop.type.Type.BOOLEAN);
39 public static final TypeId<Byte> BYTE = new TypeId<>(com.android.dx.rop.type.Type.BYTE);
42 public static final TypeId<Character> CHAR = new TypeId<>(com.android.dx.rop.type.Type.CHAR);
45 public static final TypeId<Double> DOUBLE = new TypeId<>(com.android.dx.rop.type.Type.DOUBLE);
48 public static final TypeId<Float> FLOAT = new TypeId<>(com.android.dx.rop.type.Type.FLOAT);
51 public static final TypeId<Integer> INT = new TypeId<>(com.android.dx.rop.type.Type.INT);
54 public static final TypeId<Long> LONG = new TypeId<>(com.android.dx.rop.type.Type.LONG);
57 public static final TypeId<Short> SHORT = new TypeId<>(com.android.dx.rop.type.Type.SHORT);
60 public static final TypeId<Void> VOID = new TypeId<>(com.android.dx.rop.type.Type.VOID);
[all …]
DCode.java19 import com.android.dx.rop.code.BasicBlockList;
20 import com.android.dx.rop.code.Insn;
21 import com.android.dx.rop.code.PlainCstInsn;
22 import com.android.dx.rop.code.PlainInsn;
23 import com.android.dx.rop.code.RegisterSpecList;
24 import com.android.dx.rop.code.Rop;
25 import com.android.dx.rop.code.Rops;
26 import com.android.dx.rop.code.SourcePosition;
27 import com.android.dx.rop.code.ThrowingCstInsn;
28 import com.android.dx.rop.code.ThrowingInsn;
[all …]
DUnaryOp.java19 import com.android.dx.rop.code.Rop;
20 import com.android.dx.rop.code.Rops;
30 Rop rop(TypeId<?> type) { in NOT() method
38 Rop rop(TypeId<?> type) { in NEGATE() method
43 abstract Rop rop(TypeId<?> type); in rop() method in UnaryOp
DAnnotationId.java19 import com.android.dx.rop.annotation.Annotation;
20 import com.android.dx.rop.annotation.AnnotationVisibility;
21 import com.android.dx.rop.annotation.Annotations;
22 import com.android.dx.rop.annotation.NameValuePair;
23 import com.android.dx.rop.cst.*;
DMethodId.java19 import com.android.dx.rop.cst.CstMethodRef;
20 import com.android.dx.rop.cst.CstNat;
21 import com.android.dx.rop.cst.CstString;
22 import com.android.dx.rop.type.Prototype;
DFieldId.java19 import com.android.dx.rop.cst.CstFieldRef;
20 import com.android.dx.rop.cst.CstNat;
21 import com.android.dx.rop.cst.CstString;
DLabel.java19 import com.android.dx.rop.code.BasicBlock;
20 import com.android.dx.rop.code.Insn;
21 import com.android.dx.rop.code.InsnList;
/external/llvm-project/polly/lib/External/isl/
Disl_imath.c33 void isl_imath_addmul_ui(mp_int rop, mp_int op1, unsigned long op2) in isl_imath_addmul_ui() argument
40 mp_int_add(rop, &temp, rop); in isl_imath_addmul_ui()
45 void isl_imath_submul_ui(mp_int rop, mp_int op1, unsigned long op2) in isl_imath_submul_ui() argument
52 mp_int_sub(rop, &temp, rop); in isl_imath_submul_ui()
60 void isl_imath_cdiv_q_ui(mp_int rop, mp_int lhs, unsigned long rhs) in isl_imath_cdiv_q_ui() argument
66 impz_cdiv_q(rop, lhs, &temp); in isl_imath_cdiv_q_ui()
74 void isl_imath_fdiv_q_ui(mp_int rop, mp_int lhs, unsigned long rhs) in isl_imath_fdiv_q_ui() argument
80 impz_fdiv_q(rop, lhs, &temp); in isl_imath_fdiv_q_ui()
Disl_imath.h7 void isl_imath_addmul_ui(mp_int rop, mp_int op1, unsigned long op2);
8 void isl_imath_submul_ui(mp_int rop, mp_int op1, unsigned long op2);
9 void isl_imath_cdiv_q_ui(mp_int rop, mp_int op1, unsigned long op2);
10 void isl_imath_fdiv_q_ui(mp_int rop, mp_int op1, unsigned long op2);
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DTokenRewriteStream.cs577 ReplaceOp rop = (ReplaceOp)rewrites[i]; in ReduceToSingleOperationPerIndex()
583 if (iop.index == rop.index) in ReduceToSingleOperationPerIndex()
588rop.text = iop.text.ToString() + (rop.text != null ? rop.text.ToString() : string.Empty); in ReduceToSingleOperationPerIndex()
590 else if (iop.index > rop.index && iop.index <= rop.lastIndex) in ReduceToSingleOperationPerIndex()
601 if ( prevRop.index >= rop.index && prevRop.lastIndex <= rop.lastIndex ) in ReduceToSingleOperationPerIndex()
609 prevRop.lastIndex < rop.index || prevRop.index > rop.lastIndex; in ReduceToSingleOperationPerIndex()
611 prevRop.index == rop.index && prevRop.lastIndex == rop.lastIndex; in ReduceToSingleOperationPerIndex()
614 if (prevRop.text == null && rop.text == null && !disjoint) in ReduceToSingleOperationPerIndex()
618 rop.index = Math.Min(prevRop.index, rop.index); in ReduceToSingleOperationPerIndex()
619 rop.lastIndex = Math.Max(prevRop.lastIndex, rop.lastIndex); in ReduceToSingleOperationPerIndex()
[all …]
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DTokenRewriteStream.java468 ReplaceOp rop = (ReplaceOp)rewrites.get(i); in reduceToSingleOperationPerIndex() local
473 if ( iop.index == rop.index ) { in reduceToSingleOperationPerIndex()
477 rop.text = iop.text.toString() + (rop.text!=null?rop.text.toString():""); in reduceToSingleOperationPerIndex()
479 else if ( iop.index > rop.index && iop.index <= rop.lastIndex ) { in reduceToSingleOperationPerIndex()
488 if ( prevRop.index>=rop.index && prevRop.lastIndex <= rop.lastIndex ) { in reduceToSingleOperationPerIndex()
495 prevRop.lastIndex<rop.index || prevRop.index > rop.lastIndex; in reduceToSingleOperationPerIndex()
497 prevRop.index==rop.index && prevRop.lastIndex==rop.lastIndex; in reduceToSingleOperationPerIndex()
500 if ( prevRop.text==null && rop.text==null && !disjoint ) { in reduceToSingleOperationPerIndex()
503 rop.index = Math.min(prevRop.index, rop.index); in reduceToSingleOperationPerIndex()
504 rop.lastIndex = Math.max(prevRop.lastIndex, rop.lastIndex); in reduceToSingleOperationPerIndex()
[all …]
/external/tensorflow/tensorflow/compiler/mlir/lite/quantization/
Ddevice_target.cc105 auto rop = llvm::dyn_cast<quant::QuantizeRegionOp>(op); in DecomposeMultiplyAccumulateScale() local
106 if (!rop) return failure(); in DecomposeMultiplyAccumulateScale()
109 for (auto spec : rop.input_specs()) { in DecomposeMultiplyAccumulateScale()
112 for (auto spec : rop.output_specs()) { in DecomposeMultiplyAccumulateScale()
134 auto min = rop->getAttrOfType<FloatAttr>("min"); in DecomposeMultiplyAccumulateScale()
135 auto max = rop->getAttrOfType<FloatAttr>("max"); in DecomposeMultiplyAccumulateScale()
149 auto rop = llvm::dyn_cast<quant::QuantizeRegionOp>(op); in DecomposeSameScale() local
150 if (!rop) return failure(); in DecomposeSameScale()
162 auto o_spec = rop.output_specs()[0] in DecomposeSameScale()
169 auto min = rop->getAttrOfType<FloatAttr>("min"); in DecomposeSameScale()
[all …]
/external/antlr/runtime/Python3/antlr3/
Dstreams.py1333 for i, rop in enumerate(rewrites):
1334 if not rop:
1337 if not isinstance(rop, ReplaceOp):
1342 if iop.index == rop.index:
1346 rop.text = self.catOpText(iop.text, rop.text)
1348 elif iop.index > rop.index and iop.index <= rop.lastIndex:
1354 if (prevRop.index >= rop.index
1355 and prevRop.lastIndex <= rop.lastIndex):
1361 disjoint = (prevRop.lastIndex < rop.index
1362 or prevRop.index > rop.lastIndex)
[all …]
/external/antlr/runtime/Python/antlr3/
Dstreams.py1393 for i, rop in enumerate(rewrites):
1394 if rop is None:
1397 if not isinstance(rop, ReplaceOp):
1402 if iop.index == rop.index:
1406 rop.text = self.catOpText(iop.text, rop.text)
1408 elif iop.index > rop.index and iop.index <= rop.lastIndex:
1414 if (prevRop.index >= rop.index
1415 and prevRop.lastIndex <= rop.lastIndex):
1421 disjoint = (prevRop.lastIndex < rop.index
1422 or prevRop.index > rop.lastIndex)
[all …]
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DTokenRewriteStream.cs500 ReplaceOp rop = (ReplaceOp)rewrites[i]; in ReduceToSingleOperationPerIndex()
505 if (iop.index >= rop.index && iop.index <= rop.lastIndex) { in ReduceToSingleOperationPerIndex()
514 if (prevRop.index >= rop.index && prevRop.lastIndex <= rop.lastIndex) { in ReduceToSingleOperationPerIndex()
521 prevRop.lastIndex < rop.index || prevRop.index > rop.lastIndex; in ReduceToSingleOperationPerIndex()
523 prevRop.index == rop.index && prevRop.lastIndex == rop.lastIndex; in ReduceToSingleOperationPerIndex()
525 throw new ArgumentException("replace op boundaries of " + rop + in ReduceToSingleOperationPerIndex()
554 ReplaceOp rop = (ReplaceOp)prevReplaces[j]; in ReduceToSingleOperationPerIndex()
555 if (iop.index == rop.index) { in ReduceToSingleOperationPerIndex()
556 rop.text = CatOpText(iop.text, rop.text); in ReduceToSingleOperationPerIndex()
560 if (iop.index >= rop.index && iop.index <= rop.lastIndex) { in ReduceToSingleOperationPerIndex()
[all …]
/external/mesa3d/src/gallium/drivers/freedreno/a2xx/
Dfd2_blend.c63 unsigned rop = PIPE_LOGICOP_COPY; in fd2_blend_state_create() local
66 rop = cso->logicop_func; /* 1:1 mapping with hw */ in fd2_blend_state_create()
79 so->rb_colorcontrol = A2XX_RB_COLORCONTROL_ROP_CODE(rop); in fd2_blend_state_create()
/external/mesa3d/src/glx/
Dindirect_texture_compression.c80 const GLvoid * data, CARD32 rop) in CompressedTexImage1D2D() argument
100 __GLX_BEGIN_VARIABLE(rop, cmdlen); in CompressedTexImage1D2D()
117 __GLX_BEGIN_VARIABLE_LARGE(rop, cmdlen + 4); in CompressedTexImage1D2D()
141 const GLvoid * data, CARD32 rop) in CompressedTexSubImage1D2D() argument
159 __GLX_BEGIN_VARIABLE(rop, cmdlen); in CompressedTexSubImage1D2D()
177 __GLX_BEGIN_VARIABLE_LARGE(rop, cmdlen + 4); in CompressedTexSubImage1D2D()
/external/dexmaker/lib/
Ddalvik-dx-9.0.0_r3.jar ... io/instructions/ com/android/dx/rop/ com/android/dx/rop/cst ...
/external/mesa3d/src/gallium/drivers/freedreno/a3xx/
Dfd3_blend.c63 enum a3xx_rop_code rop = ROP_COPY; in fd3_blend_state_create() local
68 rop = cso->logicop_func; /* maps 1:1 */ in fd3_blend_state_create()
94 A3XX_RB_MRT_CONTROL_ROP_CODE(rop) | in fd3_blend_state_create()
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/
Dfd4_blend.c61 enum a3xx_rop_code rop = ROP_COPY; in fd4_blend_state_create() local
66 rop = cso->logicop_func; /* maps 1:1 */ in fd4_blend_state_create()
93 A4XX_RB_MRT_CONTROL_ROP_CODE(rop) | in fd4_blend_state_create()

123