Home
last modified time | relevance | path

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

12

/external/v8/src/arm/
Dconstants-arm.cc61 const char* VFPRegisters::Name(int reg, bool is_double) { in Name() argument
63 return names_[reg + (is_double ? kNumVFPSingleRegisters : 0)]; in Name()
67 int VFPRegisters::Number(const char* name, bool* is_double) { in Number() argument
71 *is_double = false; in Number()
74 *is_double = true; in Number()
Dconstants-arm.h723 static const char* Name(int reg, bool is_double);
728 static int Number(const char* name, bool* is_double);
Dsimulator-arm.cc117 bool is_double; in GetVFPSingleValue() local
118 int regnum = VFPRegisters::Number(desc, &is_double); in GetVFPSingleValue()
119 if (regnum != kNoRegister && !is_double) { in GetVFPSingleValue()
128 bool is_double; in GetVFPDoubleValue() local
129 int regnum = VFPRegisters::Number(desc, &is_double); in GetVFPDoubleValue()
130 if (regnum != kNoRegister && is_double) { in GetVFPDoubleValue()
/external/mesa3d/src/compiler/glsl/
Dir_validate.cpp265 ir->operands[0]->type->is_double() || in visit_leave()
274 ir->type->is_double()); in visit_leave()
346 assert(ir->type->is_double()); in visit_leave()
350 assert(ir->type->is_double()); in visit_leave()
353 assert(ir->operands[0]->type->is_double()); in visit_leave()
357 assert(ir->operands[0]->type->is_double()); in visit_leave()
390 assert(ir->type->is_double()); in visit_leave()
394 assert(ir->type->is_double()); in visit_leave()
413 assert(ir->operands[0]->type->is_double()); in visit_leave()
429 assert(ir->operands[0]->type->is_double()); in visit_leave()
[all …]
Dlower_instructions.cpp205 assert(ir->operands[1]->type->is_float() || ir->operands[1]->type->is_double()); in div_to_mul_rcp()
339 (lowering(DDIV_TO_MUL_RCP) && ir->type->is_double())) in mod_to_floor()
345 if (lowering(DOPS_TO_DFRAC) && ir->type->is_double()) in mod_to_floor()
1674 if (ir->operands[0]->type->is_double()) in visit_leave()
1678 if (ir->operands[0]->type->is_double()) in visit_leave()
1690 (ir->operands[1]->type->is_double() && lowering(DDIV_TO_MUL_RCP))) in visit_leave()
1705 if (lowering(MOD_TO_FLOOR) && (ir->type->is_float() || ir->type->is_double())) in visit_leave()
1717 if (lowering(DFREXP_DLDEXP_TO_ARITH) && ir->type->is_double()) in visit_leave()
1722 if (lowering(DFREXP_DLDEXP_TO_ARITH) && ir->operands[0]->type->is_double()) in visit_leave()
1727 if (lowering(DFREXP_DLDEXP_TO_ARITH) && ir->operands[0]->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.cpp652 ir->type->is_float() || ir->type->is_double())) { in handle_expression()
/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/v8/src/
Dfield-index-inl.h62 return is_double() ? (result | 1) : result; in GetLoadByFieldIndex()
Dfield-index.h41 bool is_double() const { return EncodingBits::decode(bit_field_) == kDouble; } in is_double() function
/external/arm-optimized-routines/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/v8/src/ic/
Dhandler-configuration-inl.h45 IsDoubleBits::encode(field_index.is_double()) | in LoadField()
Daccessor-assembler.cc296 Label is_double(this); in HandleLoadField() local
297 GotoIf(IsSetWord<LoadHandler::IsDoubleBits>(handler_word), &is_double); in HandleLoadField()
300 BIND(&is_double); in HandleLoadField()
313 Label is_double(this); in HandleLoadField() local
316 GotoIf(IsSetWord<LoadHandler::IsDoubleBits>(handler_word), &is_double); in HandleLoadField()
319 BIND(&is_double); in HandleLoadField()
/external/mesa3d/src/compiler/
Dglsl_types.h523 bool is_double() const in is_double() function
Dglsl_types.cpp253 return this->is_double(); in contains_double()
1547 if ((!state || state->has_double()) && this->is_double()) in can_implicitly_convert_to()
1551 if ((!state || state->has_double()) && desired->is_double()) { in can_implicitly_convert_to()
/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.cpp2396 bool is_double = type_sz(inst->dst.type) == 8; in scalarize_df() local
2397 for (int arg = 0; !is_double && arg < 3; arg++) { in scalarize_df()
2398 is_double = inst->src[arg].file != BAD_FILE && in scalarize_df()
2402 if (!is_double) in scalarize_df()
/external/mesa3d/prebuilt-intermediates/glsl/
Dir_expression_operation_constant.h1205 if (op[0]->type->is_double())
1724 assert(op[0]->type->is_float() || op[0]->type->is_double());
1725 assert(op[1]->type->is_float() || op[1]->type->is_double());
1726 assert(op[2]->type->is_float() || op[2]->type->is_double());
/external/v8/src/x64/
Dmacro-assembler-x64.cc881 template <typename OperandOrXMMRegister, bool is_double>
887 if (is_double) { in ConvertFloatToUint64()
898 if (is_double) { in ConvertFloatToUint64()
/external/mesa3d/src/compiler/spirv/
Dspirv_to_nir.c151 bool is_double; member
1331 if (const_value->is_double) in spec_constant_decoration_cb()
1345 data.is_double = false; in get_specialization()
1356 data.is_double = true; in get_specialization64()

12