Lines Matching defs:num_args
2776 const struct dxil_value **args, size_t num_args)
2778 assert(num_args == func->type->function_def.args.num_types);
2779 for (size_t i = 0; i < num_args; ++ i)
2786 instr->call.args = ralloc_array(instr, struct dxil_value *, num_args);
2789 memcpy(instr->call.args, args, sizeof(struct dxil_value *) * num_args);
2790 instr->call.num_args = num_args;
2798 const struct dxil_value **args, size_t num_args)
2802 struct dxil_instr *instr = create_call_instr(m, func, args, num_args);
2813 const struct dxil_value **args, size_t num_args)
2817 struct dxil_instr *instr = create_call_instr(m, func, args, num_args);
3176 assert(instr->call.num_args < ARRAY_SIZE(data) - 4);
3177 for (size_t i = 0; i < instr->call.num_args; ++i) {
3183 data, 4 + instr->call.num_args);