Searched defs:opcode (Results 226 - 250 of 638) sorted by relevance

1234567891011>>

/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_element_type_converter.cc125 const auto opcode = hlo->opcode(); local
127 if (opcode == HloOpcode::kParameter || opcode == HloOpcode::kConstant ||
128 opcode == HloOpcode::kTuple || opcode == HloOpcode::kConvert ||
129 opcode == HloOpcode::kGetTupleElement ||
130 opcode == HloOpcode::kInfeed || opcode == HloOpcode::kOutfeed) {
136 if (opcode
[all...]
H A Dhlo_evaluator.cc61 StatusOr<std::unique_ptr<Literal>> Compare(const Shape& shape, HloOpcode opcode, argument
65 switch (opcode) {
97 LOG(FATAL) << "unhandled HLO opcode for conversion to Comparison: "
98 << HloOpcodeString(opcode);
113 const Shape& shape, HloOpcode opcode, const Literal& lhs_literal,
116 switch (opcode) {
128 LOG(FATAL) << "unhandled HLO opcode for conversion to Comparison: "
129 << HloOpcodeString(opcode);
232 HloOpcodeString(hlo_instruction->opcode()).c_str());
2120 if (operand->opcode()
112 Compare( const Shape& shape, HloOpcode opcode, const Literal& lhs_literal, const Literal& rhs_literal) argument
[all...]
H A Dhlo_matchers.h27 HloMatcher(HloOpcode opcode, argument
29 : opcode_(opcode), operands_(operands) {}
89 // HloInstruction* matchers for opcode and operands. Example:
94 #define HLO_MATCHER(opcode) \
96 ::testing::Matcher<const ::xla::HloInstruction*> opcode(M... operands) { \
98 ::xla::HloOpcode::k##opcode, {operands...})); \
169 // HloInstruction, beyond just its opcode and operands. In all cases you can
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dtest_utils.cc151 return root->opcode() == HloOpcode::kAdd &&
153 root->operand(0)->opcode() == HloOpcode::kParameter &&
154 root->operand(1)->opcode() == HloOpcode::kParameter &&
162 const HloOpcode opcode = instruction->opcode(); local
165 ((opcode == HloOpcode::kReduce || opcode == HloOpcode::kReduceWindow) &&
167 (opcode == HloOpcode::kSelectAndScatter && op_num == 2 &&
199 const HloOpcode opcode = instruction->opcode(); local
[all...]
/external/wayland/src/
H A Dwayland-private.h146 uint32_t opcode; member in struct:wl_closure
177 uint32_t opcode, union wl_argument *args,
182 uint32_t opcode, va_list ap,
201 struct wl_object *target, uint32_t opcode, void *data);
205 struct wl_object *target, uint32_t opcode);
/external/ImageMagick/coders/
H A Drle.c146 opcode,
356 opcode=ReadBlobByte(image);
359 switch (opcode & 0x3f)
364 if (opcode & 0x40)
382 if (opcode & 0x40)
390 if (opcode & 0x40)
420 if (opcode & 0x40)
449 opcode=ReadBlobByte(image);
450 } while (((opcode & 0x3f) != EOFOp) && (opcode !
143 opcode, local
[all...]
/external/annotation-tools/annotation-file-utilities/src/annotator/scanner/
H A DMethodOffsetClassVisitor.java95 public void visitTypeInsn(int opcode, String desc) { argument
96 super.visitTypeInsn(opcode, desc);
97 switch (opcode) {
112 mcoa.visitTypeInsn(opcode, desc);
123 public void visitIntInsn(int opcode, int operand) { argument
124 super.visitIntInsn(opcode, operand);
125 if (opcode == Opcodes.NEWARRAY) {
128 mcoa.visitIntInsn(opcode, operand);
132 public void visitMethodInsn(int opcode, String owner, String name, argument
134 super.visitMethodInsn(opcode, owne
164 visitInsn(int opcode) argument
170 visitVarInsn(int opcode, int var) argument
176 visitFieldInsn(int opcode, String owner, String name, String desc) argument
183 visitJumpInsn(int opcode, Label label) argument
[all...]
/external/annotation-tools/asmx/src/org/objectweb/asm/
H A DMethodAdapter.java92 public void visitInsn(final int opcode) { argument
93 mv.visitInsn(opcode);
96 public void visitIntInsn(final int opcode, final int operand) { argument
97 mv.visitIntInsn(opcode, operand);
100 public void visitVarInsn(final int opcode, final int var) { argument
101 mv.visitVarInsn(opcode, var);
104 public void visitTypeInsn(final int opcode, final String desc) { argument
105 mv.visitTypeInsn(opcode, desc);
109 final int opcode,
114 mv.visitFieldInsn(opcode, owne
108 visitFieldInsn( final int opcode, final String owner, final String name, final String desc) argument
117 visitMethodInsn( final int opcode, final String owner, final String name, final String desc) argument
136 visitJumpInsn(final int opcode, final Label label) argument
[all...]
H A DMethodVisitor.java105 * @param opcode the opcode of the instruction to be visited. This opcode is
120 void visitInsn(int opcode); argument
125 * @param opcode the opcode of the instruction to be visited. This opcode is
128 * When opcode is BIPUSH, operand value should be between
130 * When opcode is SIPUSH, operand value should be between
132 * When opcode i
138 visitIntInsn(int opcode, int operand) argument
150 visitVarInsn(int opcode, int var) argument
162 visitTypeInsn(int opcode, String desc) argument
175 visitFieldInsn(int opcode, String owner, String name, String desc) argument
189 visitMethodInsn(int opcode, String owner, String name, String desc) argument
222 visitJumpInsn(int opcode, Label label) argument
[all...]
H A DType.java812 * Returns a JVM instruction opcode adapted to this Java type. This method
815 * @param opcode
816 * a JVM instruction opcode. This opcode must be one of ILOAD,
819 * @return an opcode that is similar to the given opcode, but adapted to
821 * <tt>opcode</tt> is IRETURN, this method returns FRETURN.
823 public int getOpcode(final int opcode) { argument
824 if (opcode == Opcodes.IALOAD || opcode
[all...]
/external/annotation-tools/asmx/src/org/objectweb/asm/commons/
H A DAdviceAdapter.java106 public void visitInsn(int opcode) { argument
108 switch (opcode) {
110 onMethodExit(opcode);
119 onMethodExit(opcode);
126 onMethodExit(opcode);
328 switch (opcode) {
336 onMethodExit(opcode);
340 mv.visitInsn(opcode);
343 public void visitVarInsn(int opcode, int var) { argument
344 super.visitVarInsn(opcode, va
374 visitFieldInsn( int opcode, String owner, String name, String desc) argument
414 visitIntInsn(int opcode, int operand) argument
448 visitTypeInsn(int opcode, String name) argument
457 visitMethodInsn( int opcode, String owner, String name, String desc) argument
504 visitJumpInsn(int opcode, Label label) argument
638 onMethodExit(int opcode) argument
[all...]
/external/annotation-tools/asmx/src/org/objectweb/asm/util/
H A DASMifierMethodVisitor.java96 public void visitInsn(final int opcode) { argument
98 buf.append("mv.visitInsn(").append(OPCODES[opcode]).append(");\n");
103 public void visitIntInsn(final int opcode, final int operand) { argument
106 .append(OPCODES[opcode])
108 .append(opcode == Opcodes.NEWARRAY
116 public void visitVarInsn(final int opcode, final int var) { argument
119 .append(OPCODES[opcode])
127 public void visitTypeInsn(final int opcode, final String desc) { argument
129 buf.append("mv.visitTypeInsn(").append(OPCODES[opcode]).append(", ");
137 final int opcode,
136 visitFieldInsn( final int opcode, final String owner, final String name, final String desc) argument
154 visitMethodInsn( final int opcode, final String owner, final String name, final String desc) argument
186 visitJumpInsn(final int opcode, final Label label) argument
[all...]
/external/annotation-tools/scene-lib/src/annotations/io/classfile/
H A DMethodCodeOffsetAdapter.java48 public void visitFieldInsn(int opcode, argument
50 super.visitFieldInsn(opcode, owner, name, desc);
61 public void visitInsn(int opcode) { argument
62 super.visitInsn(opcode);
67 public void visitIntInsn(int opcode, int operand) { argument
68 super.visitIntInsn(opcode, operand);
69 offset += opcode == Opcodes.SIPUSH ? 3 : 2;
80 public void visitJumpInsn(int opcode, Label label) { argument
81 super.visitJumpInsn(opcode, label);
100 public void visitMethodInsn(int opcode, argument
121 visitTypeInsn(int opcode, String desc) argument
127 visitVarInsn(int opcode, int var) argument
[all...]
/external/capstone/bindings/java/capstone/
H A DX86.java71 public byte [] opcode; field in class:X86.UnionOpInfo
91 opcode = new byte[4];
97 return Arrays.asList("prefix", "opcode", "rex", "addr_size",
104 public byte [] opcode; field in class:X86.OpInfo
125 opcode = e.opcode;
/external/desugar/java/com/google/devtools/build/android/desugar/
H A DJava7Compatibility.java126 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { argument
127 if (itf && opcode == Opcodes.INVOKESTATIC) {
148 super.visitMethodInsn(opcode, owner, name, desc, itf);
158 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { argument
159 if (opcode == Opcodes.INVOKESTATIC
168 super.visitMethodInsn(opcode, owner, name, desc, itf);
256 public void visitInsn(int opcode) { argument
257 switch (opcode) {
264 checkState(mv != null, "Encountered a second return it would seem: %s", opcode);
268 super.visitInsn(opcode);
273 visitVarInsn(int opcode, int var) argument
[all...]
H A DLambdaClassFixer.java247 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { argument
252 checkArgument(opcode == Opcodes.INVOKESTATIC, "Cannot move instance method %s", method);
267 super.visitMethodInsn(opcode, owner, name, desc, itf);
271 public void visitTypeInsn(int opcode, String type) { argument
276 super.visitTypeInsn(opcode, type);
280 public void visitFieldInsn(int opcode, String owner, String name, String desc) { argument
285 super.visitFieldInsn(opcode, owner, name, desc);
307 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { argument
308 if (opcode == Opcodes.INVOKESPECIAL && name.startsWith("lambda$")) {
309 opcode
422 visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) argument
459 visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) argument
[all...]
H A DTryWithResourcesRewriter.java236 String currentClassInternalName, int opcode, String owner, String name, String desc) {
237 if (opcode != INVOKESTATIC) {
283 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { argument
284 if (isCallToSyntheticCloseResource(internalName, opcode, owner, name, desc)) {
328 opcode,
336 if (!isMethodCallTargeted(opcode, owner, name, desc)) {
337 super.visitMethodInsn(opcode, owner, name, desc, itf);
346 private boolean isMethodCallTargeted(int opcode, String owner, String name, String desc) { argument
347 if (opcode != INVOKEVIRTUAL) {
417 int opcode, Strin
235 isCallToSyntheticCloseResource( String currentClassInternalName, int opcode, String owner, String name, String desc) argument
[all...]
/external/desugar/test/java/com/google/devtools/build/android/desugar/
H A DTryWithResourcesRewriterTest.java324 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { argument
326 if ((opcode == INVOKEVIRTUAL && isAssignableToThrowable(owner))
327 || (opcode == INVOKESTATIC
/external/dng_sdk/source/
H A Ddng_opcodes.cpp231 // We should never need to apply an unknown opcode.
255 dng_filter_opcode_task (dng_filter_opcode &opcode, argument
263 , fOpcode (opcode)
272 fSrcRepeat = opcode.SrcRepeat ();
431 dng_inplace_opcode_task (dng_inplace_opcode &opcode, argument
437 , fOpcode (opcode)
440 , fPixelType (opcode.BufferPixelType (image.PixelType ()))
/external/elfutils/libdw/
H A Ddwarf_getmacros.c217 unsigned opcode = *readp++; local
224 op_protos[opcode - 1] = e;
242 a value that means that given opcode is not stored at all. But
243 that should be fine, as opcode 0 is not allocated. */
333 unsigned int opcode = *readp++; local
334 if (opcode == 0)
338 if (unlikely (opcode == 0xff && ! accept_0xff))
346 unsigned int idx = table->opcodes[opcode - 1];
404 .opcode = opcode,
[all...]
/external/guice/core/src/com/google/inject/internal/util/
H A DLineNumbers.java193 public void visitFieldInsn(int opcode, String owner, String name, argument
195 if (opcode == Opcodes.PUTFIELD && LineNumberReader.this.name.equals(owner)
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
H A DLabelFlowAnalyzer.java82 public void visitJumpInsn(final int opcode, final Label label) { argument
84 if (opcode == Opcodes.JSR) {
87 successor = opcode != Opcodes.GOTO;
137 public void visitInsn(final int opcode) { argument
138 switch (opcode) {
158 public void visitIntInsn(final int opcode, final int operand) { argument
164 public void visitVarInsn(final int opcode, final int var) { argument
170 public void visitTypeInsn(final int opcode, final String type) { argument
176 public void visitFieldInsn(final int opcode, final String owner, argument
183 public void visitMethodInsn(final int opcode, fina argument
[all...]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
H A DDuplicateFrameEliminator.java43 public void visitInsn(final int opcode) { argument
45 mv.visitInsn(opcode);
49 public void visitIntInsn(final int opcode, final int operand) { argument
51 mv.visitIntInsn(opcode, operand);
55 public void visitVarInsn(final int opcode, final int var) { argument
57 mv.visitVarInsn(opcode, var);
61 public void visitTypeInsn(final int opcode, final String type) { argument
63 mv.visitTypeInsn(opcode, type);
67 public void visitFieldInsn(final int opcode, final String owner, argument
70 mv.visitFieldInsn(opcode, owne
74 visitMethodInsn(final int opcode, final String owner, final String name, final String desc, final boolean itf) argument
88 visitJumpInsn(final int opcode, final Label label) argument
[all...]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
H A DClassProbesAdapterTest.java34 public void visitJumpInsnWithProbe(int opcode, Label label, argument
H A DMethodProbesAdapterTest.java60 public void visitInsnWithProbe(int opcode, int probeId) { argument
61 rec("visitInsnWithProbe", Integer.valueOf(opcode),
66 public void visitJumpInsnWithProbe(int opcode, Label label, argument
68 rec("visitJumpInsnWithProbe", Integer.valueOf(opcode), label,

Completed in 372 milliseconds

1234567891011>>