HomeSort by relevance Sort by last modified time
    Searched defs:opcode (Results 51 - 75 of 1020) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/linux/mmc/
ioctl.h 26 __u32 opcode; member in struct:mmc_ioc_cmd
  /prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/linux/mmc/
ioctl.h 26 __u32 opcode; member in struct:mmc_ioc_cmd
  /prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/linux/mmc/
ioctl.h 26 __u32 opcode; member in struct:mmc_ioc_cmd
  /prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/linux/mmc/
ioctl.h 26 __u32 opcode; member in struct:mmc_ioc_cmd
  /prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/linux/mmc/
ioctl.h 26 __u32 opcode; member in struct:mmc_ioc_cmd
  /prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/linux/mmc/
ioctl.h 26 __u32 opcode; member in struct:mmc_ioc_cmd
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/linux/mmc/
ioctl.h 26 __u32 opcode; member in struct:mmc_ioc_cmd
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/linux/mmc/
ioctl.h 26 __u32 opcode; member in struct:mmc_ioc_cmd
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/linux/mmc/
ioctl.h 26 __u32 opcode; member in struct:mmc_ioc_cmd
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/linux/mmc/
ioctl.h 26 __u32 opcode; member in struct:mmc_ioc_cmd
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/mmc/
ioctl.h 26 __u32 opcode; member in struct:mmc_ioc_cmd
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/mmc/
ioctl.h 26 __u32 opcode; member in struct:mmc_ioc_cmd
  /toolchain/binutils/binutils-2.25/include/opcode/
moxie.h 1 /* Definitions for decoding the moxie opcode table.
67 short opcode; member in struct:moxie_opc_info_t
pj.h 1 /* Definitions for decoding the picoJava opcode table.
41 short opcode; member in struct:pj_opc_info_t
  /toolchain/binutils/binutils-2.25/opcodes/
alpha-dis.c 4 patterned after the PPC opcode handling written by Ian Lance Taylor.
26 #include "opcode/alpha.h"
63 const struct alpha_opcode *opcode, *opcode_end; local
71 opcode = alpha_opcodes;
72 opcode_end = opcode + alpha_num_opcodes;
76 opcode_index[op] = opcode;
77 while (opcode < opcode_end && op == AXP_OP (opcode->opcode))
78 ++opcode;
    [all...]
i860-dis.c 25 #include "opcode/i860.h"
52 /* True if opcode is xor, xorh, and, andh, or, orh, andnot, andnoth. */
99 const struct i860_opcode *opcode = 0; local
116 opcode = &i860_opcodes[i];
117 if ((insn & opcode->match) == opcode->match
118 && (insn & opcode->lose) == 0)
128 /* Instruction not in opcode table. */
141 (*info->fprintf_func) (info->stream, "d.%s\t", opcode->name);
143 (*info->fprintf_func) (info->stream, "%s\t", opcode->name)
    [all...]
pj-dis.c 24 #include "opcode/pj.h"
48 unsigned char opcode; local
51 if ((status = info->read_memory_func (addr, &opcode, 1, info)))
54 if (opcode == 0xff)
60 fprintf_fn (stream, "%s\t", pj_opc_info[opcode + byte_2].u.name);
67 const pj_opc_info_t *op = &pj_opc_info[opcode];
spu-dis.c 25 #include "opcode/spu.h"
40 /* If two instructions have the same opcode then we prefer the first
44 int o = spu_opcodes[i].opcode;
57 unsigned int opcode = insn >> (32-11); local
59 /* Init the table. This assumes that element 0/opcode 0 (currently
64 if ((op_index = spu_disassemble_table[opcode & 0x780]) != 0
68 if ((op_index = spu_disassemble_table[opcode & 0x7f0]) != 0
72 if ((op_index = spu_disassemble_table[opcode & 0x7f8]) != 0
76 if ((op_index = spu_disassemble_table[opcode & 0x7fc]) != 0
80 if ((op_index = spu_disassemble_table[opcode & 0x7fe]) !=
    [all...]
tilepro-dis.c 28 #include "opcode/tilepro.h"
57 const struct tilepro_opcode *opcode = decoded[i].opcode; local
59 if (opcode->mnemonic != expected_mnemonic)
70 *last_operand_ret = decoded[i].operand_values[opcode->num_operands - 1];
108 /* Determine which nop opcode is used for padding and should be skipped. */
112 if (!decoded[i].opcode->can_bundle)
123 const struct tilepro_opcode *opcode = decoded[i].opcode; local
129 if (opcode->mnemonic == padding_mnemoni
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
CmpBiasChanger.java 25 import dexfuzz.rawdex.Opcode;
121 Opcode newOpcode = getLegalDifferentOpcode(cmpBiasInsn);
133 private Opcode getLegalDifferentOpcode(MInsn mInsn) {
134 Opcode opcode = mInsn.insn.info.opcode; local
135 if (opcode == Opcode.CMPG_DOUBLE) {
136 return Opcode.CMPL_DOUBLE;
138 if (opcode == Opcode.CMPL_DOUBLE)
148 Opcode opcode = mInsn.insn.info.opcode; local
    [all...]
FieldFlagChanger.java 26 import dexfuzz.rawdex.Opcode;
156 Opcode opcode = mInsn.insn.info.opcode; local
157 if (Opcode.isBetween(opcode, Opcode.IGET, Opcode.SPUT_SHORT)) {
InstructionDuplicator.java 24 import dexfuzz.rawdex.Opcode;
74 Opcode opcode = oldInsn.insn.info.opcode; local
76 if (opcode == Opcode.SPARSE_SWITCH || opcode == Opcode.PACKED_SWITCH
77 || opcode == Opcode.FILL_ARRAY_DATA || oldInsn.insn.justRaw)
    [all...]
  /bionic/libc/kernel/uapi/linux/mmc/
ioctl.h 26 __u32 opcode; member in struct:mmc_ioc_cmd
  /bionic/libc/kernel/uapi/linux/netfilter_bridge/
ebt_arp.h 39 __be16 opcode; member in struct:ebt_arp_info
  /dalvik/dx/src/com/android/dx/rop/code/
PlainInsn.java 35 * @param opcode {@code non-null;} the opcode
40 public PlainInsn(Rop opcode, SourcePosition position,
42 super(opcode, position, result, sources);
44 switch (opcode.getBranchingness()) {
51 if (result != null && opcode.getBranchingness() != Rop.BRANCH_NONE) {
61 * @param opcode {@code non-null;} the opcode
66 public PlainInsn(Rop opcode, SourcePosition position, RegisterSpec result,
68 this(opcode, position, result, RegisterSpecList.make(source))
130 int opcode = getOpcode().getOpcode(); local
    [all...]

Completed in 753 milliseconds

1 23 4 5 6 7 8 91011>>