Lines Matching refs:RN

508   TestRoundingMode(s32_f64, RN,  0, 0);
509 TestRoundingMode(s32_f64, RN, 0.5, 0);
510 TestRoundingMode(s32_f64, RN, -0.5, 0);
511 TestRoundingMode(s32_f64, RN, 1.5, 2);
512 TestRoundingMode(s32_f64, RN, -1.5, -2);
513 TestRoundingMode(s32_f64, RN, 123.7, 124);
514 TestRoundingMode(s32_f64, RN, -123.7, -124);
515 TestRoundingMode(s32_f64, RN, 123456.2, 123456);
516 TestRoundingMode(s32_f64, RN, -123456.2, -123456);
517 TestRoundingMode(s32_f64, RN, static_cast<double>(kMaxInt), kMaxInt);
518 TestRoundingMode(s32_f64, RN, (kMaxInt + 0.49), kMaxInt);
519 TestRoundingMode(s32_f64, RN, (kMaxInt + 1.0), kMaxInt, true);
520 TestRoundingMode(s32_f64, RN, (kMaxInt + 0.5), kMaxInt, true);
521 TestRoundingMode(s32_f64, RN, static_cast<double>(kMinInt), kMinInt);
522 TestRoundingMode(s32_f64, RN, (kMinInt - 0.5), kMinInt);
523 TestRoundingMode(s32_f64, RN, (kMinInt - 1.0), kMinInt, true);
524 TestRoundingMode(s32_f64, RN, (kMinInt - 0.51), kMinInt, true);
558 TestRoundingMode(u32_f64, RN, -0.5, 0);
559 TestRoundingMode(u32_f64, RN, -123456.7, 0, true);
560 TestRoundingMode(u32_f64, RN, static_cast<double>(kMinInt), 0, true);
561 TestRoundingMode(u32_f64, RN, kMinInt - 1.0, 0, true);
598 TestRoundingMode(u32_f64, RN, 0, 0);
599 TestRoundingMode(u32_f64, RN, 0.5, 0);
600 TestRoundingMode(u32_f64, RN, 1.5, 2);
601 TestRoundingMode(u32_f64, RN, 123.7, 124);
602 TestRoundingMode(u32_f64, RN, 123456.2, 123456);
603 TestRoundingMode(u32_f64, RN, static_cast<double>(kMaxInt), kMaxInt);
604 TestRoundingMode(u32_f64, RN, (kMaxInt + 0.49), kMaxInt);
605 TestRoundingMode(u32_f64, RN, (kMaxInt + 0.5),
607 TestRoundingMode(u32_f64, RN, (kMaxUInt + 0.49), kMaxUInt);
608 TestRoundingMode(u32_f64, RN, (kMaxUInt + 0.5), kMaxUInt, true);
609 TestRoundingMode(u32_f64, RN, (kMaxUInt + 1.0), kMaxUInt, true);