Lines Matching refs:overload
80 enum overload_type overload; member
101 if (f->descr.overload < descr->overload) in func_compare_to_name_and_overload()
103 if (f->descr.overload > descr->overload) in func_compare_to_name_and_overload()
112 enum overload_type overload) in allocate_function_from_predefined() argument
116 return dxil_alloc_func(mod, name, overload, in allocate_function_from_predefined()
127 const char *name, enum overload_type overload) in dxil_get_function() argument
129 struct func_descr descr = { name, overload }; in dxil_get_function()
135 return allocate_function_from_predefined(mod, name, overload); in dxil_get_function()
146 const char *name, enum overload_type overload) in dxil_add_function() argument
151 f->descr.overload = overload; in dxil_add_function()
157 enum overload_type overload, int *idx) in get_type_from_string() argument
174 case DXIL_FUNC_PARAM_FROM_OVERLOAD: return dxil_get_overload_type(mod, overload); in get_type_from_string()
175 case DXIL_FUNC_PARAM_RESRET: return dxil_module_get_resret_type(mod, overload); in get_type_from_string()
177 case DXIL_FUNC_PARAM_CBUF_RET: return dxil_module_get_cbuf_ret_type(mod, overload); in get_type_from_string()
180 const struct dxil_type *target = get_type_from_string(mod, param_descr, overload, idx); in get_type_from_string()
191 enum overload_type overload, in dxil_alloc_func_with_rettype() argument
203 const struct dxil_type *t = get_type_from_string(mod, param_descr, overload, &index); in dxil_alloc_func_with_rettype()
220 overload == DXIL_NONE ? "" : ".", dxil_overload_suffix(overload)); in dxil_alloc_func_with_rettype()
224 dxil_add_function(mod->functions, func, name, overload); in dxil_alloc_func_with_rettype()
230 dxil_alloc_func(struct dxil_module *mod, const char *name, enum overload_type overload, in dxil_alloc_func() argument
236 …const struct dxil_type *retval_type = get_type_from_string(mod, retval_type_descr, overload, &inde… in dxil_alloc_func()
239 return dxil_alloc_func_with_rettype(mod, name, overload, retval_type, in dxil_alloc_func()