Searched defs:opcode (Results 176 - 200 of 638) sorted by relevance

1234567891011>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableInstruction35ms.java52 public ImmutableInstruction35ms(@Nonnull Opcode opcode, argument
60 super(opcode);
/external/swiftshader/src/Shader/
H A DPixelPipeline.cpp75 Shader::Opcode opcode = instruction->opcode; local
81 if(opcode == Shader::OPCODE_DCL || opcode == Shader::OPCODE_DEF || opcode == Shader::OPCODE_DEFI || opcode == Shader::OPCODE_DEFB)
109 switch(opcode)
213 if(dst.type != Shader::PARAMETER_VOID && opcode != Shader::OPCODE_TEXKILL)
/external/tcpdump/
H A Dprint-tftp.c95 register int opcode; local
105 opcode = EXTRACT_16BITS(bp);
106 cp = tok2str(op2str, "tftp-#%d", opcode);
108 /* Bail if bogus opcode */
114 switch (opcode) {
196 ND_PRINT((ndo, "(unknown #%d)", opcode));
/external/v8/src/compiler/
H A Doperator.cc27 Operator::Operator(Opcode opcode, Properties properties, const char* mnemonic, argument
30 : opcode_(opcode),
/external/v8/src/wasm/
H A Dwasm-text.cc87 WasmOpcode opcode = i.current(); local
88 if (opcode == kExprElse || opcode == kExprEnd) --control_depth;
102 switch (opcode) {
108 os << WasmOpcodes::OpcodeName(opcode);
118 os << WasmOpcodes::OpcodeName(opcode) << ' ' << operand.depth;
151 os << WasmOpcodes::OpcodeName(opcode) << ' ' << operand.index;
157 os << WasmOpcodes::OpcodeName(opcode) << ' ' << operand.index;
171 #define CASE_OPCODE(opcode, _, __) case kExpr##opcode
[all...]
/external/vixl/examples/aarch32/
H A Dcustom-aarch32-disasm.cc87 virtual void PrintOpcode16(uint32_t opcode) VIXL_OVERRIDE {
89 USE(opcode); variable
91 virtual void PrintOpcode32(uint32_t opcode) VIXL_OVERRIDE {
93 USE(opcode); variable
/external/wayland/tests/
H A Dprotocol-logger-test.c58 int opcode; member in struct:message
65 .opcode = 0,
72 .opcode = 0,
79 .opcode = 1,
94 assert(msg->opcode == message->message_opcode);
/external/annotation-tools/asmx/src/org/objectweb/asm/optimizer/
H A DMethodConstantsCollector.java92 public void visitTypeInsn(final int opcode, final String desc) { argument
94 mv.visitTypeInsn(opcode, desc);
98 final int opcode,
104 mv.visitFieldInsn(opcode, owner, name, desc);
108 final int opcode,
113 boolean itf = opcode == Opcodes.INVOKEINTERFACE;
115 mv.visitMethodInsn(opcode, owner, name, desc);
97 visitFieldInsn( final int opcode, final String owner, final String name, final String desc) argument
107 visitMethodInsn( final int opcode, final String owner, final String name, final String desc) argument
/external/annotation-tools/asmx/src/org/objectweb/asm/tree/
H A DAbstractInsnNode.java124 * The opcode of this instruction.
126 protected int opcode; field in class:AbstractInsnNode
153 * @param opcode the opcode of the instruction to be constructed.
155 protected AbstractInsnNode(final int opcode) { argument
156 this.opcode = opcode;
160 * Returns the opcode of this instruction.
162 * @return the opcode of this instruction.
165 return opcode;
[all...]
/external/boringssl/src/ssl/test/
H A Dpacketed_bio.cc112 // Read the opcode.
113 uint8_t opcode; local
114 int ret = ReadAll(bio->next_bio, &opcode, sizeof(opcode));
120 if (opcode == kOpcodeTimeout) {
159 if (opcode != kOpcodePacket) {
160 fprintf(stderr, "Unknown opcode, %u\n", opcode);
/external/capstone/bindings/ocaml/
H A Dx86.ml31 opcode: int array; Record field in type:cs_x86
/external/desugar/java/com/google/devtools/build/android/desugar/
H A DCloseResourceMethodScanner.java98 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { argument
101 internalName, opcode, owner, name, desc)) {
112 public void visitJumpInsn(int opcode, Label label) { argument
/external/elfutils/libdw/
H A Dcfi.c130 uint8_t opcode = *program++; local
134 Dwarf_Word operand = opcode & CFI_PRIMARY_MAX;
135 switch (opcode)
305 if (unlikely (abi_cfi) && likely (opcode == DW_CFA_restore))
/external/iptables/utils/
H A Dnfsynproxy.c48 int opcode = *ptr++; local
51 switch (opcode) {
64 switch (opcode) {
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
H A DMethodProbesAdapter.java97 public void visitInsn(final int opcode) { argument
98 switch (opcode) {
106 probesVisitor.visitInsnWithProbe(opcode, idGenerator.nextId());
109 probesVisitor.visitInsn(opcode);
115 public void visitJumpInsn(final int opcode, final Label label) { argument
117 probesVisitor.visitJumpInsnWithProbe(opcode, label,
118 idGenerator.nextId(), frame(jumpPopCount(opcode)));
120 probesVisitor.visitJumpInsn(opcode, label);
124 private int jumpPopCount(final int opcode) { argument
125 switch (opcode) {
[all...]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
H A DProbeInserter.java98 public final void visitVarInsn(final int opcode, final int var) { argument
99 mv.visitVarInsn(opcode, map(var));
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
H A DLabelFlowAnalyzerTest.java256 private void testInsn(int opcode, boolean expected) { argument
260 analyzer.visitInsn(opcode);
344 private void testJumpInsn(int opcode, boolean expected) { argument
348 analyzer.visitJumpInsn(opcode, label);
/external/javassist/src/main/javassist/expr/
H A DFieldAccess.java27 int opcode; field in class:FieldAccess
32 opcode = op;
64 return isStatic(opcode);
75 return opcode == Opcode.GETFIELD || opcode == Opcode.GETSTATIC;
82 return opcode == Opcode.PUTFIELD || opcode == Opcode.PUTSTATIC;
186 jc.recordProceed(new ProceedForRead(retType, opcode,
191 jc.recordProceed(new ProceedForWrite(params[0], opcode,
226 int opcode; field in class:FieldAccess.ProceedForRead
274 int opcode; field in class:FieldAccess.ProceedForWrite
[all...]
H A DNewArray.java30 int opcode; field in class:NewArray
35 opcode = op;
80 if (opcode == Opcode.NEWARRAY) {
84 else if (opcode == Opcode.ANEWARRAY
85 || opcode == Opcode.MULTIANEWARRAY) {
93 throw new RuntimeException("bad opcode: " + opcode);
123 if (opcode == Opcode.NEWARRAY)
125 else if (opcode == Opcode.ANEWARRAY
126 || opcode
242 int opcode; field in class:NewArray.ProceedForArray
[all...]
/external/kernel-headers/original/uapi/linux/can/
H A Dbcm.h58 * @opcode: opcode, see enum below.
68 __u32 opcode; member in struct:bcm_msg_head
/external/kernel-headers/original/uapi/linux/
H A Dnvme_ioctl.h22 __u8 opcode; member in struct:nvme_user_io
37 __u8 opcode; member in struct:nvme_passthru_cmd
/external/libpcap/
H A Dpcap-bt-monitor-linux.c57 uint16_t opcode; member in struct:hci_mon_hdr
130 bthdr->opcode = htons(hdr.opcode);
/external/mesa3d/src/compiler/nir/
H A Dnir_opcodes.py28 # Class that represents all the information we have about the opcode
32 """Class that represents all the information we have about the opcode
39 - name is the name of the opcode (prepend nir_op_ for the enum name)
45 constant value of the opcode given the constant values of its inputs.
107 def opcode(name, output_size, output_type, input_sizes, input_types, function
114 opcode(name, 0, out_type, [0], [in_type], "", const_expr)
117 opcode(name, 0, ty, [0], [ty], "", const_expr)
121 opcode(name, output_size, output_type, [input_size], [input_type], "",
344 opcode(name, 0, out_type, [0, 0], [in_type, in_type], alg_props, const_expr)
354 opcode(nam
[all...]
/external/mesa3d/src/gallium/auxiliary/rbug/
H A Drbug_proto.h76 enum rbug_opcode opcode; member in struct:rbug_header
85 int32_t opcode; member in struct:rbug_proto_header
95 * Get printable string for opcode.
97 const char* rbug_proto_get_name(enum rbug_opcode opcode);
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_info.h39 /* This enum describes how an opcode calculates its result. */
41 /** The opcode produces no result. */
44 /** When this opcode writes to a channel of the destination register,
52 /** This opcode writes the same value to all enabled channels of the
59 /** The operation performed by this opcode is dependent on which channel
83 uint opcode; member in struct:tgsi_opcode_info
87 tgsi_get_opcode_info( uint opcode );
90 tgsi_get_opcode_name( uint opcode );
115 tgsi_opcode_infer_src_type( uint opcode );
118 tgsi_opcode_infer_dst_type( uint opcode );
[all...]

Completed in 617 milliseconds

1234567891011>>