HomeSort by relevance Sort by last modified time
    Searched refs:insn (Results 26 - 50 of 1519) sorted by null

12 3 4 5 6 7 8 91011>>

  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
Format22s.java 26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
29 file.writeUShort((short) insn.vregC);
49 public long getConst(Instruction insn) {
50 return insn.vregC;
54 public void setConst(Instruction insn, long constant) {
55 insn.vregC = constant;
Format22t.java 26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
29 file.writeUShort((short) insn.vregC);
49 public long getTarget(Instruction insn) {
50 return insn.vregC;
54 public void setTarget(Instruction insn, long target) {
55 insn.vregC = target;
Format35mi.java 26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.invokeFormatInfo.vregG | (insn.vregA << 4)));
29 file.writeUShort((short) insn.vregB);
30 file.writeByte((byte) ((insn.invokeFormatInfo.vregD << 4) | insn.vregC));
31 file.writeByte((byte) ((insn.invokeFormatInfo.vregF << 4)
32 | insn.invokeFormatInfo.vregE));
Format35ms.java 26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) (insn.invokeFormatInfo.vregG | (insn.vregA << 4)));
29 file.writeUShort((short) insn.vregB);
30 file.writeByte((byte) ((insn.invokeFormatInfo.vregD << 4) | insn.vregC));
31 file.writeByte((byte) ((insn.invokeFormatInfo.vregF << 4)
32 | insn.invokeFormatInfo.vregE));
Format35c.java 28 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
29 file.writeByte((byte) insn.info.value);
30 file.writeByte((byte) (insn.invokeFormatInfo.vregG | (insn.vregA << 4)));
31 file.writeUShort((short) insn.vregB);
32 file.writeByte((byte) ((insn.invokeFormatInfo.vregD << 4) | insn.vregC));
33 file.writeByte((byte) ((insn.invokeFormatInfo.vregF << 4)
34 | insn.invokeFormatInfo.vregE));
59 public int getPoolIndex(Instruction insn) {
    [all...]
ContainsConst.java 27 public long getConst(Instruction insn);
29 public void setConst(Instruction insn, long constant);
  /external/google-breakpad/src/third_party/libdisasm/
x86_disasm.c 18 x86_insn_t *insn ){
22 if ( ! buf || ! insn || ! buf_len ) {
29 memset( insn, 0, sizeof(x86_insn_t) );
30 insn->addr = buf_rva + offset;
31 insn->offset = offset;
32 /* default to invalid insn */
33 insn->type = insn_invalid;
34 insn->group = insn_none;
52 size = ia32_disasm_addr( bytes, len, insn);
63 MAKE_INVALID( insn, bytes )
76 x86_insn_t insn; local
131 x86_insn_t insn; local
    [all...]
  /external/libchrome/sandbox/linux/bpf_dsl/
verifier.cc 35 void Ld(State* state, const struct sock_filter& insn, const char** err) {
36 if (BPF_SIZE(insn.code) != BPF_W || BPF_MODE(insn.code) != BPF_ABS ||
37 insn.jt != 0 || insn.jf != 0) {
41 if (insn.k < sizeof(struct arch_seccomp_data) && (insn.k & 3) == 0) {
44 reinterpret_cast<const char*>(&state->data) + insn.k, 4);
53 void Jmp(State* state, const struct sock_filter& insn, const char** err) {
54 if (BPF_OP(insn.code) == BPF_JA)
189 const struct sock_filter& insn = program[state.ip]; local
    [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/valgrind/none/tests/s390x/
dfpext.c 7 #define L2D(insn, initial, target,round) \
11 asm volatile(insn(round,0,0,2) :"=f" (_t):"d"(source)); \
15 #define I2D(insn, initial, target,round) \
19 asm volatile(insn(round,0,0,2) :"=f" (_t):"d"(source)); \
23 #define D2L(insn, initial, type, round, cc) \
27 asm volatile(insn(round,0,2,0) \
34 #define D2I(insn, initial, type, round, cc) \
38 asm volatile(insn(round,0,2,0) \
46 #define DO_PRINT_L2D(insn, l, d, round) \
48 printf(#insn " round=%d %lu -> ", 0x##round, l);
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
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...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
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...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
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...]
  /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...]
  /toolchain/binutils/binutils-2.25/opcodes/
m10200-dis.c 30 unsigned long insn,
67 if ((op->mask & insn) == op->opcode
88 value = (insn & 0xffff) << 8;
93 value = ((insn >> (operand->shift))
110 value = ((insn >> (operand->shift + extra_shift))
117 value = ((insn >> (operand->shift + extra_shift))
157 (*info->fprintf_func) (info->stream, _("unknown\t0x%04lx"), insn);
165 unsigned long insn; local
177 insn = *(unsigned char *) buffer;
180 if ((insn & 0xf0) == 0x0
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/program/
MBranchInsn.java 33 newInsn.insn = insn.clone();
MInsnWithData.java 33 newInsn.insn = insn.clone();

Completed in 2202 milliseconds

12 3 4 5 6 7 8 91011>>