Lines Matching refs:temp
97 ir_variable *temp = entry ? (ir_variable *) entry->data : NULL;
100 if (temp == NULL) {
102 temp = new(var_ctx) ir_variable(ir->var->type, ir->var->name,
105 temp->data.invariant = ir->var->data.invariant;
106 temp->data.precise = ir->var->data.precise;
107 temp->data.precision = ir->var->data.precision;
108 _mesa_hash_table_insert(replacements, ir->var, temp);
109 ir->var->insert_after(temp);
113 ir->var = temp;
122 copy(void *ctx, ir_variable *output, ir_variable *temp)
125 ir_dereference_variable *rhs = new(ctx) ir_dereference_variable(temp);