/external/mesa3d/src/glsl/ |
ir_div_to_mul_rcp.cpp | 83 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);
|
lower_instructions.cpp | 147 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);
|
ir_to_llvm.cpp | 171 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 [all...] |
/external/mesa3d/src/glsl/builtins/tools/ |
texture_builtins.py | 6 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/ |
vector_test.cpp | 132 typedef vector<char> vec_type; typedef 134 vec_type v1; // Empty vector of characters. 142 vec_type v2(v1.begin(), v1.end());
|
/ndk/tests/device/test-gnustl-full/unit/ |
vector_test.cpp | 132 typedef vector<char> vec_type; typedef 134 vec_type v1; // Empty vector of characters. 142 vec_type v2(v1.begin(), v1.end());
|
/ndk/tests/device/test-stlport/unit/ |
vector_test.cpp | 132 typedef vector<char> vec_type; typedef 134 vec_type v1; // Empty vector of characters. 142 vec_type v2(v1.begin(), v1.end());
|