Home
last modified time | relevance | path

Searched defs:opcode (Results 1 – 25 of 597) sorted by relevance

12345678910>>...24

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DInstructionFactory.java45 Instruction makeInstruction10t(@Nonnull Opcode opcode, int codeOffset); in makeInstruction10t()
46 Instruction makeInstruction10x(@Nonnull Opcode opcode); in makeInstruction10x()
47 Instruction makeInstruction11n(@Nonnull Opcode opcode, int registerA, int literal); in makeInstruction11n()
48 Instruction makeInstruction11x(@Nonnull Opcode opcode, int registerA); in makeInstruction11x()
49 Instruction makeInstruction12x(@Nonnull Opcode opcode, int registerA, int registerB); in makeInstruction12x()
50 …ruction makeInstruction20bc(@Nonnull Opcode opcode, int verificationError, @Nonnull Ref reference); in makeInstruction20bc()
51 Instruction makeInstruction20t(@Nonnull Opcode opcode, int codeOffset); in makeInstruction20t()
52 Instruction makeInstruction21c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference); in makeInstruction21c()
53 Instruction makeInstruction21ih(@Nonnull Opcode opcode, int registerA, int literal); in makeInstruction21ih()
54 Instruction makeInstruction21lh(@Nonnull Opcode opcode, int registerA, long literal); in makeInstruction21lh()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
DImmutableInstructionFactory.java49 public ImmutableInstruction10t makeInstruction10t(@Nonnull Opcode opcode, in makeInstruction10t()
54 public ImmutableInstruction10x makeInstruction10x(@Nonnull Opcode opcode) { in makeInstruction10x()
58 public ImmutableInstruction11n makeInstruction11n(@Nonnull Opcode opcode, in makeInstruction11n()
64 public ImmutableInstruction11x makeInstruction11x(@Nonnull Opcode opcode, in makeInstruction11x()
69 public ImmutableInstruction12x makeInstruction12x(@Nonnull Opcode opcode, in makeInstruction12x()
75 public ImmutableInstruction20bc makeInstruction20bc(@Nonnull Opcode opcode, in makeInstruction20bc()
81 public ImmutableInstruction20t makeInstruction20t(@Nonnull Opcode opcode, in makeInstruction20t()
86 public ImmutableInstruction21c makeInstruction21c(@Nonnull Opcode opcode, in makeInstruction21c()
92 public ImmutableInstruction21ih makeInstruction21ih(@Nonnull Opcode opcode, in makeInstruction21ih()
98 public ImmutableInstruction21lh makeInstruction21lh(@Nonnull Opcode opcode, in makeInstruction21lh()
[all …]
/external/javassist/src/main/javassist/bytecode/analysis/
DUtil.java27 int opcode = iter.byteAt(pos); in getJumpTarget() local
32 public static boolean isJumpInstruction(int opcode) { in isJumpInstruction()
36 public static boolean isGoto(int opcode) { in isGoto()
40 public static boolean isJsr(int opcode) { in isJsr()
44 public static boolean isReturn(int opcode) { in isReturn()
/external/jetty/src/java/org/eclipse/jetty/websocket/
DDeflateFrameExtension.java69 public void onFrame(byte flags, byte opcode, Buffer buffer) in onFrame()
103 super.onFrame(clearFlag(flags,1),opcode,buf); in onFrame() local
116 …public void addFrame(byte flags, byte opcode, byte[] content, int offset, int length) throws IOExc… in addFrame()
120 super.addFrame(clearFlag(flags,1),opcode,content,offset,length); in addFrame() local
160 super.addFrame(setFlag(flags,1),opcode,out,0,l+out_offset); in addFrame() local
162 super.addFrame(clearFlag(flags,1),opcode,content,offset,length); in addFrame() local
DWebSocket.java102 boolean onFrame(byte flags,byte opcode,byte[] data, int offset, int length); in onFrame()
213 boolean isControl(byte opcode); in isControl()
219 boolean isText(byte opcode); in isText()
225 boolean isBinary(byte opcode); in isBinary()
231 boolean isContinuation(byte opcode); in isContinuation()
237 boolean isClose(byte opcode); in isClose()
243 boolean isPing(byte opcode); in isPing()
249 boolean isPong(byte opcode); in isPong()
273 … void sendFrame(byte flags,byte opcode,byte[] data, int offset, int length) throws IOException; in sendFrame()
DWebSocketConnectionD00.java256 …public void sendFrame(byte flags,byte opcode, byte[] content, int offset, int length) throws IOExc… in sendFrame()
413 public void onFrame(byte flags, byte opcode, Buffer buffer) in onFrame()
456 public boolean isControl(byte opcode) in isControl()
461 public boolean isText(byte opcode) in isText()
466 public boolean isBinary(byte opcode) in isBinary()
471 public boolean isContinuation(byte opcode) in isContinuation()
476 public boolean isClose(byte opcode) in isClose()
481 public boolean isPing(byte opcode) in isPing()
486 public boolean isPong(byte opcode) in isPong()
DWebSocketConnectionD06.java65 static boolean isControlFrame(int opcode) in isControlFrame()
337 …public void sendFrame(byte flags,byte opcode, byte[] content, int offset, int length) throws IOExc… in sendFrame()
451 public boolean isControl(byte opcode) in isControl()
457 public boolean isText(byte opcode) in isText()
463 public boolean isBinary(byte opcode) in isBinary()
469 public boolean isContinuation(byte opcode) in isContinuation()
475 public boolean isClose(byte opcode) in isClose()
481 public boolean isPing(byte opcode) in isPing()
487 public boolean isPong(byte opcode) in isPong()
530 public void onFrame(byte flags, byte opcode, Buffer buffer) in onFrame()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DDuplicateFrameEliminator.java44 public void visitInsn(final int opcode) { in visitInsn()
50 public void visitIntInsn(final int opcode, final int operand) { in visitIntInsn()
56 public void visitVarInsn(final int opcode, final int var) { in visitVarInsn()
62 public void visitTypeInsn(final int opcode, final String type) { in visitTypeInsn()
68 public void visitFieldInsn(final int opcode, final String owner, in visitFieldInsn()
75 public void visitMethodInsn(final int opcode, final String owner, in visitMethodInsn()
89 public void visitJumpInsn(final int opcode, final Label label) { in visitJumpInsn()
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DFillArrayDataPayloadDecodedInstruction.java39 int opcode, Object data, int size, int elementWidth) { in FillArrayDataPayloadDecodedInstruction()
51 int opcode, byte[] data) { in FillArrayDataPayloadDecodedInstruction()
59 int opcode, short[] data) { in FillArrayDataPayloadDecodedInstruction()
67 int opcode, int[] data) { in FillArrayDataPayloadDecodedInstruction()
75 int opcode, long[] data) { in FillArrayDataPayloadDecodedInstruction()
/external/v8/src/wasm/
Dwasm-opcodes.cc14 const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) { in OpcodeName()
16 #define DECLARE_NAME_CASE(name, opcode, sig) \ in OpcodeName() argument
52 #define SET_SIG_TABLE(name, opcode, sig) \ in InitSigTable() argument
59 FunctionSig* WasmOpcodes::Signature(WasmOpcode opcode) { in Signature()
75 bool WasmOpcodes::IsSupported(WasmOpcode opcode) { in IsSupported()
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_info.c222 tgsi_get_opcode_info( uint opcode ) in tgsi_get_opcode_info()
242 tgsi_get_opcode_name( uint opcode ) in tgsi_get_opcode_name()
269 tgsi_opcode_infer_src_type( uint opcode ) in tgsi_opcode_infer_src_type()
317 tgsi_opcode_infer_dst_type( uint opcode ) in tgsi_opcode_infer_dst_type()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DDexBackedInstruction.java45 @Nonnull public final Opcode opcode; field in DexBackedInstruction
49 @Nonnull Opcode opcode, in DexBackedInstruction()
67 Opcode opcode = reader.dexBuf.getOpcodes().getOpcodeByValue(opcodeValue); in readFrom() local
74 …c DexBackedInstruction buildInstruction(@Nonnull DexBackedDexFile dexFile, @Nullable Opcode opcode, in buildInstruction()
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
DRop.java53 private final int opcode; field in Rop
94 public Rop(int opcode, Type result, TypeList sources, in Rop()
141 public Rop(int opcode, Type result, TypeList sources, in Rop()
159 public Rop(int opcode, Type result, TypeList sources, int branchingness, in Rop()
176 public Rop(int opcode, Type result, TypeList sources, String nickname) { in Rop()
194 public Rop(int opcode, Type result, TypeList sources, TypeList exceptions, in Rop()
210 public Rop(int opcode, TypeList sources, TypeList exceptions) { in Rop()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
DLabelFlowAnalyzer.java82 public void visitJumpInsn(final int opcode, final Label label) { in visitJumpInsn()
137 public void visitInsn(final int opcode) { in visitInsn()
158 public void visitIntInsn(final int opcode, final int operand) { in visitIntInsn()
164 public void visitVarInsn(final int opcode, final int var) { in visitVarInsn()
170 public void visitTypeInsn(final int opcode, final String type) { in visitTypeInsn()
176 public void visitFieldInsn(final int opcode, final String owner, in visitFieldInsn()
183 public void visitMethodInsn(final int opcode, final String owner, in visitMethodInsn()
/external/valgrind/VEX/priv/
Dguest_s390_helpers.c962 #define S390_CC_FOR_BINARY(opcode,cc_dep1,cc_dep2) \ argument
972 #define S390_CC_FOR_TERNARY_SUBB(opcode,cc_dep1,cc_dep2,cc_ndep) \ argument
987 #define S390_CC_FOR_TERNARY_ADDC(opcode,cc_dep1,cc_dep2,cc_ndep) \ argument
1003 #define S390_CC_FOR_BFP_RESULT(opcode,cc_dep1) \ argument
1025 #define S390_CC_FOR_BFP_CONVERT_AUX(opcode,cc_dep1,rounding_mode) \ argument
1035 #define S390_CC_FOR_BFP_CONVERT(opcode,cc_dep1,cc_dep2) \ argument
1057 #define S390_CC_FOR_BFP_UCONVERT_AUX(opcode,cc_dep1,rounding_mode) \ argument
1067 #define S390_CC_FOR_BFP_UCONVERT(opcode,cc_dep1,cc_dep2) \ argument
1089 #define S390_CC_FOR_BFP128_CONVERT_AUX(opcode,hi,lo,rounding_mode) \ argument
1101 #define S390_CC_FOR_BFP128_CONVERT(opcode,cc_dep1,cc_dep2,cc_ndep) \ argument
[all …]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DMethodAnalyzer.java125 public void visitInsn(final int opcode) { in visitInsn()
130 public void visitIntInsn(final int opcode, final int operand) { in visitIntInsn()
135 public void visitVarInsn(final int opcode, final int var) { in visitVarInsn()
140 public void visitTypeInsn(final int opcode, final String type) { in visitTypeInsn()
145 public void visitFieldInsn(final int opcode, final String owner, in visitFieldInsn()
151 public void visitMethodInsn(final int opcode, final String owner, in visitMethodInsn()
163 public void visitJumpInsn(final int opcode, final Label label) { in visitJumpInsn()
215 public void visitJumpInsnWithProbe(final int opcode, final Label label, in visitJumpInsnWithProbe()
222 public void visitInsnWithProbe(final int opcode, final int probeId) { in visitInsnWithProbe()
/external/mockito/cglib-and-asm/src/org/mockito/asm/
DMethodVisitor.java180 void visitInsn(int opcode); in visitInsn()
197 void visitIntInsn(int opcode, int operand); in visitIntInsn()
209 void visitVarInsn(int opcode, int var); in visitVarInsn()
221 void visitTypeInsn(int opcode, String type); in visitTypeInsn()
234 void visitFieldInsn(int opcode, String owner, String name, String desc); in visitFieldInsn()
248 void visitMethodInsn(int opcode, String owner, String name, String desc); in visitMethodInsn()
262 void visitJumpInsn(int opcode, Label label); in visitJumpInsn()
DMethodAdapter.java93 public void visitInsn(final int opcode) { in visitInsn()
97 public void visitIntInsn(final int opcode, final int operand) { in visitIntInsn()
101 public void visitVarInsn(final int opcode, final int var) { in visitVarInsn()
105 public void visitTypeInsn(final int opcode, final String type) { in visitTypeInsn()
110 final int opcode, in visitFieldInsn()
119 final int opcode, in visitMethodInsn()
127 public void visitJumpInsn(final int opcode, final Label label) { in visitJumpInsn()
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
DMethodVisitorTee.java61 public void visitInsn(int opcode) { in visitInsn()
66 public void visitIntInsn(int opcode, int operand) { in visitIntInsn()
71 public void visitVarInsn(int opcode, int var) { in visitVarInsn()
76 public void visitTypeInsn(int opcode, String desc) { in visitTypeInsn()
81 public void visitFieldInsn(int opcode, String owner, String name, String desc) { in visitFieldInsn()
86 public void visitMethodInsn(int opcode, String owner, String name, String desc) { in visitMethodInsn()
91 public void visitJumpInsn(int opcode, Label label) { in visitJumpInsn()
/external/mockito/cglib-and-asm/src/org/mockito/asm/util/
DASMifierMethodVisitor.java142 public void visitInsn(final int opcode) { in visitInsn()
148 public void visitIntInsn(final int opcode, final int operand) { in visitIntInsn()
160 public void visitVarInsn(final int opcode, final int var) { in visitVarInsn()
170 public void visitTypeInsn(final int opcode, final String type) { in visitTypeInsn()
179 final int opcode, in visitFieldInsn()
196 final int opcode, in visitMethodInsn()
212 public void visitJumpInsn(final int opcode, final Label label) { in visitJumpInsn()
/external/mesa3d/src/glx/
Dglx_query.c46 __glXQueryServerString(Display * dpy, int opcode, CARD32 screen, CARD32 name) in __glXQueryServerString()
70 __glXGetString(Display * dpy, int opcode, CARD32 contextTag, CARD32 name) in __glXGetString()
119 __glXGetStringFromServer(Display * dpy, int opcode, CARD32 glxCode, in __glXGetStringFromServer()
164 __glXQueryServerString(Display * dpy, int opcode, CARD32 screen, CARD32 name) in __glXQueryServerString()
171 __glXGetString(Display * dpy, int opcode, CARD32 contextTag, CARD32 name) in __glXGetString()
Dpackrender.h76 #define __GLX_BEGIN_VARIABLE(opcode,size) \ argument
83 #define __GLX_BEGIN_VARIABLE_LARGE(opcode,size) \ argument
88 #define __GLX_BEGIN_VARIABLE_WITH_PIXEL(opcode,size) \ argument
98 #define __GLX_BEGIN_VARIABLE_LARGE_WITH_PIXEL(opcode,size) \ argument
106 #define __GLX_BEGIN_VARIABLE_WITH_PIXEL_3D(opcode,size) \ argument
116 #define __GLX_BEGIN_VARIABLE_LARGE_WITH_PIXEL_3D(opcode,size) \ argument
131 #define __GLX_BEGIN(opcode,size) \ argument
/external/v8/test/unittests/compiler/
Dopcodes-unittest.cc14 bool IsCommonOpcode(IrOpcode::Value opcode) { in IsCommonOpcode()
28 bool IsControlOpcode(IrOpcode::Value opcode) { in IsControlOpcode()
41 bool IsJsOpcode(IrOpcode::Value opcode) { in IsJsOpcode()
54 bool IsConstantOpcode(IrOpcode::Value opcode) { in IsConstantOpcode()
67 bool IsComparisonOpcode(IrOpcode::Value opcode) { in IsComparisonOpcode()
/external/valgrind/none/tests/s390x/
Ddfptest.c19 #define TEST_128(opcode, d, n) \ argument
31 #define TEST_64(opcode, d, n) \ argument
43 #define TEST_32(opcode, d, n) \ argument
/external/mesa3d/src/gallium/drivers/i915/
Di915_debug_fp.c258 unsigned opcode, const unsigned * program) in print_arith_op()
292 unsigned opcode, const unsigned * program) in print_tex_op()
310 unsigned opcode, const unsigned * program) in print_texkil_op()
323 unsigned opcode, const unsigned * program) in print_dcl_op()
344 unsigned opcode = program[0] & (0x1f << 24); in i915_disassemble_program() local

12345678910>>...24