Home | History | Annotate | Download | only in unit

Lines Matching refs:hex

725     CHECK(short, 0, hex, "0")
726 CHECK(short, 12345, hex, "3039")
728 CHECK(short, -1, hex, "ffff")
729 CHECK(short, -12345, hex, "cfc7")
732 CHECK(unsigned short, 0, hex, "0")
733 CHECK(unsigned short, 12345, hex, "3039")
735 CHECK(int, 0, hex, "0")
736 CHECK(int, 12345678, hex, "bc614e")
738 CHECK(int, -1, hex, "ffffffff")
739 CHECK(int, -12345678, hex, "ff439eb2")
742 CHECK(unsigned int, 0, hex, "0")
743 CHECK(unsigned int, 12345678, hex, "bc614e")
745 CHECK(long, 0, hex, "0")
746 CHECK(long, 12345678, hex, "bc614e")
748 CHECK(long, -1, hex, "ffffffff")
749 CHECK(long, -12345678, hex, "ff439eb2")
752 CHECK(unsigned long, 0, hex, "0")
753 CHECK(unsigned long, 12345678, hex, "bc614e")
755 CHECK(_STLP_LONG_LONG, 0, hex, "0")
756 CHECK(_STLP_LONG_LONG, 12345678, hex, "bc614e")
758 CHECK(_STLP_LONG_LONG, -1, hex, "ffffffffffffffff")
759 CHECK(_STLP_LONG_LONG, -12345678, hex, "ffffffffff439eb2")
762 CHECK(unsigned _STLP_LONG_LONG, 0, hex, "0")
763 CHECK(unsigned _STLP_LONG_LONG, 12345678, hex, "bc614e")
767 CHECK_COMPLETE(short, 0, hex, showbase, showpos, nouppercase, 0, right, "0")
768 CHECK_COMPLETE(short, 0, hex, showbase, noshowpos, nouppercase, 6, right, " 0")
769 CHECK_COMPLETE(short, 0, hex, showbase, noshowpos, nouppercase, 6, internal, " 0")
771 CHECK_COMPLETE(short, 1, hex, showbase, noshowpos, nouppercase, 6, right, " 0x1")
772 CHECK_COMPLETE(short, 1, hex, showbase, noshowpos, nouppercase, 6, left, "0x1 ")
773 CHECK_COMPLETE(short, 1, hex, showbase, noshowpos, nouppercase, 6, internal, "0x 1")
774 CHECK_COMPLETE(short, 1, hex, showbase, noshowpos, uppercase, 6, left, "0X1 ")
775 CHECK_COMPLETE(short, 1, hex, showbase, showpos, uppercase, 6, internal, "0X 1")
965 istr >> hex >> val;
973 istr >> hex >> val;
981 istr >> hex >> val;
988 istr >> hex >> val;
997 istr >> hex >> val;
1010 s << hex << 0;
1015 s << hex << 0xff;
1020 s << hex << setw( 4 ) << 0xff;
1025 s << hex << setw( 4 ) << 0;
1030 s << hex << showbase << 0;
1035 s << hex << showbase << 0xff;
1040 s << hex << showbase << setw( 4 ) << 0xff;
1046 s << hex << showbase << setw(8+2) << 0;
1068 // Hmmm, I see 0xff00 on box with 32-bits address; pointer like 'unsigned hex'?