Searched refs:bool_type (Results 1 - 25 of 28) sorted by relevance

12

/external/vulkan-validation-layers/libs/glm/detail/
H A Dfunc_vector_relational.hpp62 //GLM_FUNC_DECL typename vecType<T, P>::bool_type lessThan(vecType<T, P> const & x, vecType<T, P> const & y);
71 GLM_FUNC_DECL typename vecType<T, P>::bool_type lessThanEqual(vecType<T, P> const & x, vecType<T, P> const & y);
80 GLM_FUNC_DECL typename vecType<T, P>::bool_type greaterThan(vecType<T, P> const & x, vecType<T, P> const & y);
89 GLM_FUNC_DECL typename vecType<T, P>::bool_type greaterThanEqual(vecType<T, P> const & x, vecType<T, P> const & y);
99 //GLM_FUNC_DECL typename vecType<T, P>::bool_type equal(vecType<T, P> const & x, vecType<T, P> const & y);
108 GLM_FUNC_DECL typename vecType<T, P>::bool_type notEqual(vecType<T, P> const & x, vecType<T, P> const & y);
H A Dtype_gentype.hpp59 typedef TYPE<bool> bool_type; typedef in struct:glm::detail::genType
113 typedef base<bool, colT, rowT> bool_type;
H A Dfunc_common.hpp336 GLM_FUNC_DECL typename genType::bool_type isnan(genType const & x);
349 GLM_FUNC_DECL typename genType::bool_type isinf(genType const & x);
H A Dtype_vec1.hpp55 typedef tvec1<bool, P> bool_type; typedef in struct:glm::detail::tvec1
H A Dtype_vec2.hpp55 typedef tvec2<bool, P> bool_type; typedef in struct:glm::detail::tvec2
H A Dtype_vec3.hpp55 typedef tvec3<bool, P> bool_type; typedef in struct:glm::detail::tvec3
H A Dtype_vec4.hpp56 typedef tvec4<bool, P> bool_type; typedef in struct:glm::detail::tvec4
/external/mesa3d/src/compiler/glsl/
H A Dir_expression_operation.py85 bool_type = type("bool", "b", "GLSL_TYPE_BOOL") variable
87 all_types = (uint_type, int_type, float_type, double_type, bool_type)
419 operation("logic_not", 1, printable_name="!", source_types=(bool_type,), c_expression="!{src0}"),
438 operation("f2b", 1, source_types=(float_type,), dest_type=bool_type, c_expression="{src0} != 0.0F ? true : false"),
440 operation("b2f", 1, source_types=(bool_type,), dest_type=float_type, c_expression="{src0} ? 1.0F : 0.0F"),
442 operation("i2b", 1, source_types=integer_types, dest_type=bool_type, c_expression="{src0} ? true : false"),
444 operation("b2i", 1, source_types=(bool_type,), dest_type=int_type, c_expression="{src0} ? 1 : 0"),
464 operation("d2b", 1, source_types=(double_type,), dest_type=bool_type, c_expression="{src0} != 0.0"),
568 operation("less", 2, printable_name="<", source_types=numeric_types, dest_type=bool_type, c_expression="{src0} < {src1}"),
569 operation("greater", 2, printable_name=">", source_types=numeric_types, dest_type=bool_type, c_expressio
[all...]
H A Dlower_if_to_cond_assign.cpp196 glsl_type::bool_type,
205 glsl_type::bool_type,
279 new(mem_ctx) ir_variable(glsl_type::bool_type,
306 new(mem_ctx) ir_variable(glsl_type::bool_type,
H A Dlower_discard.cpp178 ir_variable *temp = new(mem_ctx) ir_variable(glsl_type::bool_type,
H A Dlower_discard_flow.cpp145 ir_variable *var = new(mem_ctx) ir_variable(glsl_type::bool_type,
H A Dlower_vector_insert.cpp120 factory.make_temp(glsl_type::bool_type, "index_condition");
H A Dloop_controls.cpp153 new(mem_ctx) ir_expression(op, glsl_type::bool_type, add, to);
H A Dir_validate.cpp141 if (ir->condition && ir->condition->type != glsl_type::bool_type) {
155 if (ir->condition->type != glsl_type::bool_type) {
471 assert(ir->type == glsl_type::bool_type);
472 assert(ir->operands[0]->type == glsl_type::bool_type);
534 assert(ir->type == glsl_type::bool_type);
H A Dlower_jumps.cpp191 this->execute_flag = new(this->signature) ir_variable(glsl_type::bool_type, "execute_flag", ir_var_temporary);
202 this->break_flag = new(this->signature) ir_variable(glsl_type::bool_type, "break_flag", ir_var_temporary);
231 this->return_flag = new(this->signature) ir_variable(glsl_type::bool_type, "return_flag", ir_var_temporary);
H A Dir_builder_print_visitor.cpp102 ir->type == glsl_type::bool_type)
354 ir->type == glsl_type::bool_type) {
H A Dlower_variable_index_to_cond_assign.cpp311 new(this->mem_ctx) ir_expression(ir_binop_less, glsl_type::bool_type,
H A Dir.cpp347 this->type = glsl_type::bool_type;
371 this->type = glsl_type::bool_type;
1331 assert(type == glsl_type::bool_type);
H A Dast_to_hir.cpp696 return glsl_type::bool_type;
1516 assert(result->type == glsl_type::bool_type);
1558 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type,
1594 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type,
1631 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type,
1639 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type,
6085 new(ctx) ir_variable(glsl_type::bool_type,
6098 new(ctx) ir_variable(glsl_type::bool_type,
6110 new(ctx) ir_variable(glsl_type::bool_type,
/external/vulkan-validation-layers/libs/glm/gtx/
H A Dsimd_quat.hpp79 typedef tquat<bool, defaultp> bool_type; typedef
H A Dsimd_vec4.hpp98 typedef tvec4<bool, highp> bool_type; typedef
/external/mesa3d/src/compiler/
H A Dnir_types.cpp294 return glsl_type::bool_type;
H A Dglsl_types.cpp356 return bool_type;
382 return bool_type;
516 bool_type, bvec2_type, bvec3_type, bvec4_type
/external/vulkan-validation-layers/libs/glm/gtc/
H A Dquaternion.hpp62 typedef tvec4<bool, P> bool_type; typedef in struct:glm::detail::tquat
/external/flatbuffers/src/
H A Didl_gen_general.cpp50 std::string bool_type; member in struct:flatbuffers::LanguageParameters
811 code += lang_.bool_type + struct_def.name;
1084 code += struct_def.fixed ? "void " : lang_.bool_type;

Completed in 437 milliseconds

12