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

1 2

  /external/vulkan-validation-layers/libs/glm/detail/
intrinsic_vector_relational.inl 31 //GLM_FUNC_QUALIFIER typename detail::tvec2<T, P>::bool_type lessThan
42 // return typename detail::tvec2<bool>::bool_type(x.x < y.x, x.y < y.y);
46 //GLM_FUNC_QUALIFIER typename detail::tvec3<T, P>::bool_type lessThan
57 // return typename detail::tvec3<bool>::bool_type(x.x < y.x, x.y < y.y, x.z < y.z);
61 //GLM_FUNC_QUALIFIER typename detail::tvec4<T, P>::bool_type lessThan
72 // return typename detail::tvec4<bool>::bool_type(x.x < y.x, x.y < y.y, x.z < y.z, x.w < y.w);
77 //GLM_FUNC_QUALIFIER typename detail::tvec2<T, P>::bool_type lessThanEqual
88 // return typename detail::tvec2<bool>::bool_type(x.x <= y.x, x.y <= y.y);
92 //GLM_FUNC_QUALIFIER typename detail::tvec3<T, P>::bool_type lessThanEqual
103 // return typename detail::tvec3<bool>::bool_type(x.x <= y.x, x.y <= y.y, x.z <= y.z)
    [all...]
func_vector_relational.inl 34 GLM_FUNC_QUALIFIER typename vecType<T, P>::bool_type lessThan
44 typename vecType<bool, P>::bool_type Result(vecType<bool, P>::_null);
52 GLM_FUNC_QUALIFIER typename vecType<T, P>::bool_type lessThanEqual
62 typename vecType<bool, P>::bool_type Result(vecType<bool, P>::_null);
69 GLM_FUNC_QUALIFIER typename vecType<T, P>::bool_type greaterThan
79 typename vecType<bool, P>::bool_type Result(vecType<bool, P>::_null);
86 GLM_FUNC_QUALIFIER typename vecType<T, P>::bool_type greaterThanEqual
96 typename vecType<bool, P>::bool_type Result(vecType<bool, P>::_null);
103 GLM_FUNC_QUALIFIER typename vecType<T, P>::bool_type equal
111 typename vecType<bool, P>::bool_type Result(vecType<bool, P>::_null)
    [all...]
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);
func_common.inl 732 GLM_FUNC_QUALIFIER typename detail::tvec2<T, P>::bool_type isnan
741 return typename detail::tvec2<T, P>::bool_type(
747 GLM_FUNC_QUALIFIER typename detail::tvec3<T, P>::bool_type isnan
756 return typename detail::tvec3<T, P>::bool_type(
763 GLM_FUNC_QUALIFIER typename detail::tvec4<T, P>::bool_type isnan
772 return typename detail::tvec4<T, P>::bool_type(
804 GLM_FUNC_QUALIFIER typename detail::tvec2<T, P>::bool_type isinf
813 return typename detail::tvec2<T, P>::bool_type(
819 GLM_FUNC_QUALIFIER typename detail::tvec3<T, P>::bool_type isinf
828 return typename detail::tvec3<T, P>::bool_type(
    [all...]
type_gentype.hpp 59 typedef TYPE<bool> bool_type; typedef in struct:glm::detail::genType
113 typedef base<bool, colT, rowT> bool_type;
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/glsl/
lower_if_to_cond_assign.cpp 135 glsl_type::bool_type,
144 glsl_type::bool_type,
195 new(mem_ctx) ir_variable(glsl_type::bool_type,
222 new(mem_ctx) ir_variable(glsl_type::bool_type,
lower_discard_flow.cpp 135 ir_variable *var = new(mem_ctx) ir_variable(glsl_type::bool_type,
ir_validate.cpp 107 if (ir->condition->type != glsl_type::bool_type) {
314 assert(ir->type == glsl_type::bool_type);
379 assert(ir->type == glsl_type::bool_type);
414 assert(ir->type == glsl_type::bool_type);
415 assert(ir->operands[0]->type == glsl_type::bool_type);
416 assert(ir->operands[1]->type == glsl_type::bool_type);
lower_discard.cpp 175 ir_variable *temp = new(mem_ctx) ir_variable(glsl_type::bool_type,
lower_variable_index_to_cond_assign.cpp 102 &glsl_type::bool_type[components - 1],
304 new(this->mem_ctx) ir_expression(ir_binop_less, glsl_type::bool_type,
loop_controls.cpp 138 new(mem_ctx) ir_expression(op, glsl_type::bool_type, add, to);
lower_jumps.cpp 189 this->execute_flag = new(this->signature) ir_variable(glsl_type::bool_type, "execute_flag", ir_var_temporary);
200 this->break_flag = new(this->signature) ir_variable(glsl_type::bool_type, "break_flag", ir_var_temporary);
229 this->return_flag = new(this->signature) ir_variable(glsl_type::bool_type, "return_flag", ir_var_temporary);
    [all...]
builtin_types.h 65 const glsl_type *const glsl_type::bool_type = & builtin_core_types[0]; member in class:glsl_type
glsl_types.cpp 320 return bool_type;
415 return bool_type + (rows - 1);
ir.cpp 313 this->type = glsl_type::bool_type;
338 this->type = glsl_type::bool_type;
575 this->type = glsl_type::bool_type;
    [all...]
glsl_types.h 166 static const glsl_type *const bool_type; member in struct:glsl_type
ast_to_hir.cpp 538 return glsl_type::bool_type;
    [all...]
  /external/v8/src/runtime/
runtime-simd.cc 216 #define SIMD_RELATIONAL_OP(type, bool_type, lane_count, a, b, op, result) \
225 Handle<bool_type> result = isolate->factory()->New##bool_type(lanes);
622 #define SIMD_EQUAL_FUNCTION(type, bool_type, lane_count) \
625 SIMD_RELATIONAL_OP(type, bool_type, lane_count, a, b, ==, result); \
629 #define SIMD_NOT_EQUAL_FUNCTION(type, bool_type, lane_count) \
632 SIMD_RELATIONAL_OP(type, bool_type, lane_count, a, b, !=, result); \
639 #define SIMD_LESS_THAN_FUNCTION(type, bool_type, lane_count) \
642 SIMD_RELATIONAL_OP(type, bool_type, lane_count, a, b, <, result); \
646 #define SIMD_LESS_THAN_OR_EQUAL_FUNCTION(type, bool_type, lane_count)
    [all...]
  /external/vulkan-validation-layers/libs/glm/gtx/
simd_quat.hpp 79 typedef tquat<bool, defaultp> bool_type; typedef
  /external/opencv3/modules/core/src/
cuda_stream.cpp 503 cv::cuda::Stream::operator bool_type() const
  /external/vulkan-validation-layers/libs/glm/gtc/
quaternion.hpp 62 typedef tvec4<bool, P> bool_type; typedef in struct:glm::detail::tquat

Completed in 619 milliseconds

1 2