HomeSort by relevance Sort by last modified time
    Searched full:opcode (Results 476 - 500 of 2817) sorted by null

<<11121314151617181920>>

  /dalvik/vm/mterp/armv5te/
OP_MOVE_WIDE_FROM16.S 10 GET_INST_OPCODE(ip) @ extract opcode from rINST
  /dalvik/vm/mterp/armv6t2/
OP_ARRAY_LENGTH.S 12 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_MOVE_WIDE.S 10 GET_INST_OPCODE(ip) @ extract opcode from rINST
  /dalvik/vm/mterp/mips/
OP_CONST_WIDE.S 14 GET_INST_OPCODE(t0) # extract opcode from rINST
OP_FILL_ARRAY_DATA.S 15 GET_INST_OPCODE(t0) # extract opcode from rINST
OP_GOTO_16.S 20 GET_INST_OPCODE(t0) # extract opcode from rINST
OP_IGET_QUICK.S 14 GET_INST_OPCODE(t0) # extract opcode from rINST
OP_IGET_WIDE_QUICK.S 14 GET_INST_OPCODE(t0) # extract opcode from rINST
OP_IPUT_QUICK.S 14 GET_INST_OPCODE(t0) # extract opcode from rINST
OP_MOVE_WIDE.S 10 GET_INST_OPCODE(t0) # extract opcode from rINST
OP_MOVE_WIDE_16.S 10 GET_INST_OPCODE(t0) # extract opcode from rINST
OP_MOVE_WIDE_FROM16.S 10 GET_INST_OPCODE(t0) # extract opcode from rINST
  /dalvik/vm/mterp/x86/
OP_APUT_OBJECT.S 26 je .L${opcode}_skip_check
41 jne .L${opcode}_types_okay
52 .L${opcode}_types_okay:
62 .L${opcode}_skip_check:
OP_INVOKE_DIRECT.S 28 je .L${opcode}_resolve # not resolved, do it now
29 .L${opcode}_finish:
40 .L${opcode}_resolve:
52 jne .L${opcode}_finish
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
OpCodes.java 315 /** The low opcode for nodesets, needed by getFirstPredicateOpPos and
383 /** The last opcode for stuff that can be a nodeset. */
567 /** ancestor axes opcode. */
570 /** ancestor-or-self axes opcode. */
573 /** attribute axes opcode. */
576 /** children axes opcode. */
579 /** descendants axes opcode. */
582 /** descendants-of-self axes opcode. */
585 /** following axes opcode. */
588 /** following-siblings axes opcode. *
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
rbug_proto.h 76 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/chromium_org/third_party/re2/re2/
prog.cc 15 // Constructors per Inst opcode
60 switch (opcode()) {
62 return StringPrintf("opcode %d", static_cast<int>(opcode()));
142 if (ip->opcode() == kInstAlt || ip->opcode() == kInstAltMatch)
187 while (j != 0 && (jp=inst(j))->opcode() == kInstNop) {
193 if (ip->opcode() == kInstAlt) {
195 while (j != 0 && (jp=inst(j))->opcode() == kInstNop) {
216 if (ip->opcode() == kInstAlt
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
FixedSizeInsn.java 39 * @param opcode the opcode; one of the constants from {@link Dops}
45 public FixedSizeInsn(Dop opcode, SourcePosition position,
47 super(opcode, position, registers);
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 25 import javassist.bytecode.Opcode;
32 public class Executor implements Opcode {
68 int opcode = iter.byteAt(pos); local
71 // Declared opcode in order
72 switch (opcode) {
132 evalLoad(Type.INTEGER, opcode - ILOAD_0, frame, subroutine);
138 evalLoad(Type.LONG, opcode - LLOAD_0, frame, subroutine);
144 evalLoad(Type.FLOAT, opcode - FLOAD_0, frame, subroutine);
150 evalLoad(Type.DOUBLE, opcode - DLOAD_0, frame, subroutine);
156 evalLoad(Type.OBJECT, opcode - ALOAD_0, frame, subroutine)
830 int opcode = iter.byteAt(pos); local
879 int opcode = iter.byteAt(pos + 1); local
    [all...]
  /external/llvm/test/TableGen/
DefmInsideMultiClass.td 4 bits<4> opcode = opc;
LetInsideMultiClasses.td 4 bits<4> opcode = opc;
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_proto.h 76 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/oprofile/opjitconv/
debug_line.c 52 /* Adding new opcode needs an update of the standard_opcode_length
101 // number of opcode + 1
103 /* follow the array of opcode args nr: ubytes [nr_opcode_base] */
198 static void emit_extended_opcode(struct growable_buffer * b, ubyte opcode,
203 add_data(b, &opcode, 1);
208 static void emit_opcode(struct growable_buffer * b, ubyte opcode)
210 add_data(b, &opcode, 1);
215 ubyte opcode, long data)
217 add_data(b, &opcode, 1);
222 static void emit_opcode_unsigned(struct growable_buffer * b, ubyte opcode,
295 unsigned long opcode = temp + local
    [all...]
  /external/proguard/src/proguard/classfile/visitor/
DotClassClassVisitor.java 69 byte opcode = constantInstruction.opcode;
72 if (opcode == InstructionConstants.OP_LDC ||
73 opcode == InstructionConstants.OP_LDC_W)
  /external/regex-re2/re2/
prog.cc 15 // Constructors per Inst opcode
60 switch (opcode()) {
62 return StringPrintf("opcode %d", static_cast<int>(opcode()));
142 if (ip->opcode() == kInstAlt || ip->opcode() == kInstAltMatch)
187 while (j != 0 && (jp=inst(j))->opcode() == kInstNop) {
193 if (ip->opcode() == kInstAlt) {
195 while (j != 0 && (jp=inst(j))->opcode() == kInstNop) {
216 if (ip->opcode() == kInstAlt
    [all...]

Completed in 466 milliseconds

<<11121314151617181920>>