Lines Matching refs:RN

518   TestRoundingMode(s32_f64, RN,  0, 0);
519 TestRoundingMode(s32_f64, RN, 0.5, 0);
520 TestRoundingMode(s32_f64, RN, -0.5, 0);
521 TestRoundingMode(s32_f64, RN, 1.5, 2);
522 TestRoundingMode(s32_f64, RN, -1.5, -2);
523 TestRoundingMode(s32_f64, RN, 123.7, 124);
524 TestRoundingMode(s32_f64, RN, -123.7, -124);
525 TestRoundingMode(s32_f64, RN, 123456.2, 123456);
526 TestRoundingMode(s32_f64, RN, -123456.2, -123456);
527 TestRoundingMode(s32_f64, RN, static_cast<double>(kMaxInt), kMaxInt);
528 TestRoundingMode(s32_f64, RN, (kMaxInt + 0.49), kMaxInt);
529 TestRoundingMode(s32_f64, RN, (kMaxInt + 1.0), kMaxInt, true);
530 TestRoundingMode(s32_f64, RN, (kMaxInt + 0.5), kMaxInt, true);
531 TestRoundingMode(s32_f64, RN, static_cast<double>(kMinInt), kMinInt);
532 TestRoundingMode(s32_f64, RN, (kMinInt - 0.5), kMinInt);
533 TestRoundingMode(s32_f64, RN, (kMinInt - 1.0), kMinInt, true);
534 TestRoundingMode(s32_f64, RN, (kMinInt - 0.51), kMinInt, true);
568 TestRoundingMode(u32_f64, RN, -0.5, 0);
569 TestRoundingMode(u32_f64, RN, -123456.7, 0, true);
570 TestRoundingMode(u32_f64, RN, static_cast<double>(kMinInt), 0, true);
571 TestRoundingMode(u32_f64, RN, kMinInt - 1.0, 0, true);
608 TestRoundingMode(u32_f64, RN, 0, 0);
609 TestRoundingMode(u32_f64, RN, 0.5, 0);
610 TestRoundingMode(u32_f64, RN, 1.5, 2);
611 TestRoundingMode(u32_f64, RN, 123.7, 124);
612 TestRoundingMode(u32_f64, RN, 123456.2, 123456);
613 TestRoundingMode(u32_f64, RN, static_cast<double>(kMaxInt), kMaxInt);
614 TestRoundingMode(u32_f64, RN, (kMaxInt + 0.49), kMaxInt);
615 TestRoundingMode(u32_f64, RN, (kMaxInt + 0.5),
617 TestRoundingMode(u32_f64, RN, (kMaxUInt + 0.49), kMaxUInt);
618 TestRoundingMode(u32_f64, RN, (kMaxUInt + 0.5), kMaxUInt, true);
619 TestRoundingMode(u32_f64, RN, (kMaxUInt + 1.0), kMaxUInt, true);