HomeSort by relevance Sort by last modified time
    Searched refs:bool_type (Results 1 - 25 of 30) sorted by null

1 2

  /external/vulkan-validation-layers/libs/glm/detail/
func_vector_relational.hpp 62 //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);
type_gentype.hpp 59 typedef TYPE<bool> bool_type; typedef in struct:glm::detail::genType
113 typedef base<bool, colT, rowT> bool_type;
func_common.hpp 336 GLM_FUNC_DECL typename genType::bool_type isnan(genType const & x);
349 GLM_FUNC_DECL typename genType::bool_type isinf(genType const & x);
type_vec1.hpp 55 typedef tvec1<bool, P> bool_type; typedef in struct:glm::detail::tvec1
type_vec2.hpp 55 typedef tvec2<bool, P> bool_type; typedef in struct:glm::detail::tvec2
type_vec3.hpp 55 typedef tvec3<bool, P> bool_type; typedef in struct:glm::detail::tvec3
type_vec4.hpp 56 typedef tvec4<bool, P> bool_type; typedef in struct:glm::detail::tvec4
  /external/mesa3d/src/compiler/glsl/
ir_expression_operation.py 85 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_expression="{src0} > {src1}")
    [all...]
lower_if_to_cond_assign.cpp 196 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,
lower_discard.cpp 178 ir_variable *temp = new(mem_ctx) ir_variable(glsl_type::bool_type,
lower_discard_flow.cpp 145 ir_variable *var = new(mem_ctx) ir_variable(glsl_type::bool_type,
lower_vector_insert.cpp 120 factory.make_temp(glsl_type::bool_type, "index_condition");
loop_controls.cpp 153 new(mem_ctx) ir_expression(op, glsl_type::bool_type, add, to);
ir_validate.cpp 141 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);
lower_jumps.cpp 191 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);
    [all...]
ir_builder_print_visitor.cpp 102 ir->type == glsl_type::bool_type)
354 ir->type == glsl_type::bool_type) {
lower_variable_index_to_cond_assign.cpp 311 new(this->mem_ctx) ir_expression(ir_binop_less, glsl_type::bool_type,
ir.cpp 347 this->type = glsl_type::bool_type;
371 this->type = glsl_type::bool_type;
    [all...]
  /external/vulkan-validation-layers/libs/glm/gtx/
simd_quat.hpp 79 typedef tquat<bool, defaultp> bool_type; typedef
simd_vec4.hpp 98 typedef tvec4<bool, highp> bool_type; typedef
  /external/mesa3d/src/compiler/
nir_types.cpp 294 return glsl_type::bool_type;
glsl_types.cpp 356 return bool_type;
382 return bool_type;
516 bool_type, bvec2_type, bvec3_type, bvec4_type
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
debug.h 199 bfd_boolean (*bool_type) (void *, unsigned int); member in struct:debug_write_fns
  /external/vulkan-validation-layers/libs/glm/gtc/
quaternion.hpp 62 typedef tvec4<bool, P> bool_type; typedef in struct:glm::detail::tquat
  /external/flatbuffers/src/
idl_gen_general.cpp 50 std::string bool_type; member in struct:flatbuffers::LanguageParameters
811 code += lang_.bool_type + struct_def.name;
    [all...]

Completed in 466 milliseconds

1 2