Searched refs:rop (Results 1 - 25 of 37) sorted by relevance

12

/external/dexmaker/dexmaker/src/main/java/com/android/dx/
H A 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) {
39 Rop rop(TypeList types) {
47 Rop rop(TypeList types) {
55 Rop rop(TypeList types) {
63 Rop rop(TypeList types) {
71 Rop rop(TypeList types) {
76 abstract Rop rop(TypeLis method in class:Comparison
[all...]
H A DUnaryOp.java19 import com.android.dx.rop.code.Rop;
20 import com.android.dx.rop.code.Rops;
30 Rop rop(TypeId<?> type) {
38 Rop rop(TypeId<?> type) {
43 abstract Rop rop(TypeId<?> type); method in class:UnaryOp
H A 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) {
51 Rop rop(TypeList types) {
59 Rop rop(TypeList types) {
67 Rop rop(TypeList types) {
75 Rop rop(TypeList types) {
83 Rop rop(TypeList types) {
91 Rop rop(TypeLis
128 abstract Rop rop(com.android.dx.rop.type.TypeList types); method in class:BinaryOp
[all...]
H A 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
[all...]
H A 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
[all...]
H A 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;
H A 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
702 invoke(Rop rop, MethodId<D, R> method, Local<? super R> target, Local<? extends D> object, Local<?>... args) argument
[all...]
H A 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;
H A 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;
H A 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.*;
H A DLocal.java19 import com.android.dx.rop.code.RegisterSpec;
H A DTypeList.java19 import com.android.dx.rop.type.StdTypeList;
H A 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;
48 import static com.android.dx.rop.code.AccessFlags.ACC_CONSTRUCTOR;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenRewriteStream.cs577 ReplaceOp rop = (ReplaceOp)rewrites[i];
583 if (iop.index == rop.index)
588 rop.text = iop.text.ToString() + (rop.text != null ? rop.text.ToString() : string.Empty);
590 else if (iop.index > rop.index && iop.index <= rop.lastIndex)
601 if ( prevRop.index >= rop.index && prevRop.lastIndex <= rop.lastIndex )
609 prevRop.lastIndex < rop
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java464 ReplaceOp rop = (ReplaceOp)rewrites.get(i);
469 if ( iop.index == rop.index ) {
473 rop.text = iop.text.toString() + (rop.text!=null?rop.text.toString():"");
475 else if ( iop.index > rop.index && iop.index <= rop.lastIndex ) {
484 if ( prevRop.index>=rop.index && prevRop.lastIndex <= rop.lastIndex ) {
491 prevRop.lastIndex<rop
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A 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
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs500 ReplaceOp rop = (ReplaceOp)rewrites[i];
505 if (iop.index >= rop.index && iop.index <= rop.lastIndex) {
514 if (prevRop.index >= rop.index && prevRop.lastIndex <= rop.lastIndex) {
521 prevRop.lastIndex < rop.index || prevRop.index > rop.lastIndex;
523 prevRop.index == rop.index && prevRop.lastIndex == rop.lastIndex;
525 throw new ArgumentException("replace op boundaries of " + rop
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/a3xx/
H A Dfd3_blend.c65 enum a3xx_rop_code rop = ROP_COPY; local
70 rop = cso->logicop_func; /* maps 1:1 */
119 A3XX_RB_MRT_CONTROL_ROP_CODE(rop) |
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A 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
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_blend.c63 enum a3xx_rop_code rop = ROP_COPY; local
68 rop = cso->logicop_func; /* maps 1:1 */
119 A4XX_RB_MRT_CONTROL_ROP_CODE(rop) |
/external/mesa3d/src/gallium/drivers/ilo/core/
H A Dilo_builder_blt.h109 uint16_t width, uint16_t height, uint8_t rop,
130 dw[1] = rop << GEN6_BLITTER_BR13_ROP__SHIFT |
151 uint16_t width, uint16_t height, uint8_t rop,
185 dw[1] = rop << GEN6_BLITTER_BR13_ROP__SHIFT |
208 uint16_t width, uint16_t height, uint8_t rop,
230 dw[1] = rop << GEN6_BLITTER_BR13_ROP__SHIFT |
254 uint16_t width, uint16_t height, uint8_t rop,
299 dw[1] = rop << GEN6_BLITTER_BR13_ROP__SHIFT |
107 gen6_COLOR_BLT(struct ilo_builder *builder, const struct gen6_blt_bo *dst, uint32_t pattern, uint16_t width, uint16_t height, uint8_t rop, enum gen6_blt_mask value_mask, enum gen6_blt_mask write_mask) argument
149 gen6_XY_COLOR_BLT(struct ilo_builder *builder, const struct gen6_blt_xy_bo *dst, uint32_t pattern, uint16_t width, uint16_t height, uint8_t rop, enum gen6_blt_mask value_mask, enum gen6_blt_mask write_mask) argument
/external/mesa3d/src/mesa/main/tests/
H A Dmesa_formats.cpp103 #define HAS_PROP(rop,gop,bop,aop,lop,iop) \
105 EXPECT_TRUE(r rop 0); \
/external/mesa3d/src/glx/
H A Dindirect_texture_compression.c80 const GLvoid * data, CARD32 rop)
100 __GLX_BEGIN_VARIABLE(rop, cmdlen);
117 __GLX_BEGIN_VARIABLE_LARGE(rop, cmdlen + 4);
141 const GLvoid * data, CARD32 rop)
159 __GLX_BEGIN_VARIABLE(rop, cmdlen);
177 __GLX_BEGIN_VARIABLE_LARGE(rop, cmdlen + 4);
76 CompressedTexImage1D2D(GLenum target, GLint level, GLenum internal_format, GLsizei width, GLsizei height, GLint border, GLsizei image_size, const GLvoid * data, CARD32 rop) argument
137 CompressedTexSubImage1D2D(GLenum target, GLint level, GLsizei xoffset, GLsizei yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei image_size, const GLvoid * data, CARD32 rop) argument
/external/dexmaker/lib/
H A Ddalvik-dx-1.jar ... dx/io/instructions/ com/android/dx/merge/ com/android/dx/rop/ com/android/dx/rop/annotation/ com/android/dx/rop/code ...
/external/mesa3d/src/gallium/drivers/ilo/
H A Dilo_blitter_blt.c135 const uint8_t rop = 0xf0; /* PATCOPY */ local
169 width, height, rop, value_mask, write_mask);
186 const uint8_t rop = 0xcc; /* SRCCOPY */ local
224 width, height, rop, GEN6_BLT_MASK_8, GEN6_BLT_MASK_8);
246 const uint8_t rop = 0xf0; /* PATCOPY */ local
285 dst_box->width, dst_box->height, rop, value_mask, write_mask);
305 const uint8_t rop = 0xcc; /* SRCCOPY */ local
393 width, height, rop, mask, mask);

Completed in 8066 milliseconds

12