HomeSort by relevance Sort by last modified time
    Searched refs:insn (Results 1 - 25 of 364) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.cpp 192 * @param insn - The instruction with the reader function to use. The cursor
198 static int consumeByte(struct InternalInstruction* insn, uint8_t* byte) {
199 int ret = insn->reader(insn->readerArg, byte, insn->readerCursor);
202 ++(insn->readerCursor);
210 * @param insn - See consumeByte().
214 static int lookAtByte(struct InternalInstruction* insn, uint8_t* byte) {
215 return insn->reader(insn->readerArg, byte, insn->readerCursor)
    [all...]
  /external/libpcap/
bpf_dump.c 36 const struct bpf_insn *insn; local
40 insn = p->bf_insns;
43 for (i = 0; i < n; ++insn, ++i) {
44 printf("%u %u %u %u\n", insn->code,
45 insn->jt, insn->jf, insn->k);
50 for (i = 0; i < n; ++insn, ++i)
52 insn->code, insn->jt, insn->jf, insn->k)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form30t.java 42 public String insnArgString(DalvInsn insn) {
43 return branchString(insn);
48 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
49 return branchComment(insn);
60 public boolean isCompatible(DalvInsn insn) {
61 if (!((insn instanceof TargetInsn) &&
62 (insn.getRegisters().size() == 0))) {
71 public boolean branchFits(TargetInsn insn) {
77 public void writeTo(AnnotatedOutput out, DalvInsn insn) {
78 int offset = ((TargetInsn) insn).getTargetOffset()
    [all...]
Form21t.java 44 public String insnArgString(DalvInsn insn) {
45 RegisterSpecList regs = insn.getRegisters();
46 return regs.get(0).regString() + ", " + branchString(insn);
51 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
52 return branchComment(insn);
63 public boolean isCompatible(DalvInsn insn) {
64 RegisterSpecList regs = insn.getRegisters();
66 if (!((insn instanceof TargetInsn) &&
72 TargetInsn ti = (TargetInsn) insn;
78 public BitSet compatibleRegs(DalvInsn insn) {
    [all...]
Form22t.java 44 public String insnArgString(DalvInsn insn) {
45 RegisterSpecList regs = insn.getRegisters();
47 ", " + branchString(insn);
52 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
53 return branchComment(insn);
64 public boolean isCompatible(DalvInsn insn) {
65 RegisterSpecList regs = insn.getRegisters();
67 if (!((insn instanceof TargetInsn) &&
74 TargetInsn ti = (TargetInsn) insn;
80 public BitSet compatibleRegs(DalvInsn insn) {
    [all...]
Form10t.java 42 public String insnArgString(DalvInsn insn) {
43 return branchString(insn);
48 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
49 return branchComment(insn);
60 public boolean isCompatible(DalvInsn insn) {
61 if (!((insn instanceof TargetInsn) &&
62 (insn.getRegisters().size() == 0))) {
66 TargetInsn ti = (TargetInsn) insn;
72 public boolean branchFits(TargetInsn insn) {
73 int offset = insn.getTargetOffset()
    [all...]
Form20t.java 42 public String insnArgString(DalvInsn insn) {
43 return branchString(insn);
48 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
49 return branchComment(insn);
60 public boolean isCompatible(DalvInsn insn) {
61 if (!((insn instanceof TargetInsn) &&
62 (insn.getRegisters().size() == 0))) {
66 TargetInsn ti = (TargetInsn) insn;
72 public boolean branchFits(TargetInsn insn) {
73 int offset = insn.getTargetOffset()
    [all...]
Form31i.java 46 public String insnArgString(DalvInsn insn) {
47 RegisterSpecList regs = insn.getRegisters();
48 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant();
55 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
56 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant();
68 public boolean isCompatible(DalvInsn insn) {
69 RegisterSpecList regs = insn.getRegisters();
70 if (!((insn instanceof CstInsn) &&
76 CstInsn ci = (CstInsn) insn;
88 public BitSet compatibleRegs(DalvInsn insn) {
    [all...]
Form31t.java 44 public String insnArgString(DalvInsn insn) {
45 RegisterSpecList regs = insn.getRegisters();
46 return regs.get(0).regString() + ", " + branchString(insn);
51 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
52 return branchComment(insn);
63 public boolean isCompatible(DalvInsn insn) {
64 RegisterSpecList regs = insn.getRegisters();
66 if (!((insn instanceof TargetInsn) &&
77 public BitSet compatibleRegs(DalvInsn insn) {
78 RegisterSpecList regs = insn.getRegisters()
    [all...]
Form51l.java 47 public String insnArgString(DalvInsn insn) {
48 RegisterSpecList regs = insn.getRegisters();
49 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant();
56 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
57 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant();
69 public boolean isCompatible(DalvInsn insn) {
70 RegisterSpecList regs = insn.getRegisters();
71 if (!((insn instanceof CstInsn) &&
77 CstInsn ci = (CstInsn) insn;
85 public BitSet compatibleRegs(DalvInsn insn) {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form30t.java 42 public String insnArgString(DalvInsn insn) {
43 return branchString(insn);
48 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
49 return branchComment(insn);
60 public boolean isCompatible(DalvInsn insn) {
61 if (!((insn instanceof TargetInsn) &&
62 (insn.getRegisters().size() == 0))) {
71 public boolean branchFits(TargetInsn insn) {
77 public void writeTo(AnnotatedOutput out, DalvInsn insn) {
78 int offset = ((TargetInsn) insn).getTargetOffset()
    [all...]
Form21t.java 45 public String insnArgString(DalvInsn insn) {
46 RegisterSpecList regs = insn.getRegisters();
47 return regs.get(0).regString() + ", " + branchString(insn);
52 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
53 return branchComment(insn);
64 public boolean isCompatible(DalvInsn insn) {
65 RegisterSpecList regs = insn.getRegisters();
67 if (!((insn instanceof TargetInsn) &&
73 TargetInsn ti = (TargetInsn) insn;
79 public BitSet compatibleRegs(DalvInsn insn) {
    [all...]
Form22t.java 45 public String insnArgString(DalvInsn insn) {
46 RegisterSpecList regs = insn.getRegisters();
48 ", " + branchString(insn);
53 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
54 return branchComment(insn);
65 public boolean isCompatible(DalvInsn insn) {
66 RegisterSpecList regs = insn.getRegisters();
68 if (!((insn instanceof TargetInsn) &&
75 TargetInsn ti = (TargetInsn) insn;
81 public BitSet compatibleRegs(DalvInsn insn) {
    [all...]
Form10t.java 42 public String insnArgString(DalvInsn insn) {
43 return branchString(insn);
48 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
49 return branchComment(insn);
60 public boolean isCompatible(DalvInsn insn) {
61 if (!((insn instanceof TargetInsn) &&
62 (insn.getRegisters().size() == 0))) {
66 TargetInsn ti = (TargetInsn) insn;
72 public boolean branchFits(TargetInsn insn) {
73 int offset = insn.getTargetOffset()
    [all...]
Form20t.java 42 public String insnArgString(DalvInsn insn) {
43 return branchString(insn);
48 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
49 return branchComment(insn);
60 public boolean isCompatible(DalvInsn insn) {
61 if (!((insn instanceof TargetInsn) &&
62 (insn.getRegisters().size() == 0))) {
66 TargetInsn ti = (TargetInsn) insn;
72 public boolean branchFits(TargetInsn insn) {
73 int offset = insn.getTargetOffset()
    [all...]
Form31i.java 47 public String insnArgString(DalvInsn insn) {
48 RegisterSpecList regs = insn.getRegisters();
49 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant();
56 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
57 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant();
69 public boolean isCompatible(DalvInsn insn) {
70 RegisterSpecList regs = insn.getRegisters();
71 if (!((insn instanceof CstInsn) &&
77 CstInsn ci = (CstInsn) insn;
89 public BitSet compatibleRegs(DalvInsn insn) {
    [all...]
Form31t.java 45 public String insnArgString(DalvInsn insn) {
46 RegisterSpecList regs = insn.getRegisters();
47 return regs.get(0).regString() + ", " + branchString(insn);
52 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
53 return branchComment(insn);
64 public boolean isCompatible(DalvInsn insn) {
65 RegisterSpecList regs = insn.getRegisters();
67 if (!((insn instanceof TargetInsn) &&
78 public BitSet compatibleRegs(DalvInsn insn) {
79 RegisterSpecList regs = insn.getRegisters()
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form21t.java 43 public String insnArgString(DalvInsn insn) {
44 RegisterSpecList regs = insn.getRegisters();
45 return regs.get(0).regString() + ", " + branchString(insn);
50 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
51 return branchComment(insn);
62 public boolean isCompatible(DalvInsn insn) {
63 RegisterSpecList regs = insn.getRegisters();
65 if (!((insn instanceof TargetInsn) &&
71 TargetInsn ti = (TargetInsn) insn;
77 public boolean branchFits(TargetInsn insn) {
    [all...]
Form10t.java 42 public String insnArgString(DalvInsn insn) {
43 return branchString(insn);
48 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
49 return branchComment(insn);
60 public boolean isCompatible(DalvInsn insn) {
61 if (!((insn instanceof TargetInsn) &&
62 (insn.getRegisters().size() == 0))) {
66 TargetInsn ti = (TargetInsn) insn;
72 public boolean branchFits(TargetInsn insn) {
73 int offset = insn.getTargetOffset()
    [all...]
Form20t.java 42 public String insnArgString(DalvInsn insn) {
43 return branchString(insn);
48 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
49 return branchComment(insn);
60 public boolean isCompatible(DalvInsn insn) {
61 if (!((insn instanceof TargetInsn) &&
62 (insn.getRegisters().size() == 0))) {
66 TargetInsn ti = (TargetInsn) insn;
72 public boolean branchFits(TargetInsn insn) {
73 int offset = insn.getTargetOffset()
    [all...]
Form31t.java 43 public String insnArgString(DalvInsn insn) {
44 RegisterSpecList regs = insn.getRegisters();
45 return regs.get(0).regString() + ", " + branchString(insn);
50 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
51 return branchComment(insn);
62 public boolean isCompatible(DalvInsn insn) {
63 RegisterSpecList regs = insn.getRegisters();
65 if (!((insn instanceof TargetInsn) &&
76 public boolean branchFits(TargetInsn insn) {
88 public void writeTo(AnnotatedOutput out, DalvInsn insn) {
    [all...]
Form22t.java 43 public String insnArgString(DalvInsn insn) {
44 RegisterSpecList regs = insn.getRegisters();
46 ", " + branchString(insn);
51 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
52 return branchComment(insn);
63 public boolean isCompatible(DalvInsn insn) {
64 RegisterSpecList regs = insn.getRegisters();
66 if (!((insn instanceof TargetInsn) &&
73 TargetInsn ti = (TargetInsn) insn;
79 public boolean branchFits(TargetInsn insn) {
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
InsnList.java 127 * @param insn an instruction.
130 public boolean contains(final AbstractInsnNode insn) {
132 while (i != null && i != insn) {
145 * @param insn an instruction <i>of this list</i>.
151 * if insn does not belong to this list.
153 public int indexOf(final AbstractInsnNode insn) {
154 if (check && !contains(insn)) {
160 return insn.index;
169 AbstractInsnNode insn = first; local
170 while (insn != null) {
528 AbstractInsnNode insn = first; local
556 AbstractInsnNode insn = first; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_eu_emit.c 44 struct brw_instruction *insn,
48 insn->header.execution_size = BRW_EXECUTE_16;
50 insn->header.execution_size = reg.width; /* note - definitions are compatible */
104 brw_set_dest(struct brw_compile *p, struct brw_instruction *insn,
113 insn->bits1.da1.dest_reg_file = dest.file;
114 insn->bits1.da1.dest_reg_type = dest.type;
115 insn->bits1.da1.dest_address_mode = dest.address_mode;
118 insn->bits1.da1.dest_reg_nr = dest.nr;
120 if (insn->header.access_mode == BRW_ALIGN_1) {
121 insn->bits1.da1.dest_subreg_nr = dest.subnr
702 struct brw_instruction *insn; local
734 struct brw_instruction *insn = next_insn(p, opcode); local
746 struct brw_instruction *insn = next_insn(p, opcode); local
771 struct brw_instruction *insn = next_insn(p, opcode); local
993 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_NOP); local
1012 struct brw_instruction *insn = brw_alu2(p, BRW_OPCODE_JMPI, dest, src0, src1); local
1082 struct brw_instruction *insn; local
1126 struct brw_instruction *insn; local
1285 struct brw_instruction *insn; local
1318 struct brw_instruction *insn = NULL; local
1396 struct brw_instruction *insn; local
1418 struct brw_instruction *insn; local
1434 struct brw_instruction *insn; local
1471 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_DO); local
1524 struct brw_instruction *insn, *do_insn; local
1615 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_CMP); local
1640 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_WAIT); local
1669 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_MATH); local
1701 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_SEND); local
1729 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_MATH); local
1785 struct brw_instruction *insn; local
1895 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_SEND); local
2002 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_SEND); local
2059 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_SEND); local
2104 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_SEND); local
2136 struct brw_instruction *insn; local
2206 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_SEND); local
2247 struct brw_instruction *insn; local
2384 struct brw_instruction *insn; local
2439 struct brw_instruction *insn; local
2483 struct brw_instruction *insn = &p->store[ip]; local
2508 struct brw_instruction *insn = &p->store[ip]; local
2535 struct brw_instruction *insn = &p->store[ip]; local
2564 struct brw_instruction *insn; local
2602 struct brw_instruction *insn; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu_emit.c 44 struct brw_instruction *insn,
48 insn->header.execution_size = BRW_EXECUTE_16;
50 insn->header.execution_size = reg.width; /* note - definitions are compatible */
104 brw_set_dest(struct brw_compile *p, struct brw_instruction *insn,
113 insn->bits1.da1.dest_reg_file = dest.file;
114 insn->bits1.da1.dest_reg_type = dest.type;
115 insn->bits1.da1.dest_address_mode = dest.address_mode;
118 insn->bits1.da1.dest_reg_nr = dest.nr;
120 if (insn->header.access_mode == BRW_ALIGN_1) {
121 insn->bits1.da1.dest_subreg_nr = dest.subnr
702 struct brw_instruction *insn; local
734 struct brw_instruction *insn = next_insn(p, opcode); local
746 struct brw_instruction *insn = next_insn(p, opcode); local
771 struct brw_instruction *insn = next_insn(p, opcode); local
993 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_NOP); local
1012 struct brw_instruction *insn = brw_alu2(p, BRW_OPCODE_JMPI, dest, src0, src1); local
1082 struct brw_instruction *insn; local
1126 struct brw_instruction *insn; local
1285 struct brw_instruction *insn; local
1318 struct brw_instruction *insn = NULL; local
1396 struct brw_instruction *insn; local
1418 struct brw_instruction *insn; local
1434 struct brw_instruction *insn; local
1471 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_DO); local
1524 struct brw_instruction *insn, *do_insn; local
1615 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_CMP); local
1640 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_WAIT); local
1669 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_MATH); local
1701 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_SEND); local
1729 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_MATH); local
1785 struct brw_instruction *insn; local
1895 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_SEND); local
2002 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_SEND); local
2059 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_SEND); local
2104 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_SEND); local
2136 struct brw_instruction *insn; local
2206 struct brw_instruction *insn = next_insn(p, BRW_OPCODE_SEND); local
2247 struct brw_instruction *insn; local
2384 struct brw_instruction *insn; local
2439 struct brw_instruction *insn; local
2483 struct brw_instruction *insn = &p->store[ip]; local
2508 struct brw_instruction *insn = &p->store[ip]; local
2535 struct brw_instruction *insn = &p->store[ip]; local
2564 struct brw_instruction *insn; local
2602 struct brw_instruction *insn; local
    [all...]

Completed in 3759 milliseconds

1 2 3 4 5 6 7 8 91011>>