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

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DFillArrayDataPayloadDecodedInstruction.java39 int opcode, Object data, int size, int elementWidth) {
40 super(format, opcode, 0, null, 0, 0L);
51 int opcode, byte[] data) {
52 this(format, opcode, data, data.length, 1);
59 int opcode, short[] data) {
60 this(format, opcode, data, data.length, 2);
67 int opcode, int[] data) {
68 this(format, opcode, data, data.length, 4);
75 int opcode, long[] data) {
76 this(format, opcode, dat
38 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, Object data, int size, int elementWidth) argument
50 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, byte[] data) argument
58 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, short[] data) argument
66 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, int[] data) argument
74 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, long[] data) argument
[all...]
H A DOneRegisterDecodedInstruction.java31 public OneRegisterDecodedInstruction(InstructionCodec format, int opcode, argument
34 super(format, opcode, index, indexType, target, literal);
H A DRegisterRangeDecodedInstruction.java35 public RegisterRangeDecodedInstruction(InstructionCodec format, int opcode, argument
38 super(format, opcode, index, indexType, target, literal);
H A DTwoRegisterDecodedInstruction.java34 public TwoRegisterDecodedInstruction(InstructionCodec format, int opcode, argument
37 super(format, opcode, index, indexType, target, literal);
/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 DPlainCstInsn.java33 * @param opcode {@code non-null;} the opcode
39 public PlainCstInsn(Rop opcode, SourcePosition position, argument
42 super(opcode, position, result, sources, cst);
44 if (opcode.getBranchingness() != Rop.BRANCH_NONE) {
H A DPlainInsn.java35 * @param opcode {@code non-null;} the opcode
40 public PlainInsn(Rop opcode, SourcePosition position, argument
42 super(opcode, position, result, sources);
44 switch (opcode.getBranchingness()) {
51 if (result != null && opcode.getBranchingness() != Rop.BRANCH_NONE) {
61 * @param opcode {@code non-null;} the opcode
66 public PlainInsn(Rop opcode, SourcePosition position, RegisterSpec result, argument
68 this(opcode, positio
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
H A DInstruction10t.java41 public Instruction10t(Opcode opcode, int offA) { argument
42 super(opcode);
53 private Instruction10t(Opcode opcode, byte[] buffer, int bufferIndex) { argument
54 super(opcode);
56 assert buffer[bufferIndex] == opcode.value;
71 out.writeByte(opcode.value);
88 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
89 return new Instruction10t(opcode, buffer, bufferIndex);
H A DInstruction11n.java44 public Instruction11n(Opcode opcode, byte regA, byte litB) { argument
45 super(opcode);
60 private Instruction11n(Opcode opcode, byte[] buffer, int bufferIndex) { argument
61 super(opcode);
68 out.writeByte(opcode.value);
85 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
86 return new Instruction11n(opcode, buffer, bufferIndex);
H A DInstruction11x.java42 public Instruction11x(Opcode opcode, short regA) { argument
43 super(opcode);
52 private Instruction11x(Opcode opcode, byte[] buffer, int bufferIndex) { argument
53 super(opcode);
59 out.writeByte(opcode.value);
72 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
73 return new Instruction11x(opcode, buffer, bufferIndex);
H A DInstruction12x.java43 public Instruction12x(Opcode opcode, byte regA, byte regB) { argument
44 super(opcode);
55 private Instruction12x(Opcode opcode, byte[] buffer, int bufferIndex) { argument
56 super(opcode);
62 out.writeByte(opcode.value);
79 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
80 return new Instruction12x(opcode, buffer, bufferIndex);
H A DInstruction20t.java42 public Instruction20t(Opcode opcode, int offA) { argument
43 super(opcode);
54 private Instruction20t(Opcode opcode, byte[] buffer, int bufferIndex) { argument
55 super(opcode);
57 assert buffer[bufferIndex] == opcode.value;
72 out.writeByte(opcode.value);
90 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
91 return new Instruction20t(opcode, buffer, bufferIndex);
H A DInstruction21c.java45 public Instruction21c(Opcode opcode, short regA, Item referencedItem) { argument
46 super(opcode, referencedItem);
52 if (opcode == Opcode.NEW_INSTANCE) {
55 throw new RuntimeException("Only class references can be used with the new-instance opcode");
62 private Instruction21c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
63 super(dexFile, opcode, buffer, bufferIndex);
65 if (opcode == Opcode.NEW_INSTANCE &&
68 throw new RuntimeException("Only class references can be used with the new-instance opcode");
76 if (opcode.hasJumboOpcode()) {
78 opcode
111 makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) argument
[all...]
H A DInstruction21s.java44 public Instruction21s(Opcode opcode, short regA, short litB) { argument
45 super(opcode);
55 private Instruction21s(Opcode opcode, byte[] buffer, int bufferIndex) { argument
56 super(opcode);
63 out.writeByte(opcode.value);
81 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
82 return new Instruction21s(opcode, buffer, bufferIndex);
H A DInstruction22x.java43 public Instruction22x(Opcode opcode, short regA, int regB) { argument
44 super(opcode);
58 private Instruction22x(Opcode opcode, byte[] buffer, int bufferIndex) { argument
59 super(opcode);
66 out.writeByte(opcode.value);
84 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
85 return new Instruction22x(opcode, buffer, bufferIndex);
H A DInstruction30t.java42 public Instruction30t(Opcode opcode, int offA) { argument
43 super(opcode);
47 private Instruction30t(Opcode opcode, byte[] buffer, int bufferIndex) { argument
48 super(opcode);
50 assert buffer[bufferIndex] == opcode.value;
56 out.writeByte(opcode.value);
74 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
75 return new Instruction30t(opcode, buffer, bufferIndex);
H A DInstruction31c.java44 public Instruction31c(Opcode opcode, short regA, Item referencedItem) { argument
45 super(opcode, referencedItem);
54 private Instruction31c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
55 super(dexFile, opcode, buffer, bufferIndex);
61 out.writeByte(opcode.value);
75 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
76 return new Instruction31c(dexFile, opcode, buffer, bufferIndex);
H A DInstruction31i.java44 public Instruction31i(Opcode opcode, short regA, int litB) { argument
45 super(opcode);
55 private Instruction31i(Opcode opcode, byte[] buffer, int bufferIndex) { argument
56 super(opcode);
63 out.writeByte(opcode.value);
81 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
82 return new Instruction31i(opcode, buffer, bufferIndex);
H A DInstruction32x.java43 public Instruction32x(Opcode opcode, int regA, int regB) { argument
44 super(opcode);
55 private Instruction32x(Opcode opcode, byte[] buffer, int bufferIndex) { argument
56 super(opcode);
63 out.writeByte(opcode.value);
82 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
83 return new Instruction32x(opcode, buffer, bufferIndex);
H A DInstruction41c.java48 public Instruction41c(Opcode opcode, int regA, Item referencedItem) { argument
49 super(opcode, referencedItem);
55 if (opcode == Opcode.NEW_INSTANCE_JUMBO) {
58 throw new RuntimeException("Only class references can be used with the new-instance/jumbo opcode");
65 private Instruction41c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
66 super(dexFile, opcode, buffer, bufferIndex);
68 if (opcode == Opcode.NEW_INSTANCE_JUMBO &&
71 throw new RuntimeException("Only class references can be used with the new-instance/jumbo opcode");
79 out.writeByte(opcode.value);
93 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byt argument
[all...]
H A DInstruction51l.java44 public Instruction51l(Opcode opcode, short regA, long litB) { argument
45 super(opcode);
55 private Instruction51l(Opcode opcode, byte[] buffer, int bufferIndex) { argument
56 super(opcode);
63 out.writeByte(opcode.value);
81 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
82 return new Instruction51l(opcode, buffer, bufferIndex);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
H A DInstruction.java36 public final Opcode opcode; field in class:Instruction
44 return opcode.format.size/2;
47 protected Instruction(Opcode opcode) { argument
48 this.opcode = opcode;
63 opcode.name + " instruction");
69 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex); argument
H A DInstructionWithReference.java38 protected InstructionWithReference(Opcode opcode, Item referencedItem) { argument
39 super(opcode);
41 this.referenceType = opcode.referenceType;
45 protected InstructionWithReference(Opcode opcode, Item referencedItem, ReferenceType referenceType) { argument
46 super(opcode);
52 protected InstructionWithReference(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
53 super(opcode);
55 this.referenceType = readReferenceType(opcode, buffer, bufferIndex);
57 lookupReferencedItem(dexFile, opcode, itemIndex);
72 protected ReferenceType readReferenceType(Opcode opcode, byt argument
76 lookupReferencedItem(DexFile dexFile, Opcode opcode, int itemIndex) argument
[all...]
/external/bluetooth/bluedroid/stack/avrc/
H A Davrc_utils.c192 ** Description This function returns the opcode of the given pdu
199 UINT8 opcode = 0; local
205 opcode = AVRC_OP_PASS_THRU;
209 opcode = AVRC_OP_VENDOR;
213 return opcode;
220 ** Description This function returns the opcode of the given pdu
225 BOOLEAN avrc_is_valid_opcode(UINT8 opcode) argument
228 switch (opcode)
/external/chromium/sdch/open-vcdiff/src/
H A Dcodetable_test.cc44 int opcode) {
45 g_exercise_code_table_->inst1[opcode] = inst1;
46 g_exercise_code_table_->mode1[opcode] = mode1;
47 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
48 g_exercise_code_table_->inst2[opcode] = inst2;
49 g_exercise_code_table_->mode2[opcode] = mode2;
50 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2;
55 int opcode = 0; local
74 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++);
75 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode
38 AddExerciseOpcode(unsigned char inst1, unsigned char mode1, unsigned char size1, unsigned char inst2, unsigned char mode2, unsigned char size2, int opcode) argument
92 VerifyInstruction(unsigned char opcode, unsigned char inst, unsigned char size, unsigned char mode) argument
[all...]

Completed in 306 milliseconds

1234567891011>>