Home
last modified time | relevance | path

Searched refs:is_double (Results 1 – 25 of 32) sorted by relevance

12

/external/mesa3d/src/compiler/glsl/
Dir_validate.cpp412 assert(ir->type->is_double()); in visit_leave()
416 assert(ir->type->is_double()); in visit_leave()
419 assert(ir->operands[0]->type->is_double()); in visit_leave()
423 assert(ir->operands[0]->type->is_double()); in visit_leave()
456 assert(ir->type->is_double()); in visit_leave()
460 assert(ir->type->is_double()); in visit_leave()
479 assert(ir->operands[0]->type->is_double()); in visit_leave()
495 assert(ir->operands[0]->type->is_double()); in visit_leave()
637 assert(ir->operands[0]->type->is_double()); in visit_leave()
642 assert(ir->type->is_double()); in visit_leave()
[all …]
Dlower_instructions.cpp347 (lowering(DDIV_TO_MUL_RCP) && ir->type->is_double())) in mod_to_floor()
353 if (lowering(DOPS_TO_DFRAC) && ir->type->is_double()) in mod_to_floor()
1762 if (ir->operands[0]->type->is_double()) in visit_leave()
1766 if (ir->operands[0]->type->is_double()) in visit_leave()
1778 (ir->operands[1]->type->is_double() && lowering(DDIV_TO_MUL_RCP))) in visit_leave()
1805 if (lowering(DFREXP_DLDEXP_TO_ARITH) && ir->type->is_double()) in visit_leave()
1810 if (lowering(DFREXP_DLDEXP_TO_ARITH) && ir->operands[0]->type->is_double()) in visit_leave()
1815 if (lowering(DFREXP_DLDEXP_TO_ARITH) && ir->operands[0]->type->is_double()) in visit_leave()
1835 if (lowering(DOPS_TO_DFRAC) && ir->type->is_double()) in visit_leave()
1840 if (lowering(DOPS_TO_DFRAC) && ir->type->is_double()) in visit_leave()
[all …]
Dlower_buffer_access.cpp124 ? (deref->type->is_double() ? 8 : 4) in emit_access()
147 assert(deref->type->is_float() || deref->type->is_double()); in emit_access()
Dir_equals.cpp61 if (type->is_double()) { in equals()
Dir_function.cpp152 if (to_type->is_double()) { in get_parameter_match_type()
Dir_constant_expression.cpp59 assert(op0->type->is_double() && op1->type->is_double()); in dot_d()
Dloop_analysis.cpp111 const ir_expression_operation op = iter->type->is_double() in calculate_iterations()
Dopt_algebraic.cpp666 ir->type->is_float() || ir->type->is_double())) { in handle_expression()
Dast_function.cpp1666 assert(first_param->type->is_float() || first_param->type->is_double()); in emit_inline_matrix_constructor()
1763 if (!col_type->is_double()) { in emit_inline_matrix_constructor()
/external/deqp-deps/amber/src/
Dtokenizer.cc220 bool is_double = false; in NextToken() local
222 is_double = true; in NextToken()
226 is_double = true; in NextToken()
235 if (is_double) { in NextToken()
/external/OpenCL-CTS/test_conformance/spirv_new/
Dtypes.hpp82 template<typename T> struct is_double { static const bool value = false; }; struct
83 template<> struct is_double<cl_double> { static const bool value = true; }; argument
84 template<> struct is_double<cl_double2> { static const bool value = true; }; struct
Dtest_op_vector_times_scalar.cpp59 if (is_double<Ts>::value) { in test_vector_times_scalar()
Dtest_op_fmath.cpp59 if (is_double<T>::value) { in test_fmath()
/external/libchrome/base/json/
Djson_reader_unittest.cc116 EXPECT_TRUE(root->is_double()); in TEST()
122 EXPECT_TRUE(root->is_double()); in TEST()
131 EXPECT_TRUE(root->is_double()); in TEST()
138 EXPECT_TRUE(root->is_double()); in TEST()
145 EXPECT_TRUE(root->is_double()); in TEST()
152 EXPECT_TRUE(root->is_double()); in TEST()
159 EXPECT_TRUE(root->is_double()); in TEST()
166 EXPECT_TRUE(root->is_double()); in TEST()
/external/mesa3d/src/compiler/
Dglsl_types.h847 return base_type == GLSL_TYPE_FLOAT16 || is_float() || is_double(); in is_float_16_32_64()
855 return is_float() || is_double(); in is_float_32_64()
887 bool is_double() const in is_double() function
Dglsl_types.cpp272 return this->is_double(); in contains_double()
1790 if ((!state || state->has_double()) && this->is_double()) in can_implicitly_convert_to()
1794 if ((!state || state->has_double()) && desired->is_double()) { in can_implicitly_convert_to()
/external/libtextclassifier/native/annotator/number/
Dnumber.cc204 const bool is_double = unilib_->ParseDouble(token_text, parsed_double_value); in TryParseNumber() local
205 if (!is_double) { in TryParseNumber()
/external/arm-optimized-routines/math/test/
Dmathtest.c624 special_op* find_special_op_from_op(unsigned op1, unsigned op2, int is_double) { in find_special_op_from_op() argument
627 if(is_double) { in find_special_op_from_op()
648 special_op* find_special_op_from_name(const char* name, int is_double) { in find_special_op_from_name() argument
651 if(is_double) { in find_special_op_from_name()
/external/llvm-project/libc/AOR_v20.02/math/test/
Dmathtest.c625 special_op* find_special_op_from_op(unsigned op1, unsigned op2, int is_double) { in find_special_op_from_op() argument
628 if(is_double) { in find_special_op_from_op()
649 special_op* find_special_op_from_name(const char* name, int is_double) { in find_special_op_from_name() argument
652 if(is_double) { in find_special_op_from_name()
/external/libchrome/base/
Dvalues.cc236 if (is_double()) in GetDouble()
461 if (out_value && is_double()) { in GetAsDouble()
469 return is_double() || is_int(); in GetAsDouble()
Dvalues.h156 bool is_double() const { return type() == Type::DOUBLE; } in is_double() function
/external/mesa3d/src/intel/compiler/
Dbrw_vec4.cpp2448 bool is_double = type_sz(inst->dst.type) == 8; in scalarize_df() local
2449 for (int arg = 0; !is_double && arg < 3; arg++) { in scalarize_df()
2450 is_double = inst->src[arg].file != BAD_FILE && in scalarize_df()
2454 if (!is_double) in scalarize_df()
/external/mesa3d/prebuilt-intermediates/glsl/
Dir_expression_operation_constant.h1442 if (op[0]->type->is_double())
1988 assert(op[0]->type->is_float() || op[0]->type->is_double());
1989 assert(op[1]->type->is_float() || op[1]->type->is_double());
1990 assert(op[2]->type->is_float() || op[2]->type->is_double());
/external/libchrome/components/json_schema/
Djson_schema_validator.cc579 if (instance->is_int() || instance->is_double()) { in ValidateEnum()
/external/libchrome/base/trace_event/
Dtrace_event_unittest.cc2341 EXPECT_TRUE(value->is_double()); in TEST_F()
2351 EXPECT_TRUE(value->is_double()); in TEST_F()
2361 EXPECT_TRUE(value->is_double()); in TEST_F()

12