HomeSort by relevance Sort by last modified time
    Searched full:opcode (Results 426 - 450 of 2817) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.cpp 44 const char *x86DisassemblerGetInstrName(unsigned Opcode, const void *mii) {
46 return MII->getName(Opcode);
250 uint32_t Opcode = mcInst.getOpcode();
257 if (Opcode != X86::BLENDPSrri && Opcode != X86::BLENDPDrri &&
258 Opcode != X86::PBLENDWrri && Opcode != X86::MPSADBWrri &&
259 Opcode != X86::DPPSrri && Opcode != X86::DPPDrri &&
260 Opcode != X86::INSERTPSrr && Opcode != X86::VBLENDPSYrri &
    [all...]
  /dalvik/vm/mterp/mips/
OP_FILLED_NEW_ARRAY.S 18 bnez a0, .L${opcode}_continue # yes, continue on
26 b .L${opcode}_continue
34 .L${opcode}_continue:
49 beqz t0, .L${opcode}_notimpl # no, not handled yet
104 GET_INST_OPCODE(t0) # ip <- opcode from rINST
112 .L${opcode}_notimpl:
OP_CMP_LONG.S 30 bnez v0, .L${opcode}_finish
36 .L${opcode}_finish:
38 GET_INST_OPCODE(t0) # extract opcode from rINST
OP_INVOKE_VIRTUAL.S 22 bnez a0, .L${opcode}_continue # yes, continue on
30 bnez v0, .L${opcode}_continue # no, continue
39 .L${opcode}_continue:
  /external/bluetooth/bluedroid/stack/avrc/
avrc_pars_ct.c 123 switch (p_msg->hdr.opcode)
129 case AVRC_OP_PASS_THRU: /* 0x7C panel subunit opcode */
138 AVRC_TRACE_ERROR1("AVRC_ParsResponse() unknown opcode:0x%x", p_msg->hdr.opcode);
141 p_result->rsp.opcode = p_msg->hdr.opcode;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathParser.h 48 NumericOp::Opcode numop;
49 EqTestOp::Opcode eqop;
54 Token(int t, NumericOp::Opcode v): type(t), numop(v) { }
55 Token(int t, EqTestOp::Opcode v): type(t), eqop(v) { }
96 Token makeTokenAndAdvance(int type, NumericOp::Opcode, int advance = 1);
97 Token makeTokenAndAdvance(int type, EqTestOp::Opcode, int advance = 1);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
rbug_connection.c 35 enum rbug_opcode opcode; member in struct:rbug_connection
90 data->opcode = 0;
134 rbug_connection_send_start(struct rbug_connection *c, enum rbug_opcode opcode, uint32_t length)
136 c->opcode = opcode;
160 if (c->opcode < 0)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 97 switch(inst->U.I.Opcode){
118 const struct rc_opcode_info * opcode; local
135 opcode = rc_get_opcode_info(inst->U.I.Opcode);
136 if(opcode->NumSrcRegs != 2){
165 switch(inst->U.I.Opcode){
237 switch(inst->U.I.Opcode){
285 switch(loop->Cond->U.I.Opcode){
331 if(inst->U.I.Opcode != RC_OPCODE_BGNLOOP){
348 switch(ptr->U.I.Opcode){
    [all...]
radeon_program_print.c 201 switch(inst.Opcode){
259 static unsigned update_branch_depth(rc_opcode opcode, unsigned *branch_depth)
261 switch (opcode) {
282 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
284 unsigned spaces = update_branch_depth(inst->U.I.Opcode, branch_depth);
289 fprintf(f, "%s", opcode->Name);
298 if (opcode->HasDstReg) {
302 if (opcode->NumSrcRegs)
306 for(reg = 0; reg < opcode->NumSrcRegs; ++reg)
383 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->RGB.Opcode); local
422 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->Alpha.Opcode); local
    [all...]
  /external/chromium_org/third_party/re2/re2/
prog.h 88 // Constructors per opcode
99 InstOp opcode() { return static_cast<InstOp>(out_opcode_&7); } function in class:re2::Prog::Inst
101 int out1() { DCHECK(opcode() == kInstAlt || opcode() == kInstAltMatch); return out1_; }
102 int cap() { DCHECK_EQ(opcode(), kInstCapture); return cap_; }
103 int lo() { DCHECK_EQ(opcode(), kInstByteRange); return lo_; }
104 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; }
105 int foldcase() { DCHECK_EQ(opcode(), kInstByteRange); return foldcase_; }
106 int match_id() { DCHECK_EQ(opcode(), kInstMatch); return match_id_; }
107 EmptyOp empty() { DCHECK_EQ(opcode(), kInstEmptyWidth); return empty_;
    [all...]
  /external/javassist/src/main/javassist/
CtPrimitiveType.java 32 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
93 * <code>javassit.bytecode.Opcode.IRETURN</code>.
101 * <code>javassit.bytecode.Opcode.T_INT</code>.
  /external/llvm/lib/Analysis/
InstCount.cpp 30 #define HANDLE_INST(N, OPCODE, CLASS) \
31 STATISTIC(Num ## OPCODE ## Inst, "Number of " #OPCODE " insts");
43 #define HANDLE_INST(N, OPCODE, CLASS) \
44 void visit##OPCODE(CLASS &) { ++Num##OPCODE##Inst; ++TotalInsts; }
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_connection.c 35 enum rbug_opcode opcode; member in struct:rbug_connection
90 data->opcode = 0;
134 rbug_connection_send_start(struct rbug_connection *c, enum rbug_opcode opcode, uint32_t length)
136 c->opcode = opcode;
160 if (c->opcode < 0)
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 97 switch(inst->U.I.Opcode){
118 const struct rc_opcode_info * opcode; local
135 opcode = rc_get_opcode_info(inst->U.I.Opcode);
136 if(opcode->NumSrcRegs != 2){
165 switch(inst->U.I.Opcode){
237 switch(inst->U.I.Opcode){
285 switch(loop->Cond->U.I.Opcode){
331 if(inst->U.I.Opcode != RC_OPCODE_BGNLOOP){
348 switch(ptr->U.I.Opcode){
    [all...]
radeon_program_print.c 201 switch(inst.Opcode){
259 static unsigned update_branch_depth(rc_opcode opcode, unsigned *branch_depth)
261 switch (opcode) {
282 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
284 unsigned spaces = update_branch_depth(inst->U.I.Opcode, branch_depth);
289 fprintf(f, "%s", opcode->Name);
298 if (opcode->HasDstReg) {
302 if (opcode->NumSrcRegs)
306 for(reg = 0; reg < opcode->NumSrcRegs; ++reg)
383 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->RGB.Opcode); local
422 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->Alpha.Opcode); local
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
GotoGotoReplacer.java 78 byte opcode = branchInstruction.opcode;
79 if (opcode == InstructionConstants.OP_GOTO ||
80 opcode == InstructionConstants.OP_GOTO_W)
94 if (targetInstruction.opcode == InstructionConstants.OP_GOTO)
100 new BranchInstruction(opcode,
GotoReturnReplacer.java 78 byte opcode = branchInstruction.opcode;
79 if (opcode == InstructionConstants.OP_GOTO ||
80 opcode == InstructionConstants.OP_GOTO_W)
90 switch (targetInstruction.opcode)
100 new SimpleInstruction(targetInstruction.opcode);
  /external/regex-re2/re2/
prog.h 88 // Constructors per opcode
99 InstOp opcode() { return static_cast<InstOp>(out_opcode_&7); } function in class:re2::Prog::Inst
101 int out1() { DCHECK(opcode() == kInstAlt || opcode() == kInstAltMatch); return out1_; }
102 int cap() { DCHECK_EQ(opcode(), kInstCapture); return cap_; }
103 int lo() { DCHECK_EQ(opcode(), kInstByteRange); return lo_; }
104 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; }
105 int foldcase() { DCHECK_EQ(opcode(), kInstByteRange); return foldcase_; }
106 int match_id() { DCHECK_EQ(opcode(), kInstMatch); return match_id_; }
107 EmptyOp empty() { DCHECK_EQ(opcode(), kInstEmptyWidth); return empty_;
    [all...]
  /dalvik/dx/tests/120-disable-extended-ops/
run 18 # dx contains at least one "iget/jumbo" opcode (one example of an
19 # extended opcode); and that with that option no such opcode is
  /dalvik/vm/mterp/armv5te/
OP_INVOKE_VIRTUAL.S 22 bne .L${opcode}_continue @ yes, continue on
28 bne .L${opcode}_continue @ no, continue
37 .L${opcode}_continue:
OP_MUL_LONG.S 35 b .L${opcode}_finish
38 .L${opcode}_finish:
39 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_SHL_LONG.S 25 b .L${opcode}_finish
28 .L${opcode}_finish:
30 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_SHR_LONG.S 25 b .L${opcode}_finish
28 .L${opcode}_finish:
30 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_USHR_LONG.S 25 b .L${opcode}_finish
28 .L${opcode}_finish:
30 GET_INST_OPCODE(ip) @ extract opcode from rINST
  /dalvik/vm/mterp/x86/
OP_IGET.S 24 jne .L${opcode}_finish # no, already resolved
35 jne .L${opcode}_finish
38 .L${opcode}_finish:

Completed in 618 milliseconds

<<11121314151617181920>>