Searched refs:hex (Results 1 - 25 of 95) sorted by relevance

1234

/haiku-buildtools/binutils/gas/testsuite/gas/i386/
H A Dlist-1.s5 .globl hex
6 .type hex, @function
7 hex: label
H A Dlist-1.l10 [ ]*5[ ]+\.globl hex
11 [ ]*6[ ]+\.type hex,@function
12 [ ]*7[ ]+hex:
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/lto/
H A D20090914-1_0.c7 int hex = 0x4; local
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr18928-1.c10 unsigned short hex = (u & 0x000f); local
11 if ( hex < 0x0a )
12 hexVal[i] = '0'+hex;
14 hexVal[i] = 'A'+(hex-0x0a);
/haiku-buildtools/legacy/gcc/libio/
H A Dstream.h43 extern char* hex(long, int=0);
44 extern char* hex(int, int=0);
45 extern char* hex(unsigned long, int=0);
46 extern char* hex(unsigned int, int=0);
H A Dstream.cc113 char* hex(long i, int len /* = 0 */) function
117 char* hex(int i, int len /* = 0 */) function
121 char* hex(unsigned long i, int len /* = 0 */) function
125 char* hex(unsigned int i, int len /* = 0 */) function
/haiku-buildtools/binutils/gas/testsuite/gas/mmix/
H A Dhex.l1 GAS for MMIX .*/hex\.s page 1
8 GAS for MMIX .*/hex\.s page 2
12 .*/hex\.s:1 \.text:0000000000000000 Main
H A Dhex-r.d3 # source: hex.s
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/mmix/
H A Dhex.l1 GAS for MMIX .*/hex\.s page 1
8 GAS for MMIX .*/hex\.s page 2
12 .*/hex\.s:1 \.text:0000000000000000 Main
H A Dhex-r.d3 # source: hex.s
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/cpp/
H A Descape.c13 #if '\x1a' != 26 /* { dg-warning "traditional" "traditional hex" } */
14 #error bad hex /* { dg-bogus "bad" "bad hexadecimal evaluation" } */
23 c = '\xa1'; /* { dg-warning "traditional" "traditional hex" } */
/haiku-buildtools/legacy/gcc/gcc/config/i386/
H A Dnext.h54 long hex[3]; \
55 REAL_VALUE_TO_TARGET_LONG_DOUBLE (VALUE, hex); \
58 hex[0], hex[1], hex[2]); \
61 hex[0], hex[1], hex[2]); \
69 long hex[2]; \
70 REAL_VALUE_TO_TARGET_DOUBLE (VALUE, hex); \
[all...]
/haiku-buildtools/legacy/gcc/gcc/config/m68k/
H A Dnext.h47 long hex[2]; \
48 REAL_VALUE_TO_TARGET_DOUBLE (VALUE, hex); \
49 fprintf (FILE, "\t.long 0x%x\n\t.long 0x%x\n", hex[0], hex[1]); \
74 long hex; \
75 REAL_VALUE_TO_TARGET_SINGLE (VALUE, hex); \
76 fprintf (FILE, "\t.long 0x%x\n", hex); \
99 long hex; \
100 REAL_VALUE_TO_TARGET_SINGLE (VALUE, hex); \
101 fprintf (FILE, "#0%c%x", (CODE) == 'f' ? 'b' : 'x', hex); \
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_arithmetic/char/
H A D7.cc33 ostr1.setf(ios_base::hex);
40 ostr2.setf(ios_base::hex);
47 ostr3.setf(ios_base::hex);
55 ostr4.setf(ios_base::hex);
H A D4.cc35 o1 << hex << showbase << setw(6) << internal << 0xff;
39 o2 << hex << showbase << setw(6) << internal << "0xff";
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/
H A D7.cc33 ostr1.setf(ios_base::hex);
40 ostr2.setf(ios_base::hex);
47 ostr3.setf(ios_base::hex);
55 ostr4.setf(ios_base::hex);
H A D4.cc32 o1 << hex << showbase << setw(6) << internal << 0xff;
36 o2 << hex << showbase << setw(6) << internal << L"0xff";
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.benjamin/
H A Dtypedef03.C20 hex = 0x0080, enumerator in enum:QTextStream::__anon1193
34 const int QTS::basefield = (QTS::bin | QTS::dec | QTS::hex) ;
38 const int QTS::basefield = (QTS::bin | QTS::dec | QTS::hex) ;
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Denum2.C15 dec=020, oct=040, hex=0100, enumerator in enum:ios::__anon1232
26 { i.setf(ios::dec, ios::dec|ios::hex|ios::oct); return i; }
/haiku-buildtools/gcc/gmp/tests/cxx/
H A Dt-ostream.cc63 cout << " flags: " << hex << (unsigned long) got.flags() << "\n"; \
90 { "0", "0", ios::hex },
91 { "0", "0x0", ios::hex | ios::showbase },
92 { "0", "0X0", ios::hex | ios::showbase | ios::uppercase },
100 { "1", " 0x1", ios::hex | ios::showbase | ios::right, 6 },
101 { "1", "0x 1", ios::hex | ios::showbase | ios::internal, 6 },
102 { "1", "0x1 ", ios::hex | ios::showbase | ios::left, 6 },
104 { "1", " +0x1", ios::hex | ios::showbase | ios::showpos | ios::right,
106 { "1", "+0x 1", ios::hex | ios::showbase | ios::showpos | ios::internal,
108 { "1", "+0x1 ", ios::hex | io
[all...]
H A Dt-istream.cc75 cout << " flags: " << hex << input.flags() << dec << "\n"; \
116 { "0", -1, "0", ios::hex },
117 { "123", -1, "291", ios::hex },
118 { "ff", -1, "255", ios::hex },
119 { "FF", -1, "255", ios::hex },
120 { "-123", -1, "-291", ios::hex },
121 { "-ff", -1, "-255", ios::hex },
122 { "-FF", -1, "-255", ios::hex },
123 { "+123", -1, "291", ios::hex },
124 { "+ff", -1, "255", ios::hex },
[all...]
/haiku-buildtools/legacy/gcc/libio/tests/
H A Dtiomanip.cc14 << hex << 1234 << ' '
H A DtFile.exp6 third = 89012 via hex = 15bb4
58 +__34567(dec) = 0x__8707(hex) = _0103407(oct) [showbase on]
59 +__34567(dec) = ____8707(hex) = __103407(oct) [showbase off]
60 -__34567(dec) = 0x__78f9(hex) = __074371(oct) [showbase on]
61 -__34567(dec) = ____78f9(hex) = ___74371(oct) [showbase off]
62 ______+0(dec) = _____0x0(hex) = _______0(oct) [showbase on]
63 ______+0(dec) = _______0(hex) = _______0(oct) [showbase off]
64 ___34567(dec) = __0X8707(hex) = _0103407(oct) [showbase on]
65 ___34567(dec) = ____8707(hex) = __103407(oct) [showbase off]
66 -34567__(dec) = 0X78F9__(hex)
[all...]
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/
H A Dbug014.go12 var cx0 uint8 = '\x0'; // ERROR "hex|char"
13 var cx1 uint8 = '\x'; // ERROR "hex|char"
/haiku-buildtools/binutils/gas/testsuite/gas/m68hc11/
H A Dhexprefix.s1 # Test for correct generation of hex prefixes.

Completed in 212 milliseconds

1234