Lines Matching defs:op1
187 ir_rvalue *op0, ir_rvalue *op1,
194 this->operands[1] = op1;
458 ir_expression::ir_expression(int op, ir_rvalue *op0, ir_rvalue *op1)
463 this->operands[1] = op1;
490 this->type = op1->type;
491 } else if (op1->type->is_scalar()) {
495 this->type = glsl_type::get_mul_type(op0->type, op1->type);
497 assert(op0->type == op1->type);
510 assert(!op1->type->is_matrix());
512 this->type = op1->type;
513 } else if (op1->type->is_scalar()) {
516 assert(op0->type->vector_elements == op1->type->vector_elements);
525 assert(op0->type == op1->type);
550 assert(op0->type == op1->type);
557 assert(op0->type == op1->type);
594 ir_expression::ir_expression(int op, ir_rvalue *op0, ir_rvalue *op1,
600 this->operands[1] = op1;
620 this->type = op1->type;