/external/llvm-project/llvm/test/CodeGen/WebAssembly/ |
D | multivalue-stackify.py | 40 for _, defs in program: 41 num_defs += len(defs) 72 for _, defs in program: 73 if len(defs) == 0: 88 for uses, defs in program[::-1]: 89 if defs and all(not used[d] for d in defs): 98 for uses, defs in program: 101 if len(defs) >= 2: 102 for d in defs: 109 for uses, defs in program: [all …]
|
/external/skia/tools/skqp/ |
D | gn_to_bp.py | 171 defs = gn_to_bp_utils.GetArchSources(os.path.join(skia_gn_dir, 'opts.gni')) variable 194 'arm_srcs': bpfmt(16, defs['armv7']), 195 'arm_neon_srcs': bpfmt(20, defs['neon']), 196 'arm64_srcs': bpfmt(16, defs['arm64'] + 197 defs['crc32']), 198 'none_srcs': bpfmt(16, defs['none']), 199 'x86_srcs': bpfmt(16, defs['sse2'] + 200 defs['ssse3'] + 201 defs['sse41'] + 202 defs['sse42'] + [all …]
|
/external/skqp/tools/skqp/ |
D | gn_to_bp.py | 173 defs = gn_to_bp_utils.GetArchSources(os.path.join(skia_gn_dir, 'opts.gni')) variable 196 'arm_srcs': bpfmt(16, defs['armv7']), 197 'arm_neon_srcs': bpfmt(20, defs['neon']), 198 'arm64_srcs': bpfmt(16, defs['arm64'] + 199 defs['crc32']), 200 'none_srcs': bpfmt(16, defs['none']), 201 'x86_srcs': bpfmt(16, defs['sse2'] + 202 defs['ssse3'] + 203 defs['sse41'] + 204 defs['sse42'] + [all …]
|
/external/tensorflow/tensorflow/compiler/mlir/lite/ |
D | converter_gen.cc | 90 const std::vector<Record *> &defs, in EmitOptionBuilders() argument 95 for (const auto *def : defs) { in EmitOptionBuilders() 170 static void EmitOperatorBuilders(const std::vector<Record *> &defs, in EmitOperatorBuilders() argument 174 for (const auto *def : defs) { in EmitOperatorBuilders() 235 static void EmitGetBuiltinOpCode(const std::vector<Record *> &defs, in EmitGetBuiltinOpCode() argument 242 for (const auto *def : defs) { in EmitGetBuiltinOpCode() 271 const std::vector<Record *> &defs, in EmitOperandNumbers() argument 277 for (const auto *def : defs) { in EmitOperandNumbers() 316 static void EmitBuildOperator(const std::vector<Record *> &defs, in EmitBuildOperator() argument 329 for (const auto *def : defs) { in EmitBuildOperator() [all …]
|
/external/skqp/gn/ |
D | gn_to_bp.py | 354 defs = gn_to_bp_utils.GetArchSources(os.path.join(here, 'opts.gni')) variable 428 'arm_srcs': bpfmt(16, strip_headers(defs['armv7'])), 429 'arm_neon_srcs': bpfmt(20, strip_headers(defs['neon'])), 430 'arm64_srcs': bpfmt(16, strip_headers(defs['arm64'] + 431 defs['crc32'])), 432 'none_srcs': bpfmt(16, strip_headers(defs['none'])), 433 'x86_srcs': bpfmt(16, strip_headers(defs['sse2'] + 434 defs['ssse3'] + 435 defs['sse41'] + 436 defs['sse42'] + [all …]
|
D | gn_to_bp_utils.py | 94 defs = {} 95 execfile(opts_file, builtins, defs) 98 for arch in defs: 99 defs[arch] = [ p.replace('$_src', 'src') for p in defs[arch]] 101 return defs
|
/external/llvm-project/llvm/include/llvm/Target/GlobalISel/ |
D | Combine.td | 50 class GICombineRule<dag defs, dag match, dag apply> : GICombine { 54 dag Defs = defs; 67 def defs; 69 /// All arguments of the defs operator must be subclasses of GIDefKind or 117 (defs root:$d), 123 (defs root:$root, extending_load_matchdata:$matchinfo), 130 (defs root:$d), 137 (defs root:$root, sext_inreg_of_load_matchdata:$matchinfo), 143 (defs root:$root, indexed_load_store_matchdata:$matchinfo), 149 (defs root:$root), [all …]
|
/external/llvm-project/clang/test/Modules/Inputs/submodules-merge-defs/ |
D | module.modulemap | 2 textual header "defs.h" 4 module "use" { header "use-defs.h" } 5 module "use-2" { requires use_defs_twice header "use-defs-2.h" } 14 module "merged-defs" { 15 header "merged-defs.h" 21 use "merged-defs"
|
/external/clang/test/Modules/Inputs/submodules-merge-defs/ |
D | module.modulemap | 2 textual header "defs.h" 4 module "use" { header "use-defs.h" } 5 module "use-2" { requires use_defs_twice header "use-defs-2.h" } 14 module "merged-defs" { 15 header "merged-defs.h" 21 use "merged-defs"
|
/external/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_compiler_nir_ra.c | 137 struct live_def *defs = rzalloc_array(NULL, struct live_def, max_nodes); in etna_ra_assign() local 139 unsigned num_nodes = etna_live_defs(impl, defs, live_map); in etna_ra_assign() 144 nir_instr *instr = defs[i].instr; in etna_ra_assign() 145 nir_dest *dest = defs[i].dest; in etna_ra_assign() 223 assert(defs[i].live_start < defs[i].live_end); in etna_ra_assign() 225 if (defs[i].live_start >= defs[j].live_end || defs[j].live_start >= defs[i].live_end) in etna_ra_assign() 231 ralloc_free(defs); in etna_ra_assign()
|
D | etnaviv_compiler_nir_liveness.c | 47 struct live_def *defs; member 103 range_include(&state->defs[i], state->index); in set_src_live() 121 etna_live_defs(nir_function_impl *impl, struct live_def *defs, unsigned *live_map) in etna_live_defs() argument 127 state.defs = defs; in etna_live_defs() 143 defs[state.num_defs] = (struct live_def) {instr, dest, state.num_defs, 0}; in etna_live_defs() 150 defs[state.num_defs].live_start = 0; in etna_live_defs() 195 if (state.index && instr == defs[state.index - 1].instr) { in etna_live_defs() 243 range_include(&state.defs[i], block_live_index[block->index]); in etna_live_defs() 246 range_include(&state.defs[i], block_live_index[block->index + 1]); in etna_live_defs()
|
/external/skia/gn/ |
D | gn_to_bp.py | 545 defs = gn_to_bp_utils.GetArchSources(os.path.join(here, 'opts.gni')) variable 627 'arm_srcs': bpfmt(16, strip_headers(defs['armv7'])), 628 'arm_neon_srcs': bpfmt(20, strip_headers(defs['neon'])), 629 'arm64_srcs': bpfmt(16, strip_headers(defs['arm64'] + 630 defs['crc32'])), 631 'x86_srcs': bpfmt(16, strip_headers(defs['sse2'] + 632 defs['ssse3'] + 633 defs['sse41'] + 634 defs['sse42'] + 635 defs['avx' ] + [all …]
|
D | gn_to_bp_utils.py | 93 defs = {} 94 execfile(opts_file, builtins, defs) 97 for arch in defs: 98 defs[arch] = [ p.replace('$_src', 'src') for p in defs[arch]] 100 return defs
|
/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_def_use.cpp | 38 void def_use::process_phi(container_node *c, bool defs, bool uses) { in process_phi() argument 44 if (defs) in process_phi() 49 void def_use::run_on(node* n, bool defs) { in run_on() argument 62 if (defs) in run_on() 66 } else if (is_region & defs) { in run_on() 75 run_on(*I, defs); in run_on() 82 process_phi(r->phi, defs, !defs); in run_on() 83 if (r->loop_phi && !defs) in run_on()
|
/external/llvm-project/llvm/lib/Target/AArch64/ |
D | AArch64Combine.td | 15 (defs root:$root), 33 (defs root:$root, shuffle_matchdata:$matchinfo), 40 (defs root:$root, shuffle_matchdata:$matchinfo), 47 (defs root:$root, shuffle_matchdata:$matchinfo), 54 (defs root:$root, shuffle_matchdata:$matchinfo), 61 (defs root:$root, shuffle_matchdata:$matchinfo), 68 (defs root:$root, shuffle_matchdata:$matchinfo), 80 (defs root:$root, vashr_vlshr_imm_matchdata:$matchinfo), 89 (defs root:$root, form_duplane_matchdata:$matchinfo), 98 (defs root:$root, adjust_icmp_imm_matchdata:$matchinfo), [all …]
|
/external/mesa3d/src/compiler/nir/ |
D | nir_liveness.c | 299 liveness->defs[index].start = MIN2(liveness->defs[index].start, instr->index); in def_cb() 302 liveness->defs[index].end = MAX2(liveness->defs[index].end, in def_cb() 322 liveness->defs = rzalloc_array(liveness, nir_liveness_bounds, in nir_live_ssa_defs_per_instr() 327 liveness->defs->start = ~0; in nir_live_ssa_defs_per_instr() 332 liveness->defs[index].start = MIN2(liveness->defs[index].start, in nir_live_ssa_defs_per_instr() 347 liveness->defs[nif->condition.ssa->index].end = MAX2( in nir_live_ssa_defs_per_instr() 348 liveness->defs[nif->condition.ssa->index].end, block->end_ip); in nir_live_ssa_defs_per_instr() 353 liveness->defs[index].end = MAX2(liveness->defs[index].end, in nir_live_ssa_defs_per_instr()
|
/external/tensorflow/tensorflow/compiler/mlir/hlo/include/mlir-hlo/Dialect/mhlo/IR/ |
D | CMakeLists.txt | 20 mlir_tablegen(${dialect}.cc.inc -gen-op-defs) 22 mlir_tablegen(${dialect}_structs.cc.inc -gen-struct-attr-defs) 32 mlir_tablegen(hlo_ops.cc.inc -gen-op-defs) 34 mlir_tablegen(hlo_ops_base_structs.cc.inc -gen-struct-attr-defs) 36 mlir_tablegen(hlo_ops_base_enums.cc.inc -gen-enum-defs) 41 mlir_tablegen(lhlo_gpu_ops.cc.inc -gen-op-defs) 44 mlir_tablegen(lhlo_gpu_ops_structs.cc.inc -gen-struct-attr-defs) 47 mlir_tablegen(lhlo_gpu_ops_enums.cc.inc -gen-enum-defs)
|
/external/llvm-project/mlir/test/lib/Dialect/Test/ |
D | CMakeLists.txt | 9 mlir_tablegen(TestTypeInterfaces.cpp.inc -gen-type-interface-defs) 11 mlir_tablegen(TestOpInterfaces.cpp.inc -gen-op-interface-defs) 16 mlir_tablegen(TestTypeDefs.cpp.inc -gen-typedef-defs) 22 mlir_tablegen(TestOps.cpp.inc -gen-op-defs) 25 mlir_tablegen(TestOpEnums.cpp.inc -gen-enum-defs) 27 mlir_tablegen(TestOpStructs.cpp.inc -gen-struct-attr-defs)
|
/external/tensorflow/tensorflow/python/autograph/core/ |
D | converter_test.py | 77 defs, = anno.getanno(symbol_a, anno.Static.ORIG_DEFINITIONS) 78 defs.directives[directive_key] = { 116 defs = anno.getanno(symbol_a, anno.Static.ORIG_DEFINITIONS) 117 defs[0].directives[directive_key] = { 121 defs[1].directives[directive_key] = { 143 defs = anno.getanno(symbol_a, anno.Static.ORIG_DEFINITIONS) 144 defs[0].directives[directive_key] = { 147 defs[1].directives[directive_key] = {
|
/external/python/cpython3/Tools/scripts/ |
D | parseentities.py | 34 def writefile(f,defs): argument 37 items = sorted(defs.items()) 58 defs = parse(text) variable 62 writefile(outfile, defs) 64 writefile(sys.stdout, defs)
|
/external/elfutils/libcpu/ |
D | ChangeLog | 187 * defs/i386: Add dppd, dpps, insertps, movntdqa, mpsadbw, packusdw, 219 * defs/i386: Add blendvpd and blendvps opcodes. 223 * defs/i386: Add blendpd and blendps opcodes. 227 * defs/i386: Add entry for AMD 3DNOW. 237 * defs/i386: Fix typo in comment. 247 * Makefile.am (EXTRA_DIST): Remove defs/x86_64. 251 * defs/i386: Add fixes for opcodes with register number in opcode, 287 * defs/i386: Fix a few instructions with immediate arguments. 296 * defs/i386: Lots of changes for x86-64. 300 * defs/x86_64: Removed. [all …]
|
/external/clang/utils/ABITest/ |
D | Makefile.test.common | 46 .PHONY: test.%.defs-report 47 test.%.defs-report: temps/test.%.defs.diff 56 …s/test.%.xx temps/test.%.xy temps/test.%.yx temps/test.%.yy temps/test.%.x.defs temps/test.%.y.defs 77 .PRECIOUS: temps/test.%.defs.diff 78 temps/test.%.defs.diff: temps/test.%.x.defs temps/test.%.y.defs 119 .PRECIOUS: temps/test.%.x.defs 120 temps/test.%.x.defs: temps/test.%.a.x.ll temps/.dir 122 .PRECIOUS: temps/test.%.y.defs 123 temps/test.%.y.defs: temps/test.%.a.y.ll temps/.dir
|
/external/llvm-project/clang/utils/ABITest/ |
D | Makefile.test.common | 46 .PHONY: test.%.defs-report 47 test.%.defs-report: temps/test.%.defs.diff 56 …s/test.%.xx temps/test.%.xy temps/test.%.yx temps/test.%.yy temps/test.%.x.defs temps/test.%.y.defs 77 .PRECIOUS: temps/test.%.defs.diff 78 temps/test.%.defs.diff: temps/test.%.x.defs temps/test.%.y.defs 119 .PRECIOUS: temps/test.%.x.defs 120 temps/test.%.x.defs: temps/test.%.a.x.ll temps/.dir 122 .PRECIOUS: temps/test.%.y.defs 123 temps/test.%.y.defs: temps/test.%.a.y.ll temps/.dir
|
/external/llvm-project/mlir/tools/mlir-tblgen/ |
D | DialectGen.cpp | 193 auto defs = recordKeeper.getAllDerivedDefinitions("Dialect"); in emitDialectDecls() local 194 if (defs.empty()) in emitDialectDecls() 199 if (defs.size() == 1 && selectedDialect.getNumOccurrences() == 0) { in emitDialectDecls() 200 dialectDef = defs.front(); in emitDialectDecls() 206 auto dialectIt = llvm::find_if(defs, [](const llvm::Record *def) { in emitDialectDecls() 209 if (dialectIt == defs.end()) { in emitDialectDecls()
|
/external/adhd/defs/ |
D | definitions.mk | 5 include $(ADHD_DIR)/defs/utilities.mk 6 include $(ADHD_DIR)/defs/c.mk 7 include $(ADHD_DIR)/defs/make.mk
|