/external/v8/src/codegen/arm/ |
D | constants-arm.cc | 54 const char* VFPRegisters::Name(int reg, bool is_double) { in Name() argument 56 return names_[reg + (is_double ? kNumVFPSingleRegisters : 0)]; in Name() 59 int VFPRegisters::Number(const char* name, bool* is_double) { in Number() argument 63 *is_double = false; in Number() 66 *is_double = true; in Number()
|
D | constants-arm.h | 676 static const char* Name(int reg, bool is_double); 681 static int Number(const char* name, bool* is_double);
|
/external/deqp-deps/amber/src/ |
D | tokenizer.cc | 140 bool is_double = false; in NextToken() local 142 is_double = true; in NextToken() 146 is_double = true; in NextToken() 155 if (is_double) { in NextToken()
|
/external/mesa3d/src/compiler/glsl/ |
D | ir_validate.cpp | 412 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 …]
|
D | lower_instructions.cpp | 347 (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 …]
|
D | lower_buffer_access.cpp | 124 ? (deref->type->is_double() ? 8 : 4) in emit_access() 147 assert(deref->type->is_float() || deref->type->is_double()); in emit_access()
|
D | ir_equals.cpp | 61 if (type->is_double()) { in equals()
|
D | ir_function.cpp | 152 if (to_type->is_double()) { in get_parameter_match_type()
|
D | ir_constant_expression.cpp | 59 assert(op0->type->is_double() && op1->type->is_double()); in dot_d()
|
D | loop_analysis.cpp | 111 const ir_expression_operation op = iter->type->is_double() in calculate_iterations()
|
/external/OpenCL-CTS/test_conformance/spirv_new/ |
D | types.hpp | 82 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
|
D | test_op_vector_times_scalar.cpp | 59 if (is_double<Ts>::value) { in test_vector_times_scalar()
|
D | test_op_fmath.cpp | 59 if (is_double<T>::value) { in test_fmath()
|
/external/libchrome/base/json/ |
D | json_reader_unittest.cc | 116 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/ |
D | glsl_types.h | 847 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
|
/external/libtextclassifier/native/annotator/number/ |
D | number.cc | 204 const bool is_double = unilib_->ParseDouble(token_text, parsed_double_value); in TryParseNumber() local 205 if (!is_double) { in TryParseNumber()
|
/external/v8/src/objects/ |
D | field-index-inl.h | 60 return is_double() ? (result | 1) : result; in GetLoadByFieldIndex()
|
D | field-index.h | 41 bool is_double() const { return EncodingBits::decode(bit_field_) == kDouble; } in is_double() function
|
/external/v8/src/compiler/ |
D | access-info.cc | 532 bool is_double = LoadHandler::IsDoubleBits::decode(handler); in ComputePropertyAccessInfo() local 535 is_double ? Representation::Double() : Representation::Tagged(); in ComputePropertyAccessInfo() 536 Type field_type = is_double ? Type::Number() : Type::Any(); in ComputePropertyAccessInfo()
|
/external/arm-optimized-routines/math/test/ |
D | mathtest.c | 624 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/v8/src/ic/ |
D | handler-configuration-inl.h | 55 IsDoubleBits::encode(field_index.is_double()) | in LoadField()
|
/external/libchrome/base/ |
D | values.cc | 236 if (is_double()) in GetDouble() 461 if (out_value && is_double()) { in GetAsDouble() 469 return is_double() || is_int(); in GetAsDouble()
|
D | values.h | 156 bool is_double() const { return type() == Type::DOUBLE; } in is_double() function
|
/external/mesa3d/src/intel/compiler/ |
D | brw_vec4.cpp | 2448 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/ |
D | ir_expression_operation_constant.h | 1442 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());
|