/third_party/ffmpeg/libavfilter/dnn/ |
H A D | dnn_backend_openvino.c | 131 status = ie_infer_request_get_blob(request->infer_request, task->input_name, &input_blob); in fill_model_input_ov() 133 av_log(ctx, AV_LOG_ERROR, "Failed to get input blob with name %s\n", task->input_name); in fill_model_input_ov() 304 static int init_model_ov(OVModel *ov_model, const char *input_name, const char *output_name) in init_model_ov() argument 337 status = ie_network_set_input_layout(ov_model->network, input_name, NHWC); in init_model_ov() 339 av_log(ctx, AV_LOG_ERROR, "Failed to set layout as NHWC for input %s\n", input_name); in init_model_ov() 357 status = ie_network_set_input_precision(ov_model->network, input_name, U8); in init_model_ov() 359 av_log(ctx, AV_LOG_ERROR, "Failed to set input precision as U8 for %s\n", input_name); in init_model_ov() 503 static int get_input_ov(void *model, DNNData *input, const char *input_name) in get_input_ov() argument 527 if (strcmp(model_input_name, input_name) == 0) { in get_input_ov() 529 status |= ie_network_get_input_dims(ov_model->network, input_name, in get_input_ov() 656 get_output_ov(void *model, const char *input_name, int input_width, int input_height, const char *output_name, int *output_width, int *output_height) get_output_ov() argument [all...] |
H A D | dnn_backend_native.c | 73 static int get_input_native(void *model, DNNData *input, const char *input_name) in get_input_native() argument 80 if (strcmp(oprd->name, input_name) == 0) { in get_input_native() 82 av_log(ctx, AV_LOG_ERROR, "Found \"%s\" in model, but it is not input node\n", input_name); in get_input_native() 95 av_log(ctx, AV_LOG_ERROR, "Could not find \"%s\" in model\n", input_name); in get_input_native() 99 static int get_output_native(void *model, const char *input_name, int input_width, int input_height, in get_output_native() argument 107 .input_name = input_name, in get_output_native() 329 if (strcmp(oprd->name, task->input_name) == 0) { in execute_model_native() 331 av_log(ctx, AV_LOG_ERROR, "Found \"%s\" in model, but it is not input node\n", task->input_name); in execute_model_native() 340 av_log(ctx, AV_LOG_ERROR, "Could not find \"%s\" in model\n", task->input_name); in execute_model_native() [all...] |
H A D | dnn_backend_common.c | 66 task->input_name = exec_params->input_name; in ff_dnn_fill_task()
|
H A D | dnn_backend_tf.c | 281 static int get_input_tf(void *model, DNNData *input, const char *input_name) in get_input_tf() argument 289 tf_output.oper = TF_GraphOperationByName(tf_model->graph, input_name); in get_input_tf() 291 av_log(ctx, AV_LOG_ERROR, "Could not find \"%s\" in model\n", input_name); in get_input_tf() 317 static int get_output_tf(void *model, const char *input_name, int input_width, int input_height, in get_output_tf() argument 326 .input_name = input_name, in get_output_tf() 960 ret = get_input_tf(tf_model, &input, task->input_name); in fill_model_input_tf() 976 infer_request->tf_input->oper = TF_GraphOperationByName(tf_model->graph, task->input_name); in fill_model_input_tf() 978 av_log(ctx, AV_LOG_ERROR, "Could not find \"%s\" in model\n", task->input_name); in fill_model_input_tf()
|
H A D | dnn_backend_common.h | 40 const char *input_name; member
|
/third_party/ffmpeg/libavfilter/ |
H A D | dnn_interface.h | 68 const char *input_name; member 95 int (*get_input)(void *model, DNNData *input, const char *input_name); 97 int (*get_output)(void *model, const char *input_name, int input_width, int input_height,
|
H A D | dnn_filter_common.c | 123 .input_name = ctx->model_inputname, in ff_dnn_execute_model() 136 .input_name = ctx->model_inputname, in ff_dnn_execute_model_classification()
|
/third_party/pulseaudio/src/modules/ |
H A D | module-switch-on-port-available.c | 77 if (!pa_safe_streq(card->active_profile->input_name, profile->input_name)) in profile_good_for_output() 161 name = profile->input_name; in try_to_switch_profile() 205 if (dir == PA_DIRECTION_INPUT && cp->input_name) in profile_name_for_dir() 206 return cp->input_name; in profile_name_for_dir() 487 if (pa_safe_streq(old_profile->input_name, new_profile->input_name)) in update_preferred_input_port() 539 if (pa_idxset_size(card->sources) > 0 && !pa_safe_streq(old_profile->input_name, new_profile->input_name)) { in update_preferred_output_port()
|
/third_party/curl/tests/libtest/ |
H A D | stub_gssapi.c | 307 gss_name_t *input_name) in gss_release_name() 312 if(input_name) in gss_release_name() 313 free(*input_name); in gss_release_name() 363 gss_const_name_t input_name, in gss_display_name() 368 (void)input_name; in gss_display_name() 306 gss_release_name(OM_uint32 *min, gss_name_t *input_name) gss_release_name() argument 362 gss_display_name(OM_uint32 *min, gss_const_name_t input_name, gss_buffer_t output_name_buffer, gss_OID *output_name_type) gss_display_name() argument
|
/third_party/ffmpeg/tools/python/ |
H A D | convert_from_tensorflow.py | 194 input_name = self.conv2d_scopename_inputname_dict[scope_name] 195 input_operand_index = self.add_operand(input_name, Operand.IOTYPE_INPUT) 242 input_name = self.dense_scopename_inputname_dict[scope_name.split('/')[0]] 243 input_operand_index = self.add_operand(input_name, Operand.IOTYPE_INPUT) 264 input_name = node.input[1] 267 input_name = node.input[0] 288 input_operand_index = self.add_operand(input_name, Operand.IOTYPE_INPUT) 389 input_name = node.input[0] 401 input_operand_index = self.add_operand(input_name, Operand.IOTYPE_INPUT) 426 input_name [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | card.c | 76 pa_xfree(c->input_name); in pa_card_profile_free() 313 if (dir == PA_DIRECTION_INPUT && cp->input_name) in profile_name_for_dir() 314 return cp->input_name; in profile_name_for_dir()
|
H A D | card.h | 43 have the same input_name string, they have the same source(s). 47 char *input_name; member
|
/third_party/jerryscript/tools/ |
H A D | srcmerger.py | 225 input_name = os.path.basename(input_file) 226 c_files.pop(input_name, '')
|
/third_party/pulseaudio/src/modules/alsa/ |
H A D | alsa-mixer.h | 333 char *input_name; member
|
H A D | module-alsa-card.c | 157 cp->input_name = pa_xstrdup(ap->input_name); in add_profiles()
|
H A D | alsa-mixer.c | 3913 pa_xfree(p->input_name); in profile_free() 4694 p->input_name = pa_xstrdup(n->name); in profile_set_add_auto_pair() 4865 pa_strnull(p->input_name), in pa_alsa_profile_dump()
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_shader.c | 707 input_name(struct ir3_shader_variant *so, int i) in input_name() function 843 "xyzw"[regid & 0x3], input_name(so, i), so -> inputs[i].slot, in ir3_shader_disasm()
|