Searched refs:vec_type (Results 1 - 5 of 5) sorted by relevance

/external/mesa3d/src/glsl/
H A Dir_div_to_mul_rcp.cpp83 const struct glsl_type *vec_type; local
85 vec_type = glsl_type::get_instance(GLSL_TYPE_FLOAT,
90 op1 = new(ir) ir_expression(ir_unop_i2f, vec_type, ir->operands[1], NULL);
92 op1 = new(ir) ir_expression(ir_unop_u2f, vec_type, ir->operands[1], NULL);
96 vec_type = glsl_type::get_instance(GLSL_TYPE_FLOAT,
101 op0 = new(ir) ir_expression(ir_unop_i2f, vec_type, ir->operands[0], NULL);
103 op0 = new(ir) ir_expression(ir_unop_u2f, vec_type, ir->operands[0], NULL);
105 op0 = new(ir) ir_expression(ir_binop_mul, vec_type, op0, op1);
H A Dlower_instructions.cpp147 const struct glsl_type *vec_type; local
149 vec_type = glsl_type::get_instance(GLSL_TYPE_FLOAT,
154 op1 = new(ir) ir_expression(ir_unop_i2f, vec_type, ir->operands[1], NULL);
156 op1 = new(ir) ir_expression(ir_unop_u2f, vec_type, ir->operands[1], NULL);
160 vec_type = glsl_type::get_instance(GLSL_TYPE_FLOAT,
165 op0 = new(ir) ir_expression(ir_unop_i2f, vec_type, ir->operands[0], NULL);
167 op0 = new(ir) ir_expression(ir_unop_u2f, vec_type, ir->operands[0], NULL);
169 op0 = new(ir) ir_expression(ir_binop_mul, vec_type, op0, op1);
H A Dir_to_llvm.cpp171 llvm::Type* vec_type = llvm_vec_type(type); local
173 return vec_type;
175 return llvm::ArrayType::get(vec_type, type->matrix_columns);
1151 llvm::Type* vec_type = llvm_vec_type(ir->type); local
/external/mesa3d/src/glsl/builtins/tools/
H A Dtexture_builtins.py6 def vec_type(g, size): function
46 print " (declare (in) " + vec_type("i" if tex_inst == "txf" else "", coord_dim + extra_dim) + " P)",
54 grad_type = vec_type("", coord_dim)
/external/stlport/test/unit/
H A Dvector_test.cpp132 typedef vector<char> vec_type; typedef
134 vec_type v1; // Empty vector of characters.
142 vec_type v2(v1.begin(), v1.end());

Completed in 427 milliseconds