Lines Matching full:double
76 …* @tc.desc: This function Convert the double type data into a string.first convert it into the cor…
109 NumberHelper::DoubleToString(thread, static_cast<double>(-9223372036854775807), radix)); in HWTEST_F_L0()
206 …* @tc.desc:This function takes the integer part of double type.When it is positive,it is rounded d…
229 …* @tc.desc: This function takes the double of integer type.When the decimal part is eight and the …
248 double nanDouble = 0.0f / 0.0f; in HWTEST_F_L0()
250 double infDouble = POSITIVE_INFINITY; in HWTEST_F_L0()
266 double nanDouble = 0.0f / 0.0f; in HWTEST_F_L0()
268 double infDouble = POSITIVE_INFINITY; in HWTEST_F_L0()
283 double nanDouble = 0.0f / 0.0f; in HWTEST_F_L0()
285 double infDouble = POSITIVE_INFINITY; in HWTEST_F_L0()
291 …* @tc.desc: The function is to convert double type to int type,The maximum value of integer part o…
383 …* @tc.desc: Convert double decimal type to Precision type through "DoubleToPrecision" function.If …
420 …* @tc.desc: Convert double decimal type to Precision type through "DoubleToPrecision" function.If …
498 …CString integerStr = NumberHelper::IntegerToString(static_cast<double>((radix + 1) * (0x1ULL << 52… in HWTEST_F_L0()
501 integerStr = NumberHelper::IntegerToString(static_cast<double>(10), radix); in HWTEST_F_L0()
505 integerStr = NumberHelper::IntegerToString(static_cast<double>(33), radix); in HWTEST_F_L0()
509 integerStr = NumberHelper::IntegerToString(static_cast<double>(128), radix); in HWTEST_F_L0()
512 integerStr = NumberHelper::IntegerToString(static_cast<double>(128.985), radix); in HWTEST_F_L0()
516 integerStr = NumberHelper::IntegerToString(static_cast<double>(256), radix); in HWTEST_F_L0()
520 integerStr = NumberHelper::IntegerToString(static_cast<double>(987654), radix); in HWTEST_F_L0()
523 integerStr = NumberHelper::IntegerToString(static_cast<double>(23), radix); in HWTEST_F_L0()
536 double d = 8.1999999999999993; in HWTEST_F_L0()
541 double d2 = 0.30000000000000004; in HWTEST_F_L0()
549 * @tc.desc: The abstract operation DoubleToInt64 converts a double value to int64_t
555 int64_t d = NumberHelper::DoubleToInt64(std::numeric_limits<double>::max()); in HWTEST_F_L0()
558 …int64_t d1 = NumberHelper::DoubleToInt64(static_cast<double>(std::numeric_limits<int64_t>::max())); in HWTEST_F_L0()
560 …int64_t d2 = NumberHelper::DoubleToInt64(static_cast<double>(std::numeric_limits<int64_t>::min())); in HWTEST_F_L0()
563 …int64_t d3 = NumberHelper::DoubleToInt64(static_cast<double>(std::numeric_limits<int64_t>::max()) … in HWTEST_F_L0()
565 …int64_t d4 = NumberHelper::DoubleToInt64(static_cast<double>(std::numeric_limits<int64_t>::min()) … in HWTEST_F_L0()