Lines Matching refs:u32_f64

425   u32_f64  enumerator
456 case u32_f64: in TestRoundingMode()
553 TestRoundingMode(u32_f64, RN, -0.5, 0);
554 TestRoundingMode(u32_f64, RN, -123456.7, 0, true);
555 TestRoundingMode(u32_f64, RN, static_cast<double>(kMinInt), 0, true);
556 TestRoundingMode(u32_f64, RN, kMinInt - 1.0, 0, true);
558 TestRoundingMode(u32_f64, RM, -0.5, 0, true);
559 TestRoundingMode(u32_f64, RM, -123456.7, 0, true);
560 TestRoundingMode(u32_f64, RM, static_cast<double>(kMinInt), 0, true);
561 TestRoundingMode(u32_f64, RM, kMinInt - 1.0, 0, true);
563 TestRoundingMode(u32_f64, RZ, -0.5, 0);
564 TestRoundingMode(u32_f64, RZ, -123456.7, 0, true);
565 TestRoundingMode(u32_f64, RZ, static_cast<double>(kMinInt), 0, true);
566 TestRoundingMode(u32_f64, RZ, kMinInt - 1.0, 0, true);
571 TestRoundingMode(u32_f64, RZ, 0, 0);
572 TestRoundingMode(u32_f64, RZ, 0.5, 0);
573 TestRoundingMode(u32_f64, RZ, 123.7, 123);
574 TestRoundingMode(u32_f64, RZ, 123456.2, 123456);
575 TestRoundingMode(u32_f64, RZ, static_cast<double>(kMaxInt), kMaxInt);
576 TestRoundingMode(u32_f64, RZ, (kMaxInt + 0.5), kMaxInt);
577 TestRoundingMode(u32_f64, RZ, (kMaxInt + 1.0),
579 TestRoundingMode(u32_f64, RZ, (kMaxUInt + 0.5), kMaxUInt);
580 TestRoundingMode(u32_f64, RZ, (kMaxUInt + 1.0), kMaxUInt, true);
582 TestRoundingMode(u32_f64, RM, 0, 0);
583 TestRoundingMode(u32_f64, RM, 0.5, 0);
584 TestRoundingMode(u32_f64, RM, 123.7, 123);
585 TestRoundingMode(u32_f64, RM, 123456.2, 123456);
586 TestRoundingMode(u32_f64, RM, static_cast<double>(kMaxInt), kMaxInt);
587 TestRoundingMode(u32_f64, RM, (kMaxInt + 0.5), kMaxInt);
588 TestRoundingMode(u32_f64, RM, (kMaxInt + 1.0),
590 TestRoundingMode(u32_f64, RM, (kMaxUInt + 0.5), kMaxUInt);
591 TestRoundingMode(u32_f64, RM, (kMaxUInt + 1.0), kMaxUInt, true);
593 TestRoundingMode(u32_f64, RN, 0, 0);
594 TestRoundingMode(u32_f64, RN, 0.5, 0);
595 TestRoundingMode(u32_f64, RN, 1.5, 2);
596 TestRoundingMode(u32_f64, RN, 123.7, 124);
597 TestRoundingMode(u32_f64, RN, 123456.2, 123456);
598 TestRoundingMode(u32_f64, RN, static_cast<double>(kMaxInt), kMaxInt);
599 TestRoundingMode(u32_f64, RN, (kMaxInt + 0.49), kMaxInt);
600 TestRoundingMode(u32_f64, RN, (kMaxInt + 0.5),
602 TestRoundingMode(u32_f64, RN, (kMaxUInt + 0.49), kMaxUInt);
603 TestRoundingMode(u32_f64, RN, (kMaxUInt + 0.5), kMaxUInt, true);
604 TestRoundingMode(u32_f64, RN, (kMaxUInt + 1.0), kMaxUInt, true);