Searched refs:opcode (Results 76 - 100 of 375) sorted by relevance

1234567891011>>

/external/elfutils/libdw/
H A Ddwarf_getmacros.c91 unsigned int opcode = *readp++; local
97 switch (opcode)
137 mac.opcode = opcode;
H A Ddwarf_getsrclines.c211 /* The opcode base. */
214 /* Remember array with the standard opcode length (-1 to account for
215 the opcode with value zero not being mentioned). */
361 unsigned int opcode; local
365 /* Read the opcode. */
366 opcode = *linep++;
368 /* Is this a special opcode? */
369 if (likely (opcode >= opcode_base))
371 /* Yes. Handling this is quite easy since the opcode value
374 opcode
[all...]
/external/libnfc-nci/src/nfc/int/
H A Dtags_int.h35 UINT8 opcode; member in struct:__anon7925
65 UINT8 opcode; member in struct:__anon7928
76 extern const tT1T_CMD_RSP_INFO * t1t_cmd_to_rsp_info (UINT8 opcode);
82 extern const tT2T_CMD_RSP_INFO * t2t_cmd_to_rsp_info (UINT8 opcode);
/external/proguard/src/proguard/classfile/visitor/
H A DDotClassClassVisitor.java69 byte opcode = constantInstruction.opcode;
72 if (opcode == InstructionConstants.OP_LDC ||
73 opcode == InstructionConstants.OP_LDC_W)
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
H A DInstruction35ms.java50 public Instruction35ms(Opcode opcode, int regCount, byte regD, byte regE, byte regF, byte regG, argument
52 super(opcode);
78 private Instruction35ms(Opcode opcode, byte[] buffer, int bufferIndex) { argument
79 super(opcode);
91 out.writeByte(opcode.value);
131 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
132 return new Instruction35ms(opcode, buffer, bufferIndex);
/external/javassist/src/main/javassist/bytecode/analysis/
H A DSubroutineScanner.java84 int opcode = iter.byteAt(pos);
86 if (opcode == TABLESWITCH) {
92 if (opcode == LOOKUPSWITCH) {
99 if (Util.isReturn(opcode) || opcode == RET || opcode == ATHROW)
102 if (Util.isJumpInstruction(opcode)) {
104 if (opcode == JSR || opcode == JSR_W) {
117 if (Util.isGoto(opcode))
[all...]
/external/openssl/crypto/perlasm/
H A Dx86_64-xlate.pl104 { package opcode; # pick up opcodes
228 die if (opcode->mnemonic() ne "mov");
229 opcode->mnemonic("lea");
275 $sz="q" if ($self->{asterisk} || opcode->mnemonic() eq "movq");
276 $sz="l" if (opcode->mnemonic() eq "movd");
416 if ($nasm && opcode->mnemonic()=~m/^j/) {
429 my %opcode = # lea 2f-1f(%rip),%dst; 1: nop; 2:
448 $line=sprintf "0x%x,0x90000000",$opcode{$1};
654 local *opcode=shift;
659 push @opcode,(
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DDexTranslationAdvice.java57 public boolean hasConstantOperation(Rop opcode, argument
67 opcode.getOpcode() == RegOps.SUB) {
77 switch (opcode.getOpcode()) {
102 public boolean requiresSourcesInOrder(Rop opcode, argument
105 return !disableSourcesInOrder && opcode.isCallLike()
H A DFillArrayDataInsn.java45 * @param opcode {@code non-null;} the opcode
51 public FillArrayDataInsn(Rop opcode, SourcePosition position, argument
55 super(opcode, position, null, sources);
57 if (opcode.getBranchingness() != Rop.BRANCH_NONE) {
/external/proguard/src/proguard/classfile/instruction/
H A DLookUpSwitchInstruction.java47 public LookUpSwitchInstruction(byte opcode, argument
52 this.opcode = opcode;
66 this.opcode = lookUpSwitchInstruction.opcode;
H A DTableSwitchInstruction.java48 public TableSwitchInstruction(byte opcode, argument
54 this.opcode = opcode;
69 this.opcode = tableSwitchInstruction.opcode;
/external/proguard/src/proguard/optimize/peephole/
H A DGotoCommonCodeReplacer.java101 byte opcode = branchInstruction.opcode;
102 if ((opcode == InstructionConstants.OP_GOTO ||
103 opcode == InstructionConstants.OP_GOTO_W) &&
139 new BranchInstruction(opcode, newBranchOffset);
229 * Returns whether the given opcode represents a pop instruction that must
232 private boolean isPop(byte opcode) argument
234 return opcode == InstructionConstants.OP_POP ||
235 opcode == InstructionConstants.OP_POP2 ||
236 opcode
[all...]
H A DBranchTargetFinder.java457 byte opcode = simpleInstruction.opcode;
458 if (opcode == InstructionConstants.OP_IRETURN ||
459 opcode == InstructionConstants.OP_LRETURN ||
460 opcode == InstructionConstants.OP_FRETURN ||
461 opcode == InstructionConstants.OP_DRETURN ||
462 opcode == InstructionConstants.OP_ARETURN ||
463 opcode == InstructionConstants.OP_ATHROW)
483 if (constantInstruction.opcode == InstructionConstants.OP_NEW)
523 if (variableInstruction.opcode
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDalvInsn.java38 /** the opcode; one of the constants from {@link Dops} */
39 private final Dop opcode; field in class:DalvInsn
61 Dop opcode;
64 opcode = reference ? Dops.MOVE_OBJECT :
67 opcode = reference ? Dops.MOVE_OBJECT_FROM16 :
70 opcode = reference ? Dops.MOVE_OBJECT_16 :
74 return new SimpleInsn(opcode, position,
88 * @param opcode the opcode; one of the constants from {@link Dops}
94 public DalvInsn(Dop opcode, SourcePositio argument
406 withOpcode(Dop opcode) argument
[all...]
H A DFixedSizeInsn.java39 * @param opcode the opcode; one of the constants from {@link Dops}
45 public FixedSizeInsn(Dop opcode, SourcePosition position, argument
47 super(opcode, position, registers);
/external/javassist/src/main/javassist/bytecode/
H A DCodeAttribute.java487 int opcode = ci.byteAt(index);
488 if (opcode < ILOAD)
490 else if (opcode < IASTORE) {
491 if (opcode < ILOAD_0) {
493 shiftIndex8(ci, index, opcode, lessThan, delta);
495 else if (opcode < IALOAD) {
497 shiftIndex0(ci, index, opcode, lessThan, delta, ILOAD_0, ILOAD);
499 else if (opcode < ISTORE)
501 else if (opcode < ISTORE_0) {
503 shiftIndex8(ci, index, opcode, lessTha
539 shiftIndex8(CodeIterator ci, int index, int opcode, int lessThan, int delta) argument
558 shiftIndex0(CodeIterator ci, int index, int opcode, int lessThan, int delta, int opcode_i_0, int opcode_i) argument
[all...]
/external/openssh/
H A Dttymodes.c352 int opcode, baud; local
381 opcode = packet_get_char();
382 switch (opcode) {
426 debug("Ignoring unsupported tty mode opcode %d (0x%x)",
427 opcode, opcode);
436 if (opcode > 0 && opcode < 128) {
440 } else if (opcode >= 128 && opcode < 16
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A D_stream_hybi.py61 opcode=None, payload=''):
66 self.opcode = opcode
102 def create_header(opcode, payload_length, fin, rsv1, rsv2, rsv3, mask):
109 if opcode < 0 or 0xf < opcode:
122 | opcode)
144 frame.opcode, len(frame.payload), frame.fin,
150 message, opcode=common.OPCODE_BINARY, fin=1, mask=False, frame_filters=[]):
153 frame = Frame(fin=fin, opcode
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DFiveRegisterDecodedInstruction.java43 public FiveRegisterDecodedInstruction(InstructionCodec format, int opcode, argument
46 super(format, opcode, index, indexType, target, literal);
H A DFourRegisterDecodedInstruction.java40 public FourRegisterDecodedInstruction(InstructionCodec format, int opcode, argument
43 super(format, opcode, index, indexType, target, literal);
H A DThreeRegisterDecodedInstruction.java37 public ThreeRegisterDecodedInstruction(InstructionCodec format, int opcode, argument
40 super(format, opcode, index, indexType, target, literal);
/external/javassist/src/main/javassist/
H A DCtPrimitiveType.java32 String methodName, String mDesc, int opcode, int atype,
39 returnOp = opcode;
91 * Returns the opcode for returning a value of the type.
92 * For example, if the type is int, then the returned opcode is
31 CtPrimitiveType(String name, char desc, String wrapper, String methodName, String mDesc, int opcode, int atype, int size) argument
/external/kernel-headers/original/linux/
H A Dublock.h40 __u32 opcode; member in struct:ublock_in_header
45 __u32 opcode; member in struct:ublock_out_header
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.h85 OpcodeID getOpcodeID(Opcode opcode) argument
88 ASSERT(isOpcode(opcode));
89 return m_opcodeIDTable.get(opcode);
91 return opcode;
152 bool isCallBytecode(Opcode opcode) { return opcode == getOpcode(op_call) || opcode == getOpcode(op_construct) || opcode == getOpcode(op_call_eval); } argument
/external/bluetooth/bluedroid/hci/include/
H A Dhci.h56 typedef uint8_t (*tHCI_SEND_INT)(uint16_t opcode, HC_BT_HDR *p_buf, \

Completed in 1283 milliseconds

1234567891011>>