Searched defs:opcode (Results 176 - 200 of 488) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/classfile/instruction/
H A DVariableInstruction.java52 public VariableInstruction(byte opcode) argument
54 this(opcode, embeddedVariable(opcode), 0);
58 public VariableInstruction(byte opcode, argument
61 this(opcode, variableIndex, 0);
65 public VariableInstruction(byte opcode, argument
69 this.opcode = opcode;
84 this.opcode = variableInstruction.opcode;
97 embeddedVariable(byte opcode) argument
[all...]
/external/proguard/src/proguard/preverify/
H A DCodePreverifier.java603 * Returns whether the given instruction opcode represents a dup or swap
606 private boolean isDupOrSwap(int opcode) argument
608 return opcode >= InstructionConstants.OP_DUP &&
609 opcode <= InstructionConstants.OP_SWAP;
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
H A DInstruction35c.java53 public Instruction35c(Opcode opcode, int regCount, byte regD, byte regE, byte regF, byte regG, argument
55 super(opcode, referencedItem);
69 checkItem(opcode, referencedItem, regCount);
79 protected Instruction35c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
80 super(dexFile, opcode, buffer, bufferIndex);
93 checkItem(opcode, getReferencedItem(), getRegCount());
98 if (opcode.hasJumboOpcode()) {
100 opcode.referenceType.name(), opcode.getJumboOpcode().name));
102 throw new RuntimeException(String.format("%s index is too large.", opcode
141 checkItem(Opcode opcode, Item item, int regCount) argument
166 makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) argument
[all...]
H A DInstruction35mi.java50 public Instruction35mi(Opcode opcode, int regCount, byte regD, byte regE, byte regF, byte regG, argument
52 super(opcode);
78 private Instruction35mi(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 Instruction35mi(opcode, buffer, bufferIndex);
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);
H A DPackedSwitchDataPseudoInstruction.java67 throw new RuntimeException("Invalid opcode byte for a PackedSwitchData pseudo-instruction");
71 throw new RuntimeException("Invalid sub-opcode byte for a PackedSwitchData pseudo-instruction");
151 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
152 if (opcode != Opcode.NOP) {
153 throw new RuntimeException("The opcode for a PackedSwitchDataPseudoInstruction must be NOP");
H A DSparseSwitchDataPseudoInstruction.java75 throw new RuntimeException("Invalid opcode byte for a SparseSwitchData pseudo-instruction");
79 throw new RuntimeException("Invalid sub-opcode byte for a SparseSwitchData pseudo-instruction");
170 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
171 if (opcode != Opcode.NOP) {
172 throw new RuntimeException("The opcode for a SparseSwitchDataPseudoInstruction must be NOP");
/external/bluetooth/bluedroid/btif/src/
H A Dbluetooth.c351 int dut_mode_send(uint16_t opcode, uint8_t* buf, uint8_t len) argument
359 return btif_dut_mode_send(opcode, buf, len);
363 int le_test_mode(uint16_t opcode, uint8_t* buf, uint8_t len) argument
371 return btif_le_test_mode(opcode, buf, len);
/external/bluetooth/bluedroid/stack/avrc/
H A Davrc_api.c54 #define AVRC_OP_DROP 0xFE /* use this unused opcode to indication no need to call the callback function */
55 #define AVRC_OP_DROP_N_FREE 0xFD /* use this unused opcode to indication no need to call the callback function & free buffer */
282 p_msg->hdr.opcode = AVRC_OP_DROP; /* used the p_pkt to send response */
289 p_msg->hdr.opcode = AVRC_OP_DROP_N_FREE;
365 /* Skip over vendor header (ctype, subunit*, opcode, CO_ID) */
460 /* 6 = ctype, subunit*, opcode & CO_ID */
489 else if (p_msg->hdr.opcode == AVRC_OP_DROP)
493 else if (p_msg->hdr.opcode == AVRC_OP_DROP_N_FREE)
527 UINT8 opcode; local
570 opcode
[all...]
/external/chromium_org/base/message_loop/
H A Dmessage_pump_aurax11.cc110 int opcode, event, error; local
113 if (!XkbQueryExtension(display, &opcode, &event, &error, &major, &minor)) {
/external/chromium_org/net/websockets/
H A Dwebsocket_frame_parser_unittest.cc69 EXPECT_EQ(WebSocketFrameHeader::kOpCodeText, header->opcode);
96 EXPECT_EQ(WebSocketFrameHeader::kOpCodeText, header->opcode);
167 EXPECT_EQ(WebSocketFrameHeader::kOpCodeText, header->opcode);
213 EXPECT_EQ(WebSocketFrameHeader::kOpCodeText, header1->opcode);
280 EXPECT_EQ(WebSocketFrameHeader::kOpCodeText, header1->opcode);
359 EXPECT_EQ(WebSocketFrameHeader::kOpCodeText, header->opcode);
414 EXPECT_EQ(WebSocketFrameHeader::kOpCodeText, header->opcode);
461 WebSocketFrameHeader::OpCode opcode; member in struct:net::__anon9221::TestCase
488 WebSocketFrameHeader::OpCode opcode = kTests[i].opcode; local
[all...]
H A Dwebsocket_frame_unittest.cc113 WebSocketFrameHeader::OpCode opcode; member in struct:net::TestCase
137 WebSocketFrameHeader header(kTests[i].opcode);
216 header.opcode = WebSocketFrameHeader::kOpCodeText;
410 // Known opcode, is used for data frames
415 // Known opcode, is used for control frames
439 // Known opcode, is used for data frames
444 // Known opcode, is used for control frames
/external/chromium_org/sandbox/win/src/
H A Dpolicy_engine_opcodes.cc44 EvalResult OpcodeEval(PolicyOpcode* opcode, const ParameterSet* pp,
56 EvalResult OpcodeEval<OP_ALWAYS_FALSE>(PolicyOpcode* opcode, argument
59 UNREFERENCED_PARAMETER(opcode);
74 EvalResult OpcodeEval<OP_ALWAYS_TRUE>(PolicyOpcode* opcode, argument
77 UNREFERENCED_PARAMETER(opcode);
90 PolicyOpcode* opcode = MakeBase(OP_ACTION, options, 0); local
91 if (NULL == opcode) return NULL;
92 opcode->SetArgument(0, action);
93 return opcode;
97 EvalResult OpcodeEval<OP_ACTION>(PolicyOpcode* opcode, argument
116 PolicyOpcode* opcode = MakeBase(OP_NUMBER_MATCH, options, selected_param); local
126 PolicyOpcode* opcode = MakeBase(OP_NUMBER_MATCH, options, selected_param); local
134 OpcodeEval(PolicyOpcode* opcode, const ParameterSet* param, MatchContext* context) argument
167 PolicyOpcode* opcode = MakeBase(OP_ULONG_MATCH_RANGE, options, local
176 OpcodeEval(PolicyOpcode* opcode, const ParameterSet* param, MatchContext* context) argument
199 PolicyOpcode* opcode = MakeBase(OP_ULONG_AND_MATCH, options, selected_param); local
206 OpcodeEval(PolicyOpcode* opcode, const ParameterSet* param, MatchContext* context) argument
241 PolicyOpcode* opcode = MakeBase(OP_WSTRING_MATCH, options, selected_param); local
257 OpcodeEval(PolicyOpcode* opcode, const ParameterSet* param, MatchContext* context) argument
360 PolicyOpcode* opcode = new(memory_top_) PolicyOpcode(); local
[all...]
/external/chromium_org/sdch/open-vcdiff/src/
H A Dencodetable.cc139 // The VCDiff format allows each opcode to represent either
141 // examine the opcode generated by the last call to EncodeInstruction.
142 // If that opcode was a single-instruction opcode, this function checks
143 // whether there is a compound (double-instruction) opcode that can
146 // single-instruction opcode at position last_opcode_index_ will be
147 // overwritten with the new double-instruction opcode.
149 // In the majority of cases, no compound opcode will be possible,
150 // and a new single-instruction opcode will be appended to
152 // if the opcode doe
218 OpcodeOrNone opcode = kNoOpcode; local
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dparser.py3 import opcode, re, sys, token, tokenize namespace
261 """Return the opcode by name from the opcode module."""
262 return opcode.opmap[name]
455 # Look at the opcode
461 # The opcode has a jump, it's an exit for this chunk.
465 # The opcode can exit the code object.
468 # The opcode adds a block to the block_stack.
471 # The opcode pops a block from the block stack.
474 # This opcode force
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_fpc_emit.c184 * \param opcode the instruction opcode
191 uint opcode,
239 i915_emit_texld( p, tmp, A0_DEST_CHANNEL_ALL, sampler, coord, opcode, num_coord );
260 *(p->csr++) = (opcode |
186 i915_emit_texld( struct i915_fp_compile *p, uint dest, uint destmask, uint sampler, uint coord, uint opcode, uint num_coord ) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dr300_fragprog_emit.c105 static unsigned int translate_rgb_opcode(struct r300_fragment_program_compiler * c, rc_opcode opcode) argument
107 switch(opcode) {
114 error("translate_rgb_opcode: Unknown opcode %s", rc_get_opcode_info(opcode)->Name);
125 static unsigned int translate_alpha_opcode(struct r300_fragment_program_compiler * c, rc_opcode opcode) argument
127 switch(opcode) {
136 error("translate_rgb_opcode: Unknown opcode %s", rc_get_opcode_info(opcode)->Name);
427 unsigned int opcode; local
439 case RC_OPCODE_KIL: opcode
[all...]
H A Dr500_fragprog.c183 static int r500_swizzle_is_native(rc_opcode opcode, struct rc_src_register reg) argument
188 if (opcode == RC_OPCODE_TEX ||
189 opcode == RC_OPCODE_TXB ||
190 opcode == RC_OPCODE_TXP ||
191 opcode == RC_OPCODE_TXD ||
192 opcode == RC_OPCODE_TXL ||
193 opcode == RC_OPCODE_KIL) {
197 if (opcode == RC_OPCODE_KIL && (reg.Swizzle != RC_SWIZZLE_XYZW || reg.Negate != RC_MASK_NONE))
214 } else if (opcode == RC_OPCODE_DDX || opcode
[all...]
H A Dr500_fragprog_emit.c92 static unsigned int translate_rgb_op(struct r300_fragment_program_compiler *c, rc_opcode opcode) argument
94 switch(opcode) {
103 error("translate_rgb_op: unknown opcode %s\n", rc_get_opcode_info(opcode)->Name);
114 static unsigned int translate_alpha_op(struct r300_fragment_program_compiler *c, rc_opcode opcode) argument
116 switch(opcode) {
128 error("translate_alpha_op: unknown opcode %s\n", rc_get_opcode_info(opcode)->Name);
412 error("emit_tex can't handle opcode %s\n", rc_get_opcode_info(inst->Opcode)->Name);
619 rc_error(s->C, "%s: unknown opcode
641 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
[all...]
H A Dradeon_compiler.c119 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
122 for (i = 0; i < opcode->NumSrcRegs; ++i) {
127 if (opcode->HasDstReg) {
145 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
148 for(i = 0; i < opcode->NumSrcRegs; ++i) {
177 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
179 if (opcode->HasDstReg) {
200 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
202 if (opcode->HasDstReg) {
300 const struct rc_opcode_info * opcode local
344 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
[all...]
H A Dradeon_emulate_branches.c271 const struct rc_opcode_info * opcode; local
276 opcode = rc_get_opcode_info(inst->U.I.Opcode);
278 if (!opcode->HasDstReg)
H A Dradeon_emulate_loops.c118 const struct rc_opcode_info * opcode; local
135 opcode = rc_get_opcode_info(inst->U.I.Opcode);
136 if(opcode->NumSrcRegs != 2){
H A Dradeon_program_print.c259 static unsigned update_branch_depth(rc_opcode opcode, unsigned *branch_depth) argument
261 switch (opcode) {
282 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
289 fprintf(f, "%s", opcode->Name);
298 if (opcode->HasDstReg) {
302 if (opcode->NumSrcRegs)
306 for(reg = 0; reg < opcode->NumSrcRegs; ++reg) {
313 if (opcode->HasTexture) {
383 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->RGB.Opcode); local
388 fprintf(f, " %s%s", opcode
422 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->Alpha.Opcode); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_llvm.c175 unsigned opcode = emit_data->inst->Instruction.Opcode; local
176 unsigned dp_components = (opcode == TGSI_OPCODE_DP2 ? 2 :
177 (opcode == TGSI_OPCODE_DP3 ? 3 : 4));
191 if (opcode == TGSI_OPCODE_DPH) {
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dindirect_glx.c63 SendMakeCurrentRequest(Display * dpy, CARD8 opcode, argument
76 req->reqType = opcode;
94 req->reqType = opcode;
109 req->reqType = opcode;
135 int opcode = __glXSetupForCommand(dpy); local
144 SendMakeCurrentRequest(dpy, opcode, gc->xid, tag, draw, read, &reply);
165 int opcode = __glXSetupForCommand(dpy); local
176 SendMakeCurrentRequest(dpy, opcode, None,
254 CARD8 opcode; local
263 opcode
303 CARD8 opcode; local
350 CARD8 opcode; local
[all...]

Completed in 475 milliseconds

1234567891011>>