Lines Matching refs:RZ
535 TestRoundingMode(s32_f64, RZ, 0, 0);
536 TestRoundingMode(s32_f64, RZ, 0.5, 0);
537 TestRoundingMode(s32_f64, RZ, -0.5, 0);
538 TestRoundingMode(s32_f64, RZ, 123.7, 123);
539 TestRoundingMode(s32_f64, RZ, -123.7, -123);
540 TestRoundingMode(s32_f64, RZ, 123456.2, 123456);
541 TestRoundingMode(s32_f64, RZ, -123456.2, -123456);
542 TestRoundingMode(s32_f64, RZ, static_cast<double>(kMaxInt), kMaxInt);
543 TestRoundingMode(s32_f64, RZ, (kMaxInt + 0.5), kMaxInt);
544 TestRoundingMode(s32_f64, RZ, (kMaxInt + 1.0), kMaxInt, true);
545 TestRoundingMode(s32_f64, RZ, static_cast<double>(kMinInt), kMinInt);
546 TestRoundingMode(s32_f64, RZ, (kMinInt - 0.5), kMinInt);
547 TestRoundingMode(s32_f64, RZ, (kMinInt - 1.0), kMinInt, 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);