Lines Matching refs:sc_ufixed

554   sc_ufixed<8, 5> a("0");
555 sc_ufixed<8, 5> b("1");
556 sc_ufixed<8, 5> c("-1");
557 sc_ufixed<8, 5> d(T_UCHAR_MAX);
558 sc_ufixed<8, 5> e(T_UCHAR_MIN);
560 // cerr << "sc_ufixed<8, 5> d(INT_MAX); does not work\n";
568 sc_ufixed<8, 5> a(0);
569 sc_ufixed<8, 5> b(1);
570 sc_ufixed<8, 5> c(-1);
571 sc_ufixed<8, 5> d(INT_MAX);
572 sc_ufixed<8, 5> e(INT_MIN);
574 // cerr << "sc_ufixed<8, 5> d(INT_MAX); does not work\n";
582 sc_ufixed<8, 5> a((uint)0);
583 sc_ufixed<8, 5> b((uint)1);
584 sc_ufixed<8, 5> c((uint)-1);
585 sc_ufixed<8, 5> d(UINT_MAX);
586 sc_ufixed<8, 5> e((uint)abs(INT_MIN));
588 // cerr << "sc_ufixed<8, 5> d(UINT_MAX); does not work\n";
596 sc_ufixed<8, 5> a((short)0);
597 sc_ufixed<8, 5> b((short)1);
598 sc_ufixed<8, 5> c((short)-1);
599 sc_ufixed<8, 5> d(SHRT_MAX);
600 sc_ufixed<8, 5> e(SHRT_MIN);
602 // cerr << "sc_ufixed<8, 5> d(INT_MAX); does not work\n";
610 sc_ufixed<8, 5> a((ushort)0);
611 sc_ufixed<8, 5> b((ushort)1);
612 sc_ufixed<8, 5> c((ushort)-1);
613 sc_ufixed<8, 5> d(USHRT_MAX);
614 sc_ufixed<8, 5> e((ushort)abs(SHRT_MIN));
616 // cerr << "sc_ufixed<8, 5> d(UINT_MAX); does not work\n";
624 sc_ufixed<8, 5> a((long)0);
625 sc_ufixed<8, 5> b((long)1);
626 sc_ufixed<8, 5> c((long)-1);
627 sc_ufixed<8, 5> d(LONG_MAX);
628 sc_ufixed<8, 5> e(LONG_MIN);
630 // cerr << "sc_ufixed<8, 5> d(INT_LONG); does not work\n";
638 sc_ufixed<8, 5> a((ulong)0);
639 sc_ufixed<8, 5> b((ulong)1);
640 sc_ufixed<8, 5> c((ulong)-1);
641 sc_ufixed<8, 5> d(ULONG_MAX);
642 sc_ufixed<8, 5> e((ulong)abs(LONG_MIN));
644 // cerr << "sc_ufixed<8, 5> d(ULONG_MAX); does not work\n";
652 sc_ufixed<8, 5> a(0.0);
653 sc_ufixed<8, 5> b(1.0);
654 sc_ufixed<8, 5> c(-1.0);
655 sc_ufixed<8, 5> d(FLT_MAX);
656 sc_ufixed<8, 5> e(FLT_MIN);
658 // cerr << "sc_ufixed<8, 5> d(FLT_MAX); does not work (yet)\n";
666 sc_ufixed<8, 5> a((double)0.0);
667 sc_ufixed<8, 5> b((double)1.0);
668 sc_ufixed<8, 5> c((double)-1.0);
669 sc_ufixed<8, 5> d(DBL_MAX);
670 sc_ufixed<8, 5> e(DBL_MIN);
672 // cerr << "sc_ufixed<8, 5> d(DBL_MAX); does not work (yet)\n";