HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 326 - 350 of 1019) sorted by null

<<11121314151617181920>>

  /dalvik/vm/mterp/armv5te/
OP_FILLED_NEW_ARRAY.S 18 bne .L${opcode}_continue @ yes, continue on
25 b .L${opcode}_continue
33 .L${opcode}_continue:
46 bne .L${opcode}_notimpl @ no, not handled yet
88 GET_INST_OPCODE(ip) @ ip<- opcode from rINST
97 .L${opcode}_notimpl:
98 ldr r0, .L_strFilledNewArrayNotImpl_${opcode}
108 .L_strFilledNewArrayNotImpl_${opcode}:
  /dalvik/vm/mterp/mips/
OP_AGET_WIDE.S 20 .L${opcode}_finish:
24 GET_INST_OPCODE(t0) # extract opcode from rINST
  /dalvik/vm/mterp/x86/
OP_CONST_CLASS.S 12 je .L${opcode}_resolve
20 .L${opcode}_resolve:
OP_CONST_STRING.S 13 je .L${opcode}_resolve
20 .L${opcode}_resolve:
OP_CONST_STRING_JUMBO.S 13 je .L${opcode}_resolve
20 .L${opcode}_resolve:
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
VariableSizeInsn.java 40 public final DalvInsn withOpcode(Dop opcode) {
ZeroSizeInsn.java 53 public final DalvInsn withOpcode(Dop opcode) {
  /external/openssl/crypto/perlasm/
x86asm.pl 16 # each opcode...
18 { my $opcode = $AUTOLOAD;
20 die "more than 4 arguments passed to $opcode" if ($#_>3);
22 $opcode =~ s/.*:://;
23 if ($opcode =~ /^push/) { $stack+=4; }
24 elsif ($opcode =~ /^pop/) { $stack-=4; }
26 &generic($opcode,@_) or die "undefined subroutine \&$AUTOLOAD";
30 { my $opcode=shift;
32 if ($#_==-1) { push(@out,"\t$opcode\n"); }
33 else { push(@out,"\t$opcode\t".join(',',@_)."\n");
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
UnresolvedOdexInstruction.java 45 super(originalInstruction.opcode);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/
ebt_arp.h 21 __be16 opcode; member in struct:ebt_arp_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_arp.h 21 __be16 opcode; member in struct:ebt_arp_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_arp.h 21 __be16 opcode; member in struct:ebt_arp_info
  /dalvik/dx/src/com/android/dx/io/instructions/
DecodedInstruction.java 28 * numeric opcode, an optional index type, and any additional
43 /** opcode number */
44 private final int opcode; field in class:DecodedInstruction
71 int opcode = Opcodes.extractOpcodeFromUnit(opcodeUnit); local
72 InstructionCodec format = OpcodeInfo.getFormat(opcode);
101 public DecodedInstruction(InstructionCodec format, int opcode,
107 if (!Opcodes.isValidShape(opcode)) {
108 throw new IllegalArgumentException("invalid opcode");
112 this.opcode = opcode;
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DecodedInstruction.java 28 * numeric opcode, an optional index type, and any additional
43 /** opcode number */
44 private final int opcode; field in class:DecodedInstruction
71 int opcode = Opcodes.extractOpcodeFromUnit(opcodeUnit); local
72 InstructionCodec format = OpcodeInfo.getFormat(opcode);
101 public DecodedInstruction(InstructionCodec format, int opcode,
107 if (!Opcodes.isValidShape(opcode)) {
108 throw new IllegalArgumentException("invalid opcode");
112 this.opcode = opcode;
    [all...]
  /external/grub/netboot/
fsys_tftp.c 104 if (tr->opcode == ntohs (TFTP_ERROR))
112 if (tr->opcode == ntohs (TFTP_OACK))
162 tp.opcode = htons (TFTP_ERROR);
167 + sizeof (tp.opcode) + sizeof (tp.u.err.errcode)
189 else if (tr->opcode == ntohs (TFTP_DATA))
216 tp.opcode = abort ? htons (TFTP_ERROR) : htons (TFTP_ACK);
338 grub_printf ("opcode = 0x%x, rrq = ", (unsigned long) tp.opcode);
429 tp.opcode = htons (TFTP_RRQ);
436 + sizeof (tp.ip) + sizeof (tp.udp) + sizeof (tp.opcode) + 1)
    [all...]
  /external/javassist/src/main/javassist/bytecode/
InstructionPrinter.java 26 public class InstructionPrinter implements Opcode {
28 private final static String opcodes[] = Mnemonic.OPCODE;
60 int opcode = iter.byteAt(pos); local
62 if (opcode > opcodes.length || opcode < 0)
63 throw new IllegalArgumentException("Invalid opcode, opcode: " + opcode + " pos: "+ pos);
65 String opstring = opcodes[opcode];
66 switch (opcode) {
149 int opcode = iter.byteAt(pos + 1); local
    [all...]
  /external/proguard/src/proguard/optimize/
TailRecursionSimplifier.java 155 switch (constantInstruction.opcode)
173 switch (nextInstruction.opcode)
289 byte opcode;
297 opcode = InstructionConstants.OP_ISTORE;
301 opcode = InstructionConstants.OP_LSTORE;
305 opcode = InstructionConstants.OP_FSTORE;
309 opcode = InstructionConstants.OP_DSTORE;
313 opcode = InstructionConstants.OP_ASTORE;
318 new VariableInstruction(opcode, parameterOffset + parameterIndex).shrink());
  /external/smali/smali/src/main/antlr3/
smaliTreeWalker.g 865 throw new SemanticException(input, $I_REGISTER_LIST, "A list of registers can only have a maximum of 5 registers. Use the <op>/range alternate opcode instead.");
    [all...]
  /external/tcpdump/
print-rx.c 383 * Cache entries we keep around so we can figure out the RX opcode
393 u_int32_t opcode; /* RX opcode (host order) */ member in struct:rx_cache_entry
439 int32_t opcode; local
541 sport, &opcode)) {
545 fs_reply_print(bp, length, opcode);
548 cb_reply_print(bp, length, opcode);
551 prot_reply_print(bp, length, opcode);
554 vldb_reply_print(bp, length, opcode);
557 kauth_reply_print(bp, length, opcode);
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
mux.py 154 def _create_control_block_length_value(channel_id, opcode, flags, value):
155 """Creates a control block that consists of objective channel id, opcode,
156 flags, encoded length of opcode specific value, and the value.
161 opcode: opcode of the control block.
162 flags: 3bit opcode specific flags.
163 value: opcode specific data.
168 if (opcode != _MUX_OPCODE_ADD_CHANNEL_REQUEST and
169 opcode != _MUX_OPCODE_ADD_CHANNEL_RESPONSE and
170 opcode != _MUX_OPCODE_DROP_CHANNEL)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 124 "top-of-stack for opcode");
152 * what opcode variant is used to achieve that result.</p>
226 public void visitInvalid(int opcode, int offset, int length) {
227 throw new SimException("invalid opcode " + Hex.u1(opcode));
231 public void visitNoArgs(int opcode, int offset, int length,
233 switch (opcode) {
402 if (opcode == ByteOps.DUP2) {
516 visitInvalid(opcode, offset, length);
522 machine.run(frame, offset, opcode);
    [all...]
  /dalvik/vm/compiler/
Loop.cpp 89 ALOGE(" opcode %d", loopAnalysis->loopBranchOpcode);
122 static Opcode negateOpcode(Opcode opcode)
124 switch (opcode) {
152 ALOGE("opcode %d cannot be negated", opcode);
156 return (Opcode)-1; // unreached
207 Opcode opcode = branch->dalvikInsn.opcode local
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_CMPL_DOUBLE.S 21 bhi .L${opcode}_gt_or_nan @ C set and Z clear, disambiguate
30 .L${opcode}_gt_or_nan:
  /dalvik/vm/mterp/arm-vfp/
fbinop2addr.S 19 GET_INST_OPCODE(ip) @ extract opcode from rINST
fbinopWide2addr.S 20 GET_INST_OPCODE(ip) @ extract opcode from rINST

Completed in 1845 milliseconds

<<11121314151617181920>>