Searched defs:opcode (Results 51 - 75 of 241) sorted by relevance

12345678910

/external/chromium/sdch/open-vcdiff/src/
H A Dinstruction_map_test.cc38 int opcode);
56 // squared (because there are two instructions per opcode), makes
82 int opcode = 0; local
101 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++);
102 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode++);
103 AddExerciseOpcode(inst1, mode1, 255, inst2, mode2, 0, opcode++);
104 AddExerciseOpcode(inst1, mode1, 255, inst2, mode2, 255, opcode++);
109 CHECK_EQ(VCDiffCodeTableData::kCodeTableSize, opcode);
129 int opcode) {
130 g_exercise_code_table_->inst1[opcode]
123 AddExerciseOpcode(unsigned char inst1, unsigned char mode1, unsigned char size1, unsigned char inst2, unsigned char mode2, unsigned char size2, int opcode) argument
560 int opcode = 0; local
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCstInsn.java47 * @param opcode the opcode; one of the constants from {@link Dops}
54 public CstInsn(Dop opcode, SourcePosition position, argument
56 super(opcode, position, registers);
69 public DalvInsn withOpcode(Dop opcode) { argument
71 new CstInsn(opcode, getPosition(), getRegisters(), constant);
/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/dexmaker/src/dx/java/com/android/dx/rop/code/
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) {
H A DSwitchInsn.java35 * @param opcode {@code non-null;} the opcode
41 public SwitchInsn(Rop opcode, SourcePosition position, RegisterSpec result, argument
43 super(opcode, position, result, sources);
45 if (opcode.getBranchingness() != Rop.BRANCH_SWITCH) {
H A DThrowingCstInsn.java36 * @param opcode {@code non-null;} the opcode
42 public ThrowingCstInsn(Rop opcode, SourcePosition position, argument
45 super(opcode, position, null, sources, cst);
47 if (opcode.getBranchingness() != Rop.BRANCH_THROW) {
H A DThrowingInsn.java57 * @param opcode {@code non-null;} the opcode
62 public ThrowingInsn(Rop opcode, SourcePosition position, argument
65 super(opcode, position, null, sources);
67 if (opcode.getBranchingness() != Rop.BRANCH_THROW) {
/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/javassist/src/main/javassist/bytecode/
H A DCodeAnalyzer.java98 private boolean processBranch(int opcode, CodeIterator ci, int index, argument
102 if ((IFEQ <= opcode && opcode <= IF_ACMPNE)
103 || opcode == IFNULL || opcode == IFNONNULL) {
109 switch (opcode) {
120 if (opcode == JSR)
159 if (opcode == LOOKUPSWITCH) {
204 private static boolean isEnd(int opcode) { argument
205 return (IRETURN <= opcode
[all...]
/external/javassist/src/main/javassist/convert/
H A DTransformAccessArrayField.java126 int opcode, String signature) throws BadBytecode {
128 String methodName = getMethodName(opcode);
131 if (opcode == AALOAD) {
165 private String getMethodName(int opcode) { argument
167 switch (opcode) {
224 private String getLoadReplacementSignature(int opcode) throws BadBytecode { argument
225 switch (opcode) {
244 throw new BadBytecode(opcode);
247 private String getStoreReplacementSignature(int opcode) throws BadBytecode { argument
248 switch (opcode) {
125 replace(ConstPool cp, CodeIterator iterator, int pos, int opcode, String signature) argument
[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/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/proguard/src/proguard/classfile/instruction/
H A DBranchInstruction.java44 public BranchInstruction(byte opcode, int branchOffset) argument
46 this.opcode = opcode;
58 this.opcode = branchInstruction.opcode;
70 switch (opcode)
76 default: return opcode;
86 if (opcode == InstructionConstants.OP_GOTO_W)
88 opcode = InstructionConstants.OP_GOTO;
90 else if (opcode
[all...]
H A DLookUpSwitchInstruction.java47 public LookUpSwitchInstruction(byte opcode, argument
52 this.opcode = opcode;
66 this.opcode = lookUpSwitchInstruction.opcode;
H A DSimpleInstruction.java45 * Creates a new SimpleInstruction with the given opcode.
47 public SimpleInstruction(byte opcode) argument
49 this(opcode, embeddedConstant(opcode));
54 * Creates a new SimpleInstruction with the given opcode and constant.
56 public SimpleInstruction(byte opcode, int constant) argument
58 this.opcode = opcode;
70 this.opcode = simpleInstruction.opcode;
81 embeddedConstant(byte opcode) argument
[all...]
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...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
H A DArrayDataPseudoInstruction.java65 throw new RuntimeException("Invalid opcode byte for an ArrayData pseudo-instruction");
70 throw new RuntimeException("Invalid sub-opcode byte for an ArrayData pseudo-instruction");
145 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
146 if (opcode != Opcode.NOP) {
147 throw new RuntimeException("The opcode for an ArrayDataPseudoInstruction must be NOP");
H A DInstruction20bc.java41 public Instruction20bc(Opcode opcode, VerificationErrorType validationErrorType, Item referencedItem) { argument
42 super(opcode, referencedItem, getReferenceType(referencedItem));
60 private Instruction20bc(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
61 super(dexFile, opcode, buffer, bufferIndex);
67 protected ReferenceType readReferenceType(Opcode opcode, byte[] buffer, int bufferIndex) { argument
80 if(opcode == Opcode.CONST_STRING && getReferencedItem().getIndex() > 0xFFFF) {
84 out.writeByte(opcode.value);
96 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
97 return new Instruction20bc(dexFile, opcode, buffer, bufferIndex);
H A DInstruction21t.java44 public Instruction21t(Opcode opcode, short regA, short offB) { argument
45 super(opcode);
59 private Instruction21t(Opcode opcode, byte[] buffer, int bufferIndex) { argument
60 super(opcode);
62 assert buffer[bufferIndex] == opcode.value;
70 out.writeByte(opcode.value);
99 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
100 return new Instruction21t(opcode, buffer, bufferIndex);
H A DInstruction22b.java44 public Instruction22b(Opcode opcode, short regA, short regB, byte litC) { argument
45 super(opcode);
57 private Instruction22b(Opcode opcode, byte[] buffer, int bufferIndex) { argument
58 super(opcode);
66 out.writeByte(opcode.value);
89 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
90 return new Instruction22b(opcode, buffer, bufferIndex);
H A DInstruction22c.java45 public Instruction22c(Opcode opcode, byte regA, byte regB, Item referencedItem) { argument
46 super(opcode, referencedItem);
57 private Instruction22c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
58 super(dexFile, opcode, buffer, bufferIndex);
65 out.writeByte(opcode.value);
83 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
84 return new Instruction22c(dexFile, opcode, buffer, bufferIndex);
H A DInstruction22cs.java45 public Instruction22cs(Opcode opcode, byte regA, byte regB, int fieldOffset) { argument
46 super(opcode);
62 private Instruction22cs(Opcode opcode, byte[] buffer, int bufferIndex) { argument
63 super(opcode);
71 out.writeByte(opcode.value);
93 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
94 return new Instruction22cs(opcode, buffer, bufferIndex);

Completed in 279 milliseconds

12345678910