Home
last modified time | relevance | path

Searched refs:func_conf (Results 1 – 2 of 2) sorted by relevance

/third_party/alsa-lib/src/
Dconf.c3937 snd_config_t *c, *func_conf = NULL; in snd_config_hooks_call() local
3955 err = snd_config_search_definition(root, "hook_func", str, &func_conf); in snd_config_hooks_call()
3958 if (snd_config_get_type(func_conf) != SND_CONFIG_TYPE_COMPOUND) { in snd_config_hooks_call()
3963 snd_config_for_each(i, next, func_conf) { in snd_config_hooks_call()
4010 if (func_conf) in snd_config_hooks_call()
4011 snd_config_delete(func_conf); in snd_config_hooks_call()
5100 snd_config_t *c, *func_conf = NULL; in _snd_config_evaluate() local
5110 err = snd_config_search_definition(root, "func", str, &func_conf); in _snd_config_evaluate()
5113 if (snd_config_get_type(func_conf) != SND_CONFIG_TYPE_COMPOUND) { in _snd_config_evaluate()
5118 snd_config_for_each(i, next, func_conf) { in _snd_config_evaluate()
[all …]
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/static_analysis/
Dstatic_analysis.cc266 AnfNodeConfigPtr func_conf = MakeConfig(func_node, context, func_graph); in GetCNodeOperatorAbstract() local
267 MS_EXCEPTION_IF_NULL(func_conf); in GetCNodeOperatorAbstract()
269 auto possible_func_eval_result = func_conf->ObtainEvalResult(); in GetCNodeOperatorAbstract()
272 MS_LOG(EXCEPTION) << "No abstract, func_conf: " << func_conf->ToString(); in GetCNodeOperatorAbstract()