/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/ |
D | ImmutableDexFile.java | 46 @Nonnull private final Opcodes opcodes; field in ImmutableDexFile 48 …public ImmutableDexFile(@Nonnull Opcodes opcodes, @Nullable Collection<? extends ClassDef> classes… in ImmutableDexFile() argument 50 this.opcodes = opcodes; in ImmutableDexFile() 53 …public ImmutableDexFile(@Nonnull Opcodes opcodes, @Nullable ImmutableSet<? extends ImmutableClassD… in ImmutableDexFile() argument 55 this.opcodes = opcodes; in ImmutableDexFile() 66 @Nonnull @Override public Opcodes getOpcodes() { return opcodes; } in getOpcodes()
|
/external/llvm/test/CodeGen/ARM/ |
D | tail-dup.ll | 12 define i32 @fn(i32* nocapture %opcodes) nounwind readonly ssp { 14 %0 = load i32, i32* %opcodes, align 4 20 %1 = load i32, i32* %opcodes.addr.0, align 4 26 %2 = load i32, i32* %opcodes.addr.0, align 4 32 …%opcodes.pn = phi i32* [ %opcodes, %entry ], [ %opcodes.addr.0, %DECREMENT ], [ %opcodes.addr.0, %… 34 %opcodes.addr.0 = getelementptr inbounds i32, i32* %opcodes.pn, i32 1
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
D | DexBackedDexFile.java | 57 @Nonnull private final Opcodes opcodes; field in DexBackedDexFile 72 …protected DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf, int offset, boolean veri… in DexBackedDexFile() argument 75 this.opcodes = opcodes; in DexBackedDexFile() 95 public DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull BaseDexBuffer buf) { in DexBackedDexFile() argument 96 this(opcodes, buf.buf, buf.baseOffset); in DexBackedDexFile() 99 public DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf, int offset) { in DexBackedDexFile() argument 100 this(opcodes, buf, offset, false); in DexBackedDexFile() 103 public DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf) { in DexBackedDexFile() argument 104 this(opcodes, buf, 0, true); in DexBackedDexFile() 108 … public static DexBackedDexFile fromInputStream(@Nonnull Opcodes opcodes, @Nonnull InputStream is) in fromInputStream() argument [all …]
|
D | ZipDexContainer.java | 61 private final Opcodes opcodes; field in ZipDexContainer 69 public ZipDexContainer(@Nonnull File zipFilePath, @Nonnull Opcodes opcodes) { in ZipDexContainer() argument 71 this.opcodes = opcodes; in ZipDexContainer() 75 return opcodes; in getOpcodes() 150 … protected ZipDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf, @Nonnull String entryName) { in ZipDexFile() argument 151 super(opcodes, buf, 0); in ZipDexFile() 193 return new ZipDexFile(opcodes, buf, zipEntry.getName()); in loadEntry()
|
D | DexBackedOdexFile.java | 52 public DexBackedOdexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] odexBuf, byte[] dexBuf) { in DexBackedOdexFile() argument 53 super(opcodes, dexBuf); in DexBackedOdexFile() 87 …@Nonnull public static DexBackedOdexFile fromInputStream(@Nonnull Opcodes opcodes, @Nonnull InputS… 101 return new DexBackedOdexFile(opcodes, odexBuf, dexBuf);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/ |
D | DexFileFactory.java | 61 …public static DexBackedDexFile loadDexFile(@Nonnull String path, @Nonnull Opcodes opcodes) throws … in loadDexFile() argument 62 return loadDexFile(new File(path), opcodes); in loadDexFile() 82 …public static DexBackedDexFile loadDexFile(@Nonnull File file, @Nonnull Opcodes opcodes) throws IO… in loadDexFile() argument 88 ZipDexContainer container = new ZipDexContainer(file, opcodes); in loadDexFile() 97 return DexBackedDexFile.fromInputStream(opcodes, inputStream); in loadDexFile() 103 return DexBackedOdexFile.fromInputStream(opcodes, inputStream); in loadDexFile() 179 … boolean exactMatch, @Nonnull Opcodes opcodes) throws IOException { in loadDexEntry() argument 185 ZipDexContainer container = new ZipDexContainer(file, opcodes); in loadDexEntry() 233 @Nonnull File file, @Nonnull final Opcodes opcodes) throws IOException { in loadDexContainer() argument 238 ZipDexContainer zipDexContainer = new ZipDexContainer(file, opcodes); in loadDexContainer() [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
D | SyntheticAccessorFSM.java | 216 @Nonnull private final Opcodes opcodes; field in SyntheticAccessorFSM 218 public SyntheticAccessorFSM(@Nonnull Opcodes opcodes) { in SyntheticAccessorFSM() argument 219 this.opcodes = opcodes; in SyntheticAccessorFSM() 281 …if ( ( opcodes.getOpcodeValue(instructions.get(p).getOpcode())) < _SyntheticAccessorFSM_trans_keys… in test() 283 …else if ( ( opcodes.getOpcodeValue(instructions.get(p).getOpcode())) > _SyntheticAccessorFSM_trans… in test() 304 …if ( ( opcodes.getOpcodeValue(instructions.get(p).getOpcode())) < _SyntheticAccessorFSM_trans_keys… in test() 306 …else if ( ( opcodes.getOpcodeValue(instructions.get(p).getOpcode())) > _SyntheticAccessorFSM_trans… in test()
|
/external/mesa3d/src/compiler/nir/ |
D | nir_opcodes_h.py | 44 from nir_opcodes import opcodes 47 print Template(template).render(opcodes=opcodes)
|
D | nir_opcodes_c.py | 27 from nir_opcodes import opcodes 55 print template.render(opcodes=opcodes)
|
D | nir_builder_opcodes_h.py | 47 from nir_opcodes import opcodes 50 print Template(template).render(opcodes=opcodes)
|
D | nir_constant_expressions.py | 404 from nir_opcodes import opcodes 407 print Template(template).render(opcodes=opcodes, type_sizes=type_sizes,
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
D | RawDexFile.java | 50 public RawDexFile(@Nonnull Opcodes opcodes, @Nonnull BaseDexBuffer buf) { in RawDexFile() argument 51 super(opcodes, buf); in RawDexFile() 55 public RawDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf) { in RawDexFile() argument 56 super(opcodes, buf); in RawDexFile()
|
/external/tensorflow/tensorflow/contrib/lite/tools/ |
D | gen_op_registration.cc | 35 auto opcodes = model->operator_codes(); in ReadOpsFromModel() local 36 if (!opcodes) return; in ReadOpsFromModel() 37 for (const auto* opcode : *opcodes) { in ReadOpsFromModel()
|
/external/smali/smali/src/main/antlr/ |
D | smaliTreeWalker.g | 81 private Opcodes opcodes = Opcodes.forApi(apiLevel); 89 this.opcodes = Opcodes.forApi(apiLevel); 765 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT10t.text); 773 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT10x.text); 781 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT11n.text); 794 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT11x.text); 804 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT12x.text); 815 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT20bc.text); 828 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT20t.text); 836 Opcode opcode = opcodes.getOpcodeByName($inst.text); [all …]
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | i915_debug_fp.c | 34 static const char *opcodes[0x20] = { variable 252 printf("%s ", opcodes[opcode]); in print_arith_op() 280 printf("%s ", opcodes[opcode]); in print_tex_op() 293 printf("%s ", opcodes[opcode]); in print_dcl_op()
|
/external/llvm/include/llvm/Target/ |
D | GenericOpcodes.td | 10 // This file defines the generic opcodes used with GlobalISel. 11 // After instruction selection, these opcodes should not appear. 46 // TODO: Add the other generic opcodes.
|
/external/python/cpython2/Doc/library/ |
D | pickletools.rst | 6 opcodes, as well as some useful functions. 29 pickler. Successive levels, indicated by ``MARK`` opcodes in the stream, are 35 Provides an :term:`iterator` over all of the opcodes in a pickle, returning a 44 opcodes. The optimized pickle is shorter, takes less transmission time,
|
/external/mesa3d/src/gallium/drivers/i915/ |
D | i915_debug_fp.c | 49 static const char *opcodes[0x20] = { variable 268 PRINTF(stream, "%s ", opcodes[opcode]); in print_arith_op() 297 PRINTF(stream, "%s ", opcodes[opcode]); in print_tex_op() 325 PRINTF(stream, "%s ", opcodes[opcode]); in print_dcl_op()
|
/external/python/cpython3/Doc/library/ |
D | pickletools.rst | 6 pickle-machine opcodes, as well as some useful functions. 47 highest protocol among opcodes = 2 89 pickler. Successive levels, indicated by ``MARK`` opcodes in the 100 Provides an :term:`iterator` over all of the opcodes in a pickle, returning a 109 opcodes. The optimized pickle is shorter, takes less transmission time,
|
/external/llvm/test/tools/llvm-readobj/ARM/ |
D | unwind.s | 52 .section .opcodes 54 .type opcodes,%function 55 opcodes: label 215 @ CHECK: SectionName: .ARM.exidx.opcodes 219 @ CHECK: FunctionName: opcodes
|
/external/smali/dexlib2/src/main/ragel/ |
D | SyntheticAccessorFSM.rl | 67 @Nonnull private final Opcodes opcodes; 69 public SyntheticAccessorFSM(@Nonnull Opcodes opcodes) { 70 this.opcodes = opcodes; 95 getkey opcodes.getOpcodeValue(instructions.get(p).getOpcode()); 160 type_conversion = 0x81 .. 0x8f; # all type-conversion opcodes
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
D | InstructionWriter.java | 59 @Nonnull private final Opcodes opcodes; field in InstructionWriter 71 @Nonnull Opcodes opcodes, in makeInstructionWriter() 79 … opcodes, writer, stringSection, typeSection, fieldSection, methodSection, protoSection); in makeInstructionWriter() 82 InstructionWriter(@Nonnull Opcodes opcodes, in InstructionWriter() argument 89 this.opcodes = opcodes; in InstructionWriter() 99 Short value = opcodes.getOpcodeValue(opcode); in getOpcodeValue() 101 … throw new ExceptionWithContext("Instruction %s is invalid for api %d", opcode.name, opcodes.api); in getOpcodeValue()
|
/external/python/cpython3/Lib/test/ |
D | test_dtrace.py | 123 opcodes = set(["CALL_FUNCTION", "CALL_FUNCTION_EX", "CALL_FUNCTION_KW"]) 141 opcodes.discard(instruction.opname) 143 self.assertEqual(set(), opcodes)
|
/external/javassist/src/main/javassist/bytecode/ |
D | InstructionPrinter.java | 28 private final static String opcodes[] = Mnemonic.OPCODE; field in InstructionPrinter 62 if (opcode > opcodes.length || opcode < 0) in instructionString() 65 String opstring = opcodes[opcode]; in instructionString() 164 return opcodes[opcode] + " " + index; in wide()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
D | ClassPathResolver.java | 58 private final Opcodes opcodes; field in ClassPathResolver 112 opcodes = dexFile.getOpcodes(); in ClassPathResolver() 115 bootClassPathEntries = getDefaultBootClassPath(dexFile, opcodes.api); in ClassPathResolver() 227 container = DexFileFactory.loadDexContainer(entryFile, opcodes); in loadEntry()
|