Home | History | Annotate | Download | only in cctest

Lines Matching refs:RZ

540   TestRoundingMode(s32_f64, RZ,  0, 0);
541 TestRoundingMode(s32_f64, RZ, 0.5, 0);
542 TestRoundingMode(s32_f64, RZ, -0.5, 0);
543 TestRoundingMode(s32_f64, RZ, 123.7, 123);
544 TestRoundingMode(s32_f64, RZ, -123.7, -123);
545 TestRoundingMode(s32_f64, RZ, 123456.2, 123456);
546 TestRoundingMode(s32_f64, RZ, -123456.2, -123456);
547 TestRoundingMode(s32_f64, RZ, static_cast<double>(kMaxInt), kMaxInt);
548 TestRoundingMode(s32_f64, RZ, (kMaxInt + 0.5), kMaxInt);
549 TestRoundingMode(s32_f64, RZ, (kMaxInt + 1.0), kMaxInt, true);
550 TestRoundingMode(s32_f64, RZ, static_cast<double>(kMinInt), kMinInt);
551 TestRoundingMode(s32_f64, RZ, (kMinInt - 0.5), kMinInt);
552 TestRoundingMode(s32_f64, RZ, (kMinInt - 1.0), kMinInt, true);
568 TestRoundingMode(u32_f64, RZ, -0.5, 0);
569 TestRoundingMode(u32_f64, RZ, -123456.7, 0, true);
570 TestRoundingMode(u32_f64, RZ, static_cast<double>(kMinInt), 0, true);
571 TestRoundingMode(u32_f64, RZ, kMinInt - 1.0, 0, true);
576 TestRoundingMode(u32_f64, RZ, 0, 0);
577 TestRoundingMode(u32_f64, RZ, 0.5, 0);
578 TestRoundingMode(u32_f64, RZ, 123.7, 123);
579 TestRoundingMode(u32_f64, RZ, 123456.2, 123456);
580 TestRoundingMode(u32_f64, RZ, static_cast<double>(kMaxInt), kMaxInt);
581 TestRoundingMode(u32_f64, RZ, (kMaxInt + 0.5), kMaxInt);
582 TestRoundingMode(u32_f64, RZ, (kMaxInt + 1.0),
584 TestRoundingMode(u32_f64, RZ, (kMaxUInt + 0.5), kMaxUInt);
585 TestRoundingMode(u32_f64, RZ, (kMaxUInt + 1.0), kMaxUInt, true);