HomeSort by relevance Sort by last modified time
    Searched full:is_vector (Results 1 - 25 of 49) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_validate.cpp 348 else if (ir->operands[0]->type->is_vector() &&
349 ir->operands[1]->type->is_vector()) {
368 assert(ir->operands[0]->type->is_vector()
390 if (ir->operands[0]->type->is_vector() &&
391 ir->operands[1]->type->is_vector()) {
404 if (ir->operands[0]->type->is_vector() &&
405 ir->operands[1]->type->is_vector()) {
422 assert(ir->operands[0]->type->is_vector());
441 assert(ir->type->is_vector());
471 /* The is_vector assertion above should prevent execution from eve
    [all...]
hir_field_selection.cpp 50 } else if (op->type->is_vector()) {
ir.cpp 141 if (v->type->is_vector()) {
163 if (lhs->type->is_scalar() || lhs->type->is_vector()) {
188 if (rhs->type->is_vector())
601 assert(type->is_scalar() || type->is_vector() || type->is_matrix()
735 assert(type->is_scalar() || type->is_vector() || type->is_matrix()
936 if (!type->is_vector() && !type->is_matrix()) {
1029 if (!this->type->is_scalar() && !this->type->is_vector())
1066 if (!this->type->is_scalar() && !this->type->is_vector())
1103 if (!this->type->is_scalar() && !this->type->is_vector())
1139 if (!this->type->is_scalar() && !this->type->is_vector())
    [all...]
opt_dead_code_local.cpp 77 if (var->type->is_scalar() || var->type->is_vector()) {
176 deref_var->var->type->is_vector())) {
opt_constant_propagation.cpp 141 if (!type->is_scalar() && !type->is_vector())
396 if (!var->type->is_vector() && !var->type->is_scalar())
449 if (!deref->var->type->is_vector() && !deref->var->type->is_scalar())
lower_mat_op_to_vec.cpp 396 } else if (op[1]->type->is_vector()) {
404 if (op[0]->type->is_vector()) {
opt_algebraic.cpp 96 if (ir->operands[0]->type->is_vector())
179 if (expr->type->is_vector() && operand->type->is_scalar()) {
  /external/mesa3d/src/glsl/
ir_validate.cpp 348 else if (ir->operands[0]->type->is_vector() &&
349 ir->operands[1]->type->is_vector()) {
368 assert(ir->operands[0]->type->is_vector()
390 if (ir->operands[0]->type->is_vector() &&
391 ir->operands[1]->type->is_vector()) {
404 if (ir->operands[0]->type->is_vector() &&
405 ir->operands[1]->type->is_vector()) {
422 assert(ir->operands[0]->type->is_vector());
441 assert(ir->type->is_vector());
471 /* The is_vector assertion above should prevent execution from eve
    [all...]
hir_field_selection.cpp 50 } else if (op->type->is_vector()) {
ir.cpp 141 if (v->type->is_vector()) {
163 if (lhs->type->is_scalar() || lhs->type->is_vector()) {
188 if (rhs->type->is_vector())
601 assert(type->is_scalar() || type->is_vector() || type->is_matrix()
735 assert(type->is_scalar() || type->is_vector() || type->is_matrix()
936 if (!type->is_vector() && !type->is_matrix()) {
1029 if (!this->type->is_scalar() && !this->type->is_vector())
1066 if (!this->type->is_scalar() && !this->type->is_vector())
1103 if (!this->type->is_scalar() && !this->type->is_vector())
1139 if (!this->type->is_scalar() && !this->type->is_vector())
    [all...]
opt_dead_code_local.cpp 77 if (var->type->is_scalar() || var->type->is_vector()) {
176 deref_var->var->type->is_vector())) {
opt_constant_propagation.cpp 141 if (!type->is_scalar() && !type->is_vector())
396 if (!var->type->is_vector() && !var->type->is_scalar())
449 if (!deref->var->type->is_vector() && !deref->var->type->is_scalar())
lower_mat_op_to_vec.cpp 396 } else if (op[1]->type->is_vector()) {
404 if (op[0]->type->is_vector()) {
opt_algebraic.cpp 96 if (ir->operands[0]->type->is_vector())
179 if (expr->type->is_vector() && operand->type->is_scalar()) {
  /external/chromium_org/third_party/mesa/
chromium.patch 935 assert(op[0]->type->is_vector() && op[1] && op[1]->type->is_vector());
945 assert(op[0]->type->is_vector() && op[1] && op[1]->type->is_vector());
969 assert(op[0]->type->is_vector() && op[1] && op[1]->type->is_vector());
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_channel_expressions.cpp 79 if (expr->operands[i]->type->is_vector())
147 if (expr->operands[i]->type->is_vector()) {
brw_fs_vector_splitting.cpp 108 if (!var->type->is_vector())
222 if (!var->type->is_vector())
brw_vec4_visitor.cpp 1163 if (ir->operands[0]->type->is_vector() ||
1164 ir->operands[1]->type->is_vector()) {
1176 if (ir->operands[0]->type->is_vector() ||
1177 ir->operands[1]->type->is_vector()) {
1210 assert(ir->operands[0]->type->is_vector());
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_channel_expressions.cpp 79 if (expr->operands[i]->type->is_vector())
147 if (expr->operands[i]->type->is_vector()) {
brw_fs_vector_splitting.cpp 108 if (!var->type->is_vector())
222 if (!var->type->is_vector())
brw_vec4_visitor.cpp 1163 if (ir->operands[0]->type->is_vector() ||
1164 ir->operands[1]->type->is_vector()) {
1176 if (ir->operands[0]->type->is_vector() ||
1177 ir->operands[1]->type->is_vector()) {
1210 assert(ir->operands[0]->type->is_vector());
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
APIspec.py 285 if (src.is_vector != dst.is_vector or src.size != dst.size):
301 self.is_vector = (param_node.name == "vector")
573 if param.is_vector:
  /external/mesa3d/src/mesa/main/
APIspec.py 285 if (src.is_vector != dst.is_vector or src.size != dst.size):
301 self.is_vector = (param_node.name == "vector")
573 if param.is_vector:
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
ir_to_mesa.cpp 76 if (type && (type->is_scalar() || type->is_vector() || type->is_matrix()))
    [all...]
  /external/mesa3d/src/mesa/program/
ir_to_mesa.cpp 76 if (type && (type->is_scalar() || type->is_vector() || type->is_matrix()))
    [all...]

Completed in 599 milliseconds

1 2