Searched defs:opcode (Results 126 - 150 of 488) sorted by relevance

1234567891011>>

/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
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.java46 public Instruction22c(Opcode opcode, byte regA, byte regB, Item referencedItem) { argument
47 super(opcode, referencedItem);
58 private Instruction22c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
59 super(dexFile, opcode, buffer, bufferIndex);
67 if (opcode.hasJumboOpcode()) {
69 opcode.referenceType.name(), opcode.getJumboOpcode().name));
71 throw new RuntimeException(String.format("%s index is too large.", opcode.referenceType.name()));
75 out.writeByte(opcode.value);
93 Opcode jumboOpcode = opcode
102 makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) argument
[all...]
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);
H A DInstruction22s.java45 public Instruction22s(Opcode opcode, byte regA, byte regB, short litC) { argument
46 super(opcode);
58 private Instruction22s(Opcode opcode, byte[] buffer, int bufferIndex) { argument
59 super(opcode);
67 out.writeByte(opcode.value);
89 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
90 return new Instruction22s(opcode, buffer, bufferIndex);
H A DInstruction22t.java45 public Instruction22t(Opcode opcode, byte regA, byte regB, short offC) { argument
46 super(opcode);
62 private Instruction22t(Opcode opcode, byte[] buffer, int bufferIndex) { argument
63 super(opcode);
65 assert buffer[bufferIndex] == opcode.value;
75 out.writeByte(opcode.value);
108 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
109 return new Instruction22t(opcode, buffer, bufferIndex);
H A DInstruction23x.java43 public Instruction23x(Opcode opcode, short regA, short regB, short regC) { argument
44 super(opcode);
57 private Instruction23x(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 Instruction23x(opcode, buffer, bufferIndex);
H A DInstruction31t.java44 public Instruction31t(Opcode opcode, short regA, int offB) { argument
45 super(opcode);
55 private Instruction31t(Opcode opcode, byte[] buffer, int bufferIndex) { argument
56 super(opcode);
63 out.writeByte(opcode.value);
86 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
87 return new Instruction31t(opcode, buffer, bufferIndex);
H A DInstruction3rc.java50 public Instruction3rc(Opcode opcode, short regCount, int startReg, Item referencedItem) { argument
51 super(opcode, referencedItem);
70 checkItem(opcode, referencedItem, regCount);
73 private Instruction3rc(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
74 super(dexFile, opcode, buffer, bufferIndex);
79 checkItem(opcode, getReferencedItem(), getRegCount());
84 if (opcode.hasJumboOpcode()) {
86 opcode.referenceType.name(), opcode.getJumboOpcode().name));
88 throw new RuntimeException(String.format("%s index is too large.", opcode
110 checkItem(Opcode opcode, Item item, int regCount) argument
144 makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) argument
[all...]
H A DInstruction3rmi.java45 public Instruction3rmi(Opcode opcode, short regCount, int startReg, int inlineIndex) { argument
46 super(opcode);
71 private Instruction3rmi(Opcode opcode, byte[] buffer, int bufferIndex) { argument
72 super(opcode);
80 out.writeByte(opcode.value);
103 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
104 return new Instruction3rmi(opcode, buffer, bufferIndex);
H A DInstruction3rms.java45 public Instruction3rms(Opcode opcode, short regCount, int startReg, int vtableIndex) { argument
46 super(opcode);
71 private Instruction3rms(Opcode opcode, byte[] buffer, int bufferIndex) { argument
72 super(opcode);
80 out.writeByte(opcode.value);
103 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
104 return new Instruction3rms(opcode, buffer, bufferIndex);
H A DInstruction52c.java47 public Instruction52c(Opcode opcode, int regA, int regB, Item referencedItem) { argument
48 super(opcode, referencedItem);
62 private Instruction52c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
63 super(dexFile, opcode, buffer, bufferIndex);
71 out.writeByte(opcode.value);
90 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
91 return new Instruction52c(dexFile, opcode, buffer, bufferIndex);
H A DInstruction5rc.java52 public Instruction5rc(Opcode opcode, int regCount, int startReg, Item referencedItem) { argument
53 super(opcode, referencedItem);
72 checkItem(opcode, referencedItem, regCount);
75 private Instruction5rc(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
76 super(dexFile, opcode, buffer, bufferIndex);
81 checkItem(opcode, getReferencedItem(), getRegCount());
86 out.writeByte(opcode.value);
104 private static void checkItem(Opcode opcode, Item item, int regCount) { argument
105 if (opcode == FILLED_NEW_ARRAY_JUMBO) {
106 //check data for filled-new-array/jumbo opcode
129 makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) argument
[all...]
/external/bluetooth/bluedroid/stack/avrc/
H A Davrc_bld_tg.c730 UINT8 opcode = avrc_opcode_from_pdu(p_rsp->pdu); local
732 AVRC_TRACE_API3("avrc_bld_init_rsp_buffer: pdu=%x, opcode=%x/%x", p_rsp->pdu, opcode,
733 p_rsp->rsp.opcode);
734 if (opcode != p_rsp->rsp.opcode && p_rsp->rsp.status != AVRC_STS_NO_ERROR &&
735 avrc_is_valid_opcode(p_rsp->rsp.opcode))
737 opcode = p_rsp->rsp.opcode;
738 AVRC_TRACE_API1("opcode
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Ddecodetable_test.cc47 int opcode) {
48 g_exercise_code_table_->inst1[opcode] = inst1;
49 g_exercise_code_table_->mode1[opcode] = mode1;
50 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
51 g_exercise_code_table_->inst2[opcode] = inst2;
52 g_exercise_code_table_->mode2[opcode] = mode2;
53 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2;
58 int opcode = 0; local
77 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++);
78 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode
41 AddExerciseOpcode(unsigned char inst1, unsigned char mode1, unsigned char size1, unsigned char inst2, unsigned char mode2, unsigned char size2, int opcode) argument
92 VerifyInstModeSize(unsigned char inst, unsigned char mode, unsigned char size, unsigned char opcode) argument
110 VerifyInstModeSize1(unsigned char inst, unsigned char mode, unsigned char size, unsigned char opcode) argument
121 VerifyInstModeSize2(unsigned char inst, unsigned char mode, unsigned char size, unsigned char opcode) argument
412 int opcode = 0; local
[all...]
H A Dencodetable.cc107 // The VCDiff format allows each opcode to represent either
109 // examine the opcode generated by the last call to EncodeInstruction.
110 // If that opcode was a single-instruction opcode, this function checks
111 // whether there is a compound (double-instruction) opcode that can
114 // single-instruction opcode at position last_opcode_index_ will be
115 // overwritten with the new double-instruction opcode.
117 // In the majority of cases, no compound opcode will be possible,
118 // and a new single-instruction opcode will be appended to
120 // if the opcode doe
186 OpcodeOrNone opcode = kNoOpcode; local
[all...]
H A Dencodetable_test.cc56 int opcode) {
57 g_exercise_code_table_->inst1[opcode] = inst1;
58 g_exercise_code_table_->mode1[opcode] = mode1;
59 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
60 g_exercise_code_table_->inst2[opcode] = inst2;
61 g_exercise_code_table_->mode2[opcode] = mode2;
62 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2;
67 int opcode = 0; local
86 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++);
87 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode
50 AddExerciseOpcode(unsigned char inst1, unsigned char mode1, unsigned char size1, unsigned char inst2, unsigned char mode2, unsigned char size2, int opcode) argument
[all...]
H A Dinstruction_map.cc90 for (int opcode = 0; opcode < VCDiffCodeTableData::kCodeTableSize; ++opcode) {
91 if (second_opcodes_[opcode] != NULL) {
96 delete[] second_opcodes_[opcode][inst_mode];
98 delete[] second_opcodes_[opcode];
159 for (int opcode = 0; opcode < VCDiffCodeTableData::kCodeTableSize; ++opcode) {
160 if (code_table_data.inst2[opcode]
192 opcode); local
[all...]
/external/chromium_org/net/websockets/
H A Dwebsocket_frame.h39 // Return true if |opcode| is one of the data opcodes known to this
41 static bool IsKnownDataOpCode(OpCode opcode) { argument
42 return opcode == kOpCodeContinuation || opcode == kOpCodeText ||
43 opcode == kOpCodeBinary;
46 // Return true if |opcode| is one of the control opcodes known to this
48 static bool IsKnownControlOpCode(OpCode opcode) { argument
49 return opcode == kOpCodeClose || opcode == kOpCodePing ||
50 opcode
80 OpCode opcode; member in struct:net::WebSocketFrameHeader
[all...]
H A Dwebsocket_frame_parser.cc119 OpCode opcode = first_byte & kOpCodeMask; local
161 current_frame_header_.reset(new WebSocketFrameHeader(opcode));
/external/chromium_org/sdch/open-vcdiff/src/
H A Ddecodetable_test.cc47 int opcode) {
48 g_exercise_code_table_->inst1[opcode] = inst1;
49 g_exercise_code_table_->mode1[opcode] = mode1;
50 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
51 g_exercise_code_table_->inst2[opcode] = inst2;
52 g_exercise_code_table_->mode2[opcode] = mode2;
53 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2;
58 int opcode = 0; local
77 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++);
78 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode
41 AddExerciseOpcode(unsigned char inst1, unsigned char mode1, unsigned char size1, unsigned char inst2, unsigned char mode2, unsigned char size2, int opcode) argument
92 VerifyInstModeSize(unsigned char inst, unsigned char mode, unsigned char size, unsigned char opcode) argument
110 VerifyInstModeSize1(unsigned char inst, unsigned char mode, unsigned char size, unsigned char opcode) argument
121 VerifyInstModeSize2(unsigned char inst, unsigned char mode, unsigned char size, unsigned char opcode) argument
412 int opcode = 0; local
[all...]
H A Dencodetable_test.cc55 int opcode) {
56 g_exercise_code_table_->inst1[opcode] = inst1;
57 g_exercise_code_table_->mode1[opcode] = mode1;
58 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
59 g_exercise_code_table_->inst2[opcode] = inst2;
60 g_exercise_code_table_->mode2[opcode] = mode2;
61 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2;
66 int opcode = 0; local
85 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++);
86 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode
49 AddExerciseOpcode(unsigned char inst1, unsigned char mode1, unsigned char size1, unsigned char inst2, unsigned char mode2, unsigned char size2, int opcode) argument
[all...]
H A Dinstruction_map.cc90 for (int opcode = 0; opcode < VCDiffCodeTableData::kCodeTableSize; ++opcode) {
91 if (second_opcodes_[opcode] != NULL) {
96 delete[] second_opcodes_[opcode][inst_mode];
98 delete[] second_opcodes_[opcode];
159 for (int opcode = 0; opcode < VCDiffCodeTableData::kCodeTableSize; ++opcode) {
160 if (code_table_data.inst2[opcode]
192 opcode); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathPredicate.cpp66 NumericOp::NumericOp(Opcode opcode, Expression* lhs, Expression* rhs) argument
67 : m_opcode(opcode)
97 EqTestOp::EqTestOp(Opcode opcode, Expression* lhs, Expression* rhs) argument
98 : m_opcode(opcode)
200 LogicalOp::LogicalOp(Opcode opcode, Expression* lhs, Expression* rhs) argument
201 : m_opcode(opcode)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
H A Drbug_proto.h76 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);

Completed in 2042 milliseconds

1234567891011>>