Home
last modified time | relevance | path

Searched refs:defs (Results 26 - 50 of 436) sorted by relevance

12345678910>>...18

/third_party/skia/gn/
H A Dgn_to_bp_utils.py94 defs = {}
97 exec(code, builtins, defs)
100 for arch in defs:
101 defs[arch] = [ p.replace('$_src', 'src') for p in defs[arch]]
103 return defs
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_qir.c578 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[re in qir_follow_movs()
[all...]
H A Dvc4_opt_algebraic.c198 c->defs[inst->src[1].index] && in qir_opt_algebraic()
199 c->defs[inst->src[1].index]->op == QOP_FSUB) { in qir_opt_algebraic()
200 struct qinst *fsub = c->defs[inst->src[1].index]; in qir_opt_algebraic()
213 c->defs[inst->src[0].index] && in qir_opt_algebraic()
214 c->defs[inst->src[0].index]->op == QOP_FSUB) { in qir_opt_algebraic()
215 struct qinst *fsub = c->defs[inst->src[0].index]; in qir_opt_algebraic()
H A Dvc4_opt_copy_propagation.c84 if (!is_copy_mov(c->defs[inst->src[i].index])) in try_copy_prop()
86 mov = c->defs[inst->src[i].index]; in try_copy_prop()
89 !c->defs[mov->src[0].index]) in try_copy_prop()
/third_party/ffmpeg/doc/
H A Dtexi2pod.pl38 %defs = ();
56 $defs{$flag} = $value;
102 if (exists $defs{$1}) {
139 $defs{$1} = $2;
143 delete $defs{$1};
190 $skipping = 1 unless exists $defs{$1};
198 $skipping = 1 if exists $defs{$1};
371 if (! exists $defs{$2}) {
375 $value = $defs{$2};
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_inlines.h210 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()
/third_party/rust/crates/syn/codegen/src/
H A Deq.rs19 fn expand_impl_body(defs: &Definitions, node: &Node) -> TokenStream { in expand_impl_body()
62 if !lookup::node(defs, ty).features.any.contains("derive") { in expand_impl_body()
111 fn expand_impl(defs: &Definitions, node: &Node) -> TokenStream { in expand_impl()
129 let body = expand_impl_body(defs, node); in expand_impl()
148 pub fn generate(defs: &Definitions) -> Result<()> { in generate()
150 for node in &defs.types { in generate()
151 impls.extend(expand_impl(defs, node)); in generate()
H A Djson.rs6 pub fn generate(defs: &Definitions) -> Result<()> { in generate()
7 let mut j = serde_json::to_string_pretty(&defs)?; in generate()
11 assert_eq!(*defs, check); in generate()
H A Dgen.rs13 defs: &Definitions, in traverse()
16 let mut types = defs.types.clone(); in traverse()
33 node(&mut traits, &mut impls, &s, defs); in traverse()
/third_party/node/tools/
H A Dtest.py825 def GetTestStatus(self, sections, defs):
828 ReadConfigurationInto(status_file, sections, defs)
872 def GetTestStatus(self, context, sections, defs):
873 self.GetConfiguration(context).GetTestStatus(sections, defs)
901 def GetTestStatus(self, context, sections, defs):
904 root.GetTestStatus(sections, defs)
906 tests_repos.GetTestStatus(context, sections, defs)
999 def Evaluate(self, env, defs):
1008 def GetOutcomes(self, env, defs):
1018 def GetOutcomes(self, env, defs)
[all...]
/third_party/ltp/testcases/network/stress/ns-tools/
H A Dns-icmp_redirector.c499 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 in return_icmp6_redirect()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/scripts/
H A Dupdate.py174 for arch, defs in LLVM_TARGETS:
175 if arch_def in defs:
247 ] + [path.join('lib', 'Target', arch) for arch, defs in LLVM_TARGETS]
268 for arch, defs in LLVM_TARGETS:
269 conds[arch] = ' || '.join('defined(' + v + ')' for v in defs)
309 for arch, defs in LLVM_TARGETS:
323 for defs, triple in triples:
324 print(directive + ' defined(' + defs + ')',
/third_party/typescript/tests/baselines/reference/
H A DjsDeclarationsClassAccessor.js35 * @param {*} defs
37 *validate(defs) { }
61 * @param {*} defs
63 *validate(defs) { }
83 * @param {*} defs
85 validate(defs: any): Generator<never, void, unknown>;
/third_party/googletest/googletest/scripts/
H A Dgen_gtest_pred_impl.py647 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)
/kernel/linux/linux-5.10/arch/mips/cavium-octeon/executive/
H A Dcvmx-helper-spi.c38 #include <asm/octeon/cvmx-pip-defs.h>
39 #include <asm/octeon/cvmx-pko-defs.h>
40 #include <asm/octeon/cvmx-spxx-defs.h>
41 #include <asm/octeon/cvmx-stxx-defs.h>
/kernel/linux/linux-6.6/arch/mips/cavium-octeon/executive/
H A Dcvmx-helper-spi.c38 #include <asm/octeon/cvmx-pip-defs.h>
39 #include <asm/octeon/cvmx-pko-defs.h>
40 #include <asm/octeon/cvmx-spxx-defs.h>
41 #include <asm/octeon/cvmx-stxx-defs.h>
/kernel/linux/linux-5.10/arch/mips/cavium-octeon/
H A Dcsrc-octeon.c20 #include <asm/octeon/cvmx-ipd-defs.h>
21 #include <asm/octeon/cvmx-mio-defs.h>
22 #include <asm/octeon/cvmx-rst-defs.h>
23 #include <asm/octeon/cvmx-fpa-defs.h>
/kernel/linux/linux-6.6/arch/mips/cavium-octeon/
H A Dcsrc-octeon.c20 #include <asm/octeon/cvmx-ipd-defs.h>
21 #include <asm/octeon/cvmx-mio-defs.h>
22 #include <asm/octeon/cvmx-rst-defs.h>
23 #include <asm/octeon/cvmx-fpa-defs.h>
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_regs_to_ssa.c229 BITSET_WORD *defs = ralloc_array(dead_ctx, BITSET_WORD, block_set_words); in nir_lower_regs_to_ssa_impl() local
241 memset(defs, 0, block_set_words * sizeof(*defs)); in nir_lower_regs_to_ssa_impl()
244 BITSET_SET(defs, dest->reg.parent_instr->block->index); in nir_lower_regs_to_ssa_impl()
248 reg->bit_size, defs); in nir_lower_regs_to_ssa_impl()
275 * defs are processed in an order that respects dominance. When we have in nir_lower_regs_to_ssa_impl()
288 assert(list_is_empty(&reg->defs)); in nir_lower_regs_to_ssa_impl()
/third_party/skia/modules/svg/tests/
H A DFilters.cpp20 <defs>
25 </defs>
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Dinst_debug_printf_test.cpp54 const std::string defs = in TEST_F() local
202 defs + decorates + globals + main + output_func, true); in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Dinst_debug_printf_test.cpp54 const std::string defs = in TEST_F() local
202 defs + decorates + globals + main + output_func, true); in TEST_F()
/third_party/spirv-tools/test/opt/
H A Dinst_debug_printf_test.cpp68 const std::string defs = in TEST_F() local
194 defs + decorates + globals + main + output_func, true); in TEST_F()
/third_party/popt/src/
H A Dpopthelp.c296 char * defs = NULL; in singleOptionHelp() local
350 defs = singleOptionDefaultValue(lineLength, opt, translation_domain); in singleOptionHelp()
351 if (defs) { in singleOptionHelp()
353 strlen(defs) + sizeof(" ")); in singleOptionHelp()
359 strcpy(te, defs); in singleOptionHelp()
360 defs = _free(defs); in singleOptionHelp()
361 defs = t; in singleOptionHelp()
439 if (defs) in singleOptionHelp()
440 help = defs; in singleOptionHelp()
[all...]
/third_party/python/Tools/scripts/
H A Difdef.py32 defs = [] variable
39 defs.append(a)
78 if word in defs:

Completed in 13 milliseconds

12345678910>>...18