Searched refs:function_def (Results 1 - 3 of 3) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/microsoft/compiler/
H A Ddxil_internal.h65 } function_def; member in union:dxil_type::__anonbc4bc12e010a
H A Ddxil_module.c399 if (!types_equal(lhs->function_def.ret_type,
400 rhs->function_def.ret_type))
402 retval = type_list_equal(&lhs->function_def.args, &rhs->function_def.args);
889 type->function_def.args.types = ralloc_array(type,
892 if (!type->function_def.args.types)
895 memcpy(type->function_def.args.types, arg_types,
897 type->function_def.args.num_types = num_arg_types;
898 type->function_def.ret_type = ret_type;
1435 assert(type->function_def
[all...]
H A Ddxil_dump.c220 dump_type_name(d, type->function_def.ret_type);
222 for (size_t i = 0; i < type->function_def.args.num_types; ++i) {
225 dump_type_name(d, type->function_def.args.types[i]);
463 assert(call->num_args == call->func->type->function_def.args.num_types);
464 struct dxil_type **func_arg_types = call->func->type->function_def.args.types;

Completed in 10 milliseconds