/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/swiftshader/third_party/llvm-7.0/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/tensorflow/tensorflow/lite/toco/tflite/ |
D | import_test.cc | 126 auto opcodes = BuildOpCodes(); in BuildTestModel() local 133 opcodes, subgraphs, s, buffers)); in BuildTestModel() 188 auto opcodes = BuildOpCodes(); in TEST_F() local 193 builder_, ::tflite::CreateModel(builder_, TFLITE_SCHEMA_VERSION, opcodes, in TEST_F() 202 auto opcodes = BuildOpCodes(); in TEST_F() local 207 builder_, ::tflite::CreateModel(builder_, TFLITE_SCHEMA_VERSION, opcodes, in TEST_F() 216 auto opcodes = BuildOpCodes(); in TEST_F() local 221 builder_, ::tflite::CreateModel(builder_, TFLITE_SCHEMA_VERSION, opcodes, in TEST_F() 230 auto opcodes = BuildOpCodes({static_cast<::tflite::BuiltinOperator>(-1), in TEST_F() local 236 builder_, ::tflite::CreateModel(builder_, TFLITE_SCHEMA_VERSION, opcodes, in TEST_F() [all …]
|
/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_c.py | 26 from nir_opcodes import opcodes 133 print template.render(opcodes=opcodes)
|
D | nir_opcodes_h.py | 43 from nir_opcodes import opcodes 46 print Template(template).render(opcodes=opcodes)
|
D | nir_builder_opcodes_h.py | 46 from nir_opcodes import opcodes 49 print Template(template).render(opcodes=opcodes)
|
D | nir_constant_expressions.py | 431 from nir_opcodes import opcodes 434 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/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/compiler/spirv/ |
D | vtn_gather_types_c.py | 109 opcodes = list(find_result_types(spirv_info)) variable 113 f.write(TEMPLATE.render(opcodes=opcodes))
|
/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/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_query.cc | 108 const absl::flat_hash_set<HloOpcode>& opcodes) { in ContainsInstrWithOpcode() argument 110 if (opcodes.count(instr->opcode())) { in ContainsInstrWithOpcode() 114 if (ContainsInstrWithOpcode(subcomp, opcodes)) { in ContainsInstrWithOpcode()
|
/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/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | def_use_test.cpp | 55 std::vector<SpvOp> opcodes; in GetUseOpcodes() local 57 id, [&opcodes](Instruction* user, uint32_t) { in GetUseOpcodes() 58 opcodes.push_back(user->opcode()); in GetUseOpcodes() 60 return opcodes; in GetUseOpcodes() 1301 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 6u); in TEST() local 1302 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSwitch, SpvOpReturnValue)); in TEST() 1306 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 7u); in TEST() local 1308 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSelectionMerge, SpvOpBranch, in TEST()
|
/external/deqp-deps/SPIRV-Tools/test/opt/ |
D | def_use_test.cpp | 55 std::vector<SpvOp> opcodes; in GetUseOpcodes() local 57 id, [&opcodes](Instruction* user, uint32_t) { in GetUseOpcodes() 58 opcodes.push_back(user->opcode()); in GetUseOpcodes() 60 return opcodes; in GetUseOpcodes() 1301 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 6u); in TEST() local 1302 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSwitch, SpvOpReturnValue)); in TEST() 1306 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 7u); in TEST() local 1308 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSelectionMerge, SpvOpBranch, in TEST()
|
/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,
|