/external/vulkan-validation-layers/libs/glm/detail/ |
D | 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 …]
|
D | 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 …]
|
D | func_vector_relational.hpp | 71 …GLM_FUNC_DECL typename vecType<T, P>::bool_type lessThanEqual(vecType<T, P> const & x, vecType<T, … 80 …GLM_FUNC_DECL typename vecType<T, P>::bool_type greaterThan(vecType<T, P> const & x, vecType<T, P>… 89 …GLM_FUNC_DECL typename vecType<T, P>::bool_type greaterThanEqual(vecType<T, P> const & x, vecType<… 108 …GLM_FUNC_DECL typename vecType<T, P>::bool_type notEqual(vecType<T, P> const & x, vecType<T, P> co…
|
D | 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 …]
|
D | 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);
|
D | type_gentype.hpp | 59 typedef TYPE<bool> bool_type; typedef
|
D | type_vec1.hpp | 55 typedef tvec1<bool, P> bool_type; typedef
|
D | type_vec2.hpp | 55 typedef tvec2<bool, P> bool_type; typedef
|
/external/mesa3d/src/glsl/ |
D | lower_if_to_cond_assign.cpp | 135 glsl_type::bool_type, in move_block_to_cond_assign() 144 glsl_type::bool_type, in move_block_to_cond_assign() 195 new(mem_ctx) ir_variable(glsl_type::bool_type, in visit_leave() 222 new(mem_ctx) ir_variable(glsl_type::bool_type, in visit_leave()
|
D | ir_validate.cpp | 107 if (ir->condition->type != glsl_type::bool_type) { in visit_enter() 314 assert(ir->type == glsl_type::bool_type); in visit_leave() 379 assert(ir->type == glsl_type::bool_type); in visit_leave() 414 assert(ir->type == glsl_type::bool_type); in visit_leave() 415 assert(ir->operands[0]->type == glsl_type::bool_type); in visit_leave() 416 assert(ir->operands[1]->type == glsl_type::bool_type); in visit_leave()
|
D | lower_discard.cpp | 175 ir_variable *temp = new(mem_ctx) ir_variable(glsl_type::bool_type, in visit_leave()
|
D | lower_jumps.cpp | 189 …this->execute_flag = new(this->signature) ir_variable(glsl_type::bool_type, "execute_flag", ir_var… in get_execute_flag() 200 …this->break_flag = new(this->signature) ir_variable(glsl_type::bool_type, "break_flag", ir_var_tem… in get_break_flag() 229 …this->return_flag = new(this->signature) ir_variable(glsl_type::bool_type, "return_flag", ir_var_t… in get_return_flag()
|
D | lower_discard_flow.cpp | 135 ir_variable *var = new(mem_ctx) ir_variable(glsl_type::bool_type, in lower_discard_flow()
|
D | lower_variable_index_to_cond_assign.cpp | 102 &glsl_type::bool_type[components - 1], in compare_index_block() 304 new(this->mem_ctx) ir_expression(ir_binop_less, glsl_type::bool_type, in bisect()
|
D | glsl_types.h | 166 static const glsl_type *const bool_type; member
|
D | glsl_types.cpp | 320 return bool_type; in get_base_type() 415 return bool_type + (rows - 1); in get_instance()
|
D | loop_controls.cpp | 138 new(mem_ctx) ir_expression(op, glsl_type::bool_type, add, to); in calculate_iterations()
|
D | ast_to_hir.cpp | 538 return glsl_type::bool_type; in relational_result_type() 1169 assert(result->type == glsl_type::bool_type); in hir() 1213 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type, in hir() 1249 ir_variable *const tmp = new(ctx) ir_variable(glsl_type::bool_type, in hir() 1286 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type, in hir() 1294 result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type, in hir() 3565 new(ctx) ir_variable(glsl_type::bool_type, in hir() 3578 state->switch_state.is_break_var = new(ctx) ir_variable(glsl_type::bool_type, in hir()
|
D | builtin_types.h | 65 const glsl_type *const glsl_type::bool_type = & builtin_core_types[0];
|
D | ir.cpp | 313 this->type = glsl_type::bool_type; in ir_expression() 338 this->type = glsl_type::bool_type; in ir_expression() 575 this->type = glsl_type::bool_type; in ir_constant()
|
/external/v8/src/runtime/ |
D | runtime-simd.cc | 245 #define SIMD_RELATIONAL_OP(type, bool_type, lane_count, a, b, op, result) \ argument 254 Handle<bool_type> result = isolate->factory()->New##bool_type(lanes); 647 #define SIMD_EQUAL_FUNCTION(type, bool_type, lane_count) \ argument 650 SIMD_RELATIONAL_OP(type, bool_type, lane_count, a, b, ==, result); \ 654 #define SIMD_NOT_EQUAL_FUNCTION(type, bool_type, lane_count) \ argument 657 SIMD_RELATIONAL_OP(type, bool_type, lane_count, a, b, !=, result); \ 664 #define SIMD_LESS_THAN_FUNCTION(type, bool_type, lane_count) \ argument 667 SIMD_RELATIONAL_OP(type, bool_type, lane_count, a, b, <, result); \ 671 #define SIMD_LESS_THAN_OR_EQUAL_FUNCTION(type, bool_type, lane_count) \ argument 674 SIMD_RELATIONAL_OP(type, bool_type, lane_count, a, b, <=, result); \ [all …]
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | cuda.hpp | 454 typedef void (Stream::*bool_type)() const; typedef in cv::cuda::Stream 489 operator bool_type() const;
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
D | simd_quat.hpp | 79 typedef tquat<bool, defaultp> bool_type; typedef
|
D | simd_vec4.hpp | 98 typedef tvec4<bool, highp> bool_type; typedef
|
/external/vulkan-validation-layers/libs/glm/gtc/ |
D | quaternion.hpp | 62 typedef tvec4<bool, P> bool_type; typedef
|