/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 | operator_converter_gen.cc | 70 const std::vector<Record *> &defs, in EmitOptionBuilders() argument 75 for (const auto *def : defs) { in EmitOptionBuilders() 144 static void EmitOperatorBuilders(const std::vector<Record *> &defs, in EmitOperatorBuilders() argument 148 for (const auto *def : defs) { in EmitOperatorBuilders() 202 static void EmitGetBuiltinOpCode(const std::vector<Record *> &defs, in EmitGetBuiltinOpCode() argument 209 for (const auto *def : defs) { in EmitGetBuiltinOpCode() 232 static void EmitBuildOperator(const std::vector<Record *> &defs, in EmitBuildOperator() argument 244 for (const auto *def : defs) { in EmitBuildOperator() 265 const std::vector<Record *> &defs, in EmitBuiltinOptionsToAttributes() argument 276 for (const auto *def : defs) { in EmitBuiltinOptionsToAttributes() [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/skia/gn/ |
D | gn_to_bp.py | 416 defs = gn_to_bp_utils.GetArchSources(os.path.join(here, 'opts.gni')) variable 493 'arm_srcs': bpfmt(16, strip_headers(defs['armv7'])), 494 'arm_neon_srcs': bpfmt(20, strip_headers(defs['neon'])), 495 'arm64_srcs': bpfmt(16, strip_headers(defs['arm64'] + 496 defs['crc32'])), 497 'none_srcs': bpfmt(16, strip_headers(defs['none'])), 498 'x86_srcs': bpfmt(16, strip_headers(defs['sse2'] + 499 defs['ssse3'] + 500 defs['sse41'] + 501 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/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/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/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/elfutils/libcpu/ |
D | ChangeLog | 156 * defs/i386: Add dppd, dpps, insertps, movntdqa, mpsadbw, packusdw, 188 * defs/i386: Add blendvpd and blendvps opcodes. 192 * defs/i386: Add blendpd and blendps opcodes. 196 * defs/i386: Add entry for AMD 3DNOW. 206 * defs/i386: Fix typo in comment. 216 * Makefile.am (EXTRA_DIST): Remove defs/x86_64. 220 * defs/i386: Add fixes for opcodes with register number in opcode, 256 * defs/i386: Fix a few instructions with immediate arguments. 265 * defs/i386: Lots of changes for x86-64. 269 * defs/x86_64: Removed. [all …]
|
/external/tensorflow/tensorflow/python/autograph/core/ |
D | converter_test.py | 73 defs, = anno.getanno(symbol_a, anno.Static.ORIG_DEFINITIONS) 74 defs.directives[directive_key] = { 112 defs = anno.getanno(symbol_a, anno.Static.ORIG_DEFINITIONS) 113 defs[0].directives[directive_key] = { 117 defs[1].directives[directive_key] = { 139 defs = anno.getanno(symbol_a, anno.Static.ORIG_DEFINITIONS) 140 defs[0].directives[directive_key] = { 143 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/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/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_qir.c | 578 c->defs = reralloc(c, c->defs, struct qinst *, in qir_get_temp() 580 memset(&c->defs[old_size], 0, in qir_get_temp() 581 sizeof(c->defs[0]) * (c->defs_array_size - old_size)); in qir_get_temp() 616 c->defs[inst->dst.index] = inst; in qir_emit_def() 627 c->defs[inst->dst.index] = NULL; in qir_emit_nondef() 712 c->defs[qinst->dst.index] = NULL; in qir_remove_instruction() 724 c->defs[reg.index] && in qir_follow_movs() 725 (c->defs[reg.index]->op == QOP_MOV || in qir_follow_movs() 726 c->defs[reg.index]->op == QOP_FMOV || in qir_follow_movs() 727 c->defs[reg.index]->op == QOP_MMOV)&& in qir_follow_movs() [all …]
|
/external/python/cpython2/PC/VS7.1/ |
D | build_ssl.py | 169 defs = "SSL_DIR=\"%s\"" % (ssl_dir,) 171 defs = defs + " " + "DEBUG=1" 173 defs = defs + " EXTRA_CFLAGS=/GS- EXTRA_LIBS=bufferoverflowU.lib" 174 makeCommand = 'nmake /nologo -f _ssl.mak ' + defs + " " + make_flags
|
/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
|
/external/python/cpython2/Tools/scripts/ |
D | parseentities.py | 35 def writefile(f,defs): argument 38 items = defs.items() 63 defs = parse(text) variable 64 writefile(outfile,defs)
|
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/ |
D | api2.cc | 264 auto defs = MakeOuterInnerDefs(def); in IsSupported() local 265 return DefaultTensorTie::IsSupported(defs.first, converter_builder) && in IsSupported() 266 DefaultTensorTie::IsSupported(defs.second, converter_builder); in IsSupported() 326 auto defs = MakeOuterInnerDefs(def()); in Init() local 327 RETURN_IF_ERROR(DefaultTensorTie::New(defs.second, converter_builder, in Init() 329 return DefaultTensorTie::New(defs.first, converter_builder, in Init() 437 Status LinkTensors(const std::vector<TensorTieDef>& defs, in LinkTensors() argument 440 objects->reserve(defs.size()); in LinkTensors() 441 for (auto& def : defs) { in LinkTensors() 451 std::vector<TensorObjectDef> defs; in GetExternalDefinitions() local [all …]
|
/external/ltp/testcases/network/stress/ns-tools/ |
D | ns-icmp_redirector.c | 499 gateway_p->ip_addr = rcvns_p->defs.nd_ns_target; /* IP address */ in return_neigh_adv() 536 sndna_p->defs.nd_na_type = ND_NEIGHBOR_ADVERT; in return_neigh_adv() 537 sndna_p->defs.nd_na_code = 0; in return_neigh_adv() 538 sndna_p->defs.nd_na_cksum = 0; /* Calculate later */ in return_neigh_adv() 539 sndna_p->defs.nd_na_target = gateway_p->ip_addr; in return_neigh_adv() 540 sndna_p->defs.nd_na_flags_reserved in return_neigh_adv() 557 sndna_p->defs.nd_na_cksum = calc_checksum((u_int16_t *) (&p_ip6), in return_neigh_adv() 638 sndrd_p->defs.nd_rd_type = ND_REDIRECT; in return_icmp6_redirect() 639 sndrd_p->defs.nd_rd_code = 0; in return_icmp6_redirect() 640 sndrd_p->defs.nd_rd_cksum = 0; /* Calculate later */ in return_icmp6_redirect() [all …]
|
/external/libnl/ |
D | .gitignore | 11 defs.h.in 12 defs.h.in~ 16 /lib/defs.h
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_inlines.h | 210 return defs.empty() ? NULL : defs.front()->getInsn(); in getInsn() 215 if (defs.empty()) in getUniqueInsn() 220 for (DefCIterator it = defs.begin(); it != defs.end(); ++it) in getUniqueInsn() 228 for (DefCIterator it = defs.begin(); n < 2 && it != defs.end(); ++it) in getUniqueInsn() 235 assert(defs.front()->get() == this); in getUniqueInsn() 236 return defs.front()->getInsn(); in getUniqueInsn()
|
/external/googletest/googletest/scripts/ |
D | gen_gtest_pred_impl.py | 647 defs = DEFS.copy() 648 defs.update({ 663 TEST_F(%(assertion)sTest, %(test_name)s) {""" % defs 678 test += '\n' + extra_indent + """ %(assertion)s(%(pf)s""" % defs 680 test = test % defs 681 test += Iter(n, ',\n' + indent + extra_indent + '%(arg)s' % defs)
|