Home
last modified time | relevance | path

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

12

/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
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;
DDexMaker.java28 import com.android.dx.rop.code.AccessFlags;
29 import com.android.dx.rop.code.LocalVariableInfo;
30 import com.android.dx.rop.code.RopMethod;
31 import com.android.dx.rop.cst.CstString;
32 import com.android.dx.rop.cst.CstType;
33 import com.android.dx.rop.type.StdTypeList;
50 import static com.android.dx.rop.code.AccessFlags.ACC_CONSTRUCTOR;
/external/antlr/antlr-3.4/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/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DTokenRewriteStream.java464 ReplaceOp rop = (ReplaceOp)rewrites.get(i); in reduceToSingleOperationPerIndex() local
469 if ( iop.index == rop.index ) { in reduceToSingleOperationPerIndex()
473 rop.text = iop.text.toString() + (rop.text!=null?rop.text.toString():""); in reduceToSingleOperationPerIndex()
475 else if ( iop.index > rop.index && iop.index <= rop.lastIndex ) { in reduceToSingleOperationPerIndex()
484 if ( prevRop.index>=rop.index && prevRop.lastIndex <= rop.lastIndex ) { in reduceToSingleOperationPerIndex()
491 prevRop.lastIndex<rop.index || prevRop.index > rop.lastIndex; in reduceToSingleOperationPerIndex()
493 prevRop.index==rop.index && prevRop.lastIndex==rop.lastIndex; in reduceToSingleOperationPerIndex()
496 if ( prevRop.text==null && rop.text==null && !disjoint ) { in reduceToSingleOperationPerIndex()
499 rop.index = Math.min(prevRop.index, rop.index); in reduceToSingleOperationPerIndex()
500 rop.lastIndex = Math.max(prevRop.lastIndex, rop.lastIndex); in reduceToSingleOperationPerIndex()
[all …]
/external/antlr/antlr-3.4/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/antlr-3.4/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/ilo/core/
Dilo_builder_blt.h109 uint16_t width, uint16_t height, uint8_t rop, in gen6_COLOR_BLT() argument
130 dw[1] = rop << GEN6_BLITTER_BR13_ROP__SHIFT | in gen6_COLOR_BLT()
151 uint16_t width, uint16_t height, uint8_t rop, in gen6_XY_COLOR_BLT() argument
185 dw[1] = rop << GEN6_BLITTER_BR13_ROP__SHIFT | in gen6_XY_COLOR_BLT()
208 uint16_t width, uint16_t height, uint8_t rop, in gen6_SRC_COPY_BLT() argument
230 dw[1] = rop << GEN6_BLITTER_BR13_ROP__SHIFT | in gen6_SRC_COPY_BLT()
254 uint16_t width, uint16_t height, uint8_t rop, in gen6_XY_SRC_COPY_BLT() argument
299 dw[1] = rop << GEN6_BLITTER_BR13_ROP__SHIFT | in gen6_XY_SRC_COPY_BLT()
/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/mesa3d/src/gallium/drivers/freedreno/a3xx/
Dfd3_blend.c65 enum a3xx_rop_code rop = ROP_COPY; in fd3_blend_state_create() local
70 rop = cso->logicop_func; /* maps 1:1 */ in fd3_blend_state_create()
119 A3XX_RB_MRT_CONTROL_ROP_CODE(rop) | in fd3_blend_state_create()
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/
Dfd4_blend.c63 enum a3xx_rop_code rop = ROP_COPY; in fd4_blend_state_create() local
68 rop = cso->logicop_func; /* maps 1:1 */ in fd4_blend_state_create()
119 A4XX_RB_MRT_CONTROL_ROP_CODE(rop) | in fd4_blend_state_create()
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRTokenRewriteStream.m567 ANTLRReplaceOp *rop = (ANTLRReplaceOp *)[rewrites objectAtIndex:i];
573 if ( iop.rwIndex >= rop.rwIndex && iop.rwIndex <= rop.lastIndex ) {
582 if ( prevRop.rwIndex>=rop.rwIndex && prevRop.lastIndex <= rop.lastIndex ) {
588 BOOL disjoint = prevRop.lastIndex<rop.rwIndex || prevRop.rwIndex > rop.lastIndex;
589 BOOL same = prevRop.rwIndex==rop.rwIndex && prevRop.lastIndex==rop.lastIndex;
592 …String stringWithFormat:@"replace op boundaries of %@, overlap with previous %@\n", rop, prevRop]];
620 ANTLRReplaceOp *rop = (ANTLRReplaceOp *) [prevReplaces objectAtIndex:j];
621 if ( iop.rwIndex == rop.rwIndex ) {
622 rop.text = [self catOpText:iop.text PrevText:rop.text];
626 if ( iop.rwIndex >= rop.rwIndex && iop.rwIndex <= rop.lastIndex ) {
[all …]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DTokenRewriteStream.as321 var rop:ReplaceOp = ReplaceOp(rewrites[i]);
326 if ( iop.index >= rop.index && iop.index <= rop.lastIndex ) {
334 if ( prevRop.index>=rop.index && prevRop.lastIndex <= rop.lastIndex ) {
340 prevRop.lastIndex<rop.index || prevRop.index > rop.lastIndex;
342 prevRop.index==rop.index && prevRop.lastIndex==rop.lastIndex;
344 throw new Error("replace op boundaries of "+rop+
370 rop = ReplaceOp(prevReplaces[j]);
371 if ( iop.index == rop.index ) {
372 rop.text = catOpText(iop.text,rop.text);
376 if ( iop.index >= rop.index && iop.index <= rop.lastIndex ) {
[all …]
/external/mesa3d/src/gallium/drivers/ilo/
Dilo_blitter_blt.c135 const uint8_t rop = 0xf0; /* PATCOPY */ in buf_clear_region() local
169 width, height, rop, value_mask, write_mask); in buf_clear_region()
186 const uint8_t rop = 0xcc; /* SRCCOPY */ in buf_copy_region() local
224 width, height, rop, GEN6_BLT_MASK_8, GEN6_BLT_MASK_8); in buf_copy_region()
246 const uint8_t rop = 0xf0; /* PATCOPY */ in tex_clear_region() local
285 dst_box->width, dst_box->height, rop, value_mask, write_mask); in tex_clear_region()
305 const uint8_t rop = 0xcc; /* SRCCOPY */ in tex_copy_region() local
393 width, height, rop, mask, mask); in tex_copy_region()
/external/mesa3d/src/mesa/main/tests/
Dmesa_formats.cpp103 #define HAS_PROP(rop,gop,bop,aop,lop,iop) \ in TEST() argument
105 EXPECT_TRUE(r rop 0); \ in TEST()
/external/libdrm/intel/tests/
Dgen7-2d-copy.batch-ref.txt2 0x12300004: 0x03cc0190: format 8888, pitch 400, rop 0xcc, clipping disabled,
/external/mesa3d/src/mapi/glapi/gen/
DglX_XML.py136 rop = child.get( 'rop' )
140 if rop:
141 self.glx_rop = int(rop)
/external/kernel-headers/original/uapi/linux/
Dfb.h355 __u32 rop; member
389 __u16 rop; /* bitop operation */ member

12