Home | History | Annotate | Download | only in glsl

Lines Matching defs:copy

5  * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
284 ir_function *copy = new(mem_ctx) ir_function(this->name);
291 copy->add_signature(sig_copy);
298 return copy;
304 ir_function_signature *copy = this->clone_prototype(mem_ctx, ht);
306 copy->is_defined = this->is_defined;
314 copy->body.push_tail(inst_copy);
317 return copy;
323 ir_function_signature *copy =
326 copy->is_defined = false;
327 copy->is_builtin = this->is_builtin;
328 copy->origin = this;
338 copy->parameters.push_tail(param_copy);
341 return copy;
433 ir_instruction *copy = original->clone(mem_ctx, ht);
435 out->push_tail(copy);