* sysdeps/ieee754/k_standard.c (__kernel_standard): Pole errors
[glibc.git] / conform / data / stdint.h-data
blob5b3fb17f4ec5c9f086aa0fe35f5d0247bdfb17a2
1 type int8_t
2 type int16_t
3 type int32_t
4 type int64_t
5 type uint8_t
6 type uint16_t
7 type uint32_t
8 type uint64_t
10 type int_least8_t
11 type int_least16_t
12 type int_least32_t
13 type int_least64_t
14 type uint_least8_t
15 type uint_least16_t
16 type uint_least32_t
17 type uint_least64_t
19 type int_fast8_t
20 type int_fast16_t
21 type int_fast32_t
22 type int_fast64_t
23 type uint_fast8_t
24 type uint_fast16_t
25 type uint_fast32_t
26 type uint_fast64_t
28 type intptr_t
29 type uintptr_t
31 type intmax_t
32 type uintmax_t
34 constant INT8_MIN == -128
35 constant INT8_MAX == 127
36 constant INT16_MIN == -32768
37 constant INT16_MAX == 32767
38 constant INT32_MIN == -2147483647-1
39 constant INT32_MAX == 2147483647
40 constant INT64_MIN == -9223372036854775807LL-1
41 constant INT64_MAX == 9223372036854775807LL
43 constant UINT8_MAX == 255
44 constant UINT16_MAX == 65535
45 constant UINT32_MAX == 4294967295U
46 constant UINT64_MAX == 18446744073709551615ULL
48 constant INT_LEAST8_MIN <= -128
49 constant INT_LEAST8_MAX >= 127
50 constant INT_LEAST16_MIN <= -32768
51 constant INT_LEAST16_MAX >= 32767
52 constant INT_LEAST32_MIN <= -2147483647-1
53 constant INT_LEAST32_MAX >= 2147483647
54 constant INT_LEAST64_MIN <= -9223372036854775807LL-1
55 constant INT_LEAST64_MAX >= 9223372036854775807LL
57 constant UINT_LEAST8_MAX >= 255
58 constant UINT_LEAST16_MAX >= 65535
59 constant UINT_LEAST32_MAX >= 4294967295U
60 constant UINT_LEAST64_MAX >= 18446744073709551615ULL
62 constant INT_FAST8_MIN <= -128
63 constant INT_FAST8_MAX >= 127
64 constant INT_FAST16_MIN <= -32768
65 constant INT_FAST16_MAX >= 32767
66 constant INT_FAST32_MIN <= -2147483647-1
67 constant INT_FAST32_MAX >= 2147483647
68 constant INT_FAST64_MIN <= -9223372036854775807LL-1
69 constant INT_FAST64_MAX >= 9223372036854775807LL
71 constant UINT_FAST8_MAX >= 255
72 constant UINT_FAST16_MAX >= 65535
73 constant UINT_FAST32_MAX >= 4294967295U
74 constant UINT_FAST64_MAX >= 18446744073709551615ULL
76 constant INTPTR_MIN <= -32768
77 constant INTPTR_MAX >= 32767
79 constant UINTPTR_MAX >= 65535
81 constant INTMAX_MIN <= -9223372036854775807LL-1
82 constant INTMAX_MAX >= 9223372036854775807LL
84 constant UINTMAX_MAX >= 18446744073709551615ULL
86 constant PTRDIFF_MIN <= -65535
87 constant PTRDIFF_MAX >= 65535
89 constant SIG_ATOMIC_MIN <= -127
90 constant SIG_ATOMIC_MAX >= 127
92 constant SIZE_MAX >= 65535
94 constant WCHAR_MIN <= -127
95 constant WCHAR_MAX >= 127
97 constant WINT_MIN <= -127
98 constant WINT_MAX >= 127
100 macro INT8_C
101 macro INT16_C
102 macro INT32_C
103 macro INT64_C
104 macro UINT8_C
105 macro UINT16_C
106 macro UINT32_C
107 macro UINT64_C
108 macro INTMAX_C
109 macro UINTMAX_C
111 // The following expressions are not entirely correct but the current
112 // fnamtch implementation doesn't grok the right form.
113 allow INT*
114 allow UINT*