webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
Source
ThirdParty
ANGLE
src
tests
third_party
rapidjson
include
rapidjson
msinttypes
stdint.h
Go to the documentation of this file.
1
// ISO C9x compliant stdint.h for Microsoft Visual Studio
2
// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124
3
//
4
// Copyright (c) 2006-2013 Alexander Chemeris
5
//
6
// Redistribution and use in source and binary forms, with or without
7
// modification, are permitted provided that the following conditions are met:
8
//
9
// 1. Redistributions of source code must retain the above copyright notice,
10
// this list of conditions and the following disclaimer.
11
//
12
// 2. Redistributions in binary form must reproduce the above copyright
13
// notice, this list of conditions and the following disclaimer in the
14
// documentation and/or other materials provided with the distribution.
15
//
16
// 3. Neither the name of the product nor the names of its contributors may
17
// be used to endorse or promote products derived from this software
18
// without specific prior written permission.
19
//
20
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
21
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
23
// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
//
32
33
#ifndef _MSC_VER // [
34
#error "Use this header only with Microsoft Visual C++ compilers!"
35
#endif // _MSC_VER ]
36
37
#ifndef _MSC_STDINT_H_ // [
38
#define _MSC_STDINT_H_
39
40
#if _MSC_VER > 1000
41
#pragma once
42
#endif
43
44
// miloyip: Originally Visual Studio 2010 uses its own stdint.h. However it generates warning with INT64_C(), so change to use this file for vs2010.
45
#if _MSC_VER >= 1600 // [
46
#include <
stdint.h
>
47
48
#if !defined(__cplusplus) || defined(__STDC_CONSTANT_MACROS) // [ See footnote 224 at page 260
49
50
#undef INT8_C
51
#undef INT16_C
52
#undef INT32_C
53
#undef INT64_C
54
#undef UINT8_C
55
#undef UINT16_C
56
#undef UINT32_C
57
#undef UINT64_C
58
59
// 7.18.4.1 Macros for minimum-width integer constants
60
61
#define INT8_C(val) val##i8
62
#define INT16_C(val) val##i16
63
#define INT32_C(val) val##i32
64
#define INT64_C(val) val##i64
65
66
#define UINT8_C(val) val##ui8
67
#define UINT16_C(val) val##ui16
68
#define UINT32_C(val) val##ui32
69
#define UINT64_C(val) val##ui64
70
71
// 7.18.4.2 Macros for greatest-width integer constants
72
// These #ifndef's are needed to prevent collisions with <boost/cstdint.hpp>.
73
// Check out Issue 9 for the details.
74
#ifndef INTMAX_C // [
75
# define INTMAX_C INT64_C
76
#endif // INTMAX_C ]
77
#ifndef UINTMAX_C // [
78
# define UINTMAX_C UINT64_C
79
#endif // UINTMAX_C ]
80
81
#endif // __STDC_CONSTANT_MACROS ]
82
83
#else // ] _MSC_VER >= 1700 [
84
85
#include <limits.h>
86
87
// For Visual Studio 6 in C++ mode and for many Visual Studio versions when
88
// compiling for ARM we should wrap <wchar.h> include with 'extern "C++" {}'
89
// or compiler give many errors like this:
90
// error C2733: second C linkage of overloaded function 'wmemchr' not allowed
91
#ifdef __cplusplus
92
extern
"C"
{
93
#endif
94
# include <wchar.h>
95
#ifdef __cplusplus
96
}
97
#endif
98
99
// Define _W64 macros to mark types changing their size, like intptr_t.
100
#ifndef _W64
101
# if !defined(__midl) && (defined(_X86_) || defined(_M_IX86)) && _MSC_VER >= 1300
102
# define _W64 __w64
103
# else
104
# define _W64
105
# endif
106
#endif
107
108
109
// 7.18.1 Integer types
110
111
// 7.18.1.1 Exact-width integer types
112
113
// Visual Studio 6 and Embedded Visual C++ 4 doesn't
114
// realize that, e.g. char has the same size as __int8
115
// so we give up on __intX for them.
116
#if (_MSC_VER < 1300)
117
typedef
signed
char
int8_t
;
118
typedef
signed
short
int16_t
;
119
typedef
signed
int
int32_t
;
120
typedef
unsigned
char
uint8_t
;
121
typedef
unsigned
short
uint16_t
;
122
typedef
unsigned
int
uint32_t
;
123
#else
124
typedef
signed
__int8
int8_t
;
125
typedef
signed
__int16
int16_t
;
126
typedef
signed
__int32
int32_t
;
127
typedef
unsigned
__int8
uint8_t
;
128
typedef
unsigned
__int16
uint16_t
;
129
typedef
unsigned
__int32
uint32_t
;
130
#endif
131
typedef
signed
__int64
int64_t
;
132
typedef
unsigned
__int64
uint64_t
;
133
134
135
// 7.18.1.2 Minimum-width integer types
136
typedef
int8_t
int_least8_t
;
137
typedef
int16_t
int_least16_t
;
138
typedef
int32_t
int_least32_t
;
139
typedef
int64_t
int_least64_t
;
140
typedef
uint8_t
uint_least8_t
;
141
typedef
uint16_t
uint_least16_t
;
142
typedef
uint32_t
uint_least32_t
;
143
typedef
uint64_t
uint_least64_t
;
144
145
// 7.18.1.3 Fastest minimum-width integer types
146
typedef
int8_t
int_fast8_t
;
147
typedef
int16_t
int_fast16_t
;
148
typedef
int32_t
int_fast32_t
;
149
typedef
int64_t
int_fast64_t
;
150
typedef
uint8_t
uint_fast8_t
;
151
typedef
uint16_t
uint_fast16_t
;
152
typedef
uint32_t
uint_fast32_t
;
153
typedef
uint64_t
uint_fast64_t
;
154
155
// 7.18.1.4 Integer types capable of holding object pointers
156
#ifdef _WIN64 // [
157
typedef
signed
__int64
intptr_t
;
158
typedef
unsigned
__int64
uintptr_t
;
159
#else // _WIN64 ][
160
typedef
_W64
signed
int
intptr_t
;
161
typedef
_W64
unsigned
int
uintptr_t
;
162
#endif // _WIN64 ]
163
164
// 7.18.1.5 Greatest-width integer types
165
typedef
int64_t
intmax_t
;
166
typedef
uint64_t
uintmax_t
;
167
168
169
// 7.18.2 Limits of specified-width integer types
170
171
#if !defined(__cplusplus) || defined(__STDC_LIMIT_MACROS) // [ See footnote 220 at page 257 and footnote 221 at page 259
172
173
// 7.18.2.1 Limits of exact-width integer types
174
#define INT8_MIN ((int8_t)_I8_MIN)
175
#define INT8_MAX _I8_MAX
176
#define INT16_MIN ((int16_t)_I16_MIN)
177
#define INT16_MAX _I16_MAX
178
#define INT32_MIN ((int32_t)_I32_MIN)
179
#define INT32_MAX _I32_MAX
180
#define INT64_MIN ((int64_t)_I64_MIN)
181
#define INT64_MAX _I64_MAX
182
#define UINT8_MAX _UI8_MAX
183
#define UINT16_MAX _UI16_MAX
184
#define UINT32_MAX _UI32_MAX
185
#define UINT64_MAX _UI64_MAX
186
187
// 7.18.2.2 Limits of minimum-width integer types
188
#define INT_LEAST8_MIN INT8_MIN
189
#define INT_LEAST8_MAX INT8_MAX
190
#define INT_LEAST16_MIN INT16_MIN
191
#define INT_LEAST16_MAX INT16_MAX
192
#define INT_LEAST32_MIN INT32_MIN
193
#define INT_LEAST32_MAX INT32_MAX
194
#define INT_LEAST64_MIN INT64_MIN
195
#define INT_LEAST64_MAX INT64_MAX
196
#define UINT_LEAST8_MAX UINT8_MAX
197
#define UINT_LEAST16_MAX UINT16_MAX
198
#define UINT_LEAST32_MAX UINT32_MAX
199
#define UINT_LEAST64_MAX UINT64_MAX
200
201
// 7.18.2.3 Limits of fastest minimum-width integer types
202
#define INT_FAST8_MIN INT8_MIN
203
#define INT_FAST8_MAX INT8_MAX
204
#define INT_FAST16_MIN INT16_MIN
205
#define INT_FAST16_MAX INT16_MAX
206
#define INT_FAST32_MIN INT32_MIN
207
#define INT_FAST32_MAX INT32_MAX
208
#define INT_FAST64_MIN INT64_MIN
209
#define INT_FAST64_MAX INT64_MAX
210
#define UINT_FAST8_MAX UINT8_MAX
211
#define UINT_FAST16_MAX UINT16_MAX
212
#define UINT_FAST32_MAX UINT32_MAX
213
#define UINT_FAST64_MAX UINT64_MAX
214
215
// 7.18.2.4 Limits of integer types capable of holding object pointers
216
#ifdef _WIN64 // [
217
# define INTPTR_MIN INT64_MIN
218
# define INTPTR_MAX INT64_MAX
219
# define UINTPTR_MAX UINT64_MAX
220
#else // _WIN64 ][
221
# define INTPTR_MIN INT32_MIN
222
# define INTPTR_MAX INT32_MAX
223
# define UINTPTR_MAX UINT32_MAX
224
#endif // _WIN64 ]
225
226
// 7.18.2.5 Limits of greatest-width integer types
227
#define INTMAX_MIN INT64_MIN
228
#define INTMAX_MAX INT64_MAX
229
#define UINTMAX_MAX UINT64_MAX
230
231
// 7.18.3 Limits of other integer types
232
233
#ifdef _WIN64 // [
234
# define PTRDIFF_MIN _I64_MIN
235
# define PTRDIFF_MAX _I64_MAX
236
#else // _WIN64 ][
237
# define PTRDIFF_MIN _I32_MIN
238
# define PTRDIFF_MAX _I32_MAX
239
#endif // _WIN64 ]
240
241
#define SIG_ATOMIC_MIN INT_MIN
242
#define SIG_ATOMIC_MAX INT_MAX
243
244
#ifndef SIZE_MAX // [
245
# ifdef _WIN64 // [
246
# define SIZE_MAX _UI64_MAX
247
# else // _WIN64 ][
248
# define SIZE_MAX _UI32_MAX
249
# endif // _WIN64 ]
250
#endif // SIZE_MAX ]
251
252
// WCHAR_MIN and WCHAR_MAX are also defined in <wchar.h>
253
#ifndef WCHAR_MIN // [
254
# define WCHAR_MIN 0
255
#endif // WCHAR_MIN ]
256
#ifndef WCHAR_MAX // [
257
# define WCHAR_MAX _UI16_MAX
258
#endif // WCHAR_MAX ]
259
260
#define WINT_MIN 0
261
#define WINT_MAX _UI16_MAX
262
263
#endif // __STDC_LIMIT_MACROS ]
264
265
266
// 7.18.4 Limits of other integer types
267
268
#if !defined(__cplusplus) || defined(__STDC_CONSTANT_MACROS) // [ See footnote 224 at page 260
269
270
// 7.18.4.1 Macros for minimum-width integer constants
271
272
#define INT8_C(val) val##i8
273
#define INT16_C(val) val##i16
274
#define INT32_C(val) val##i32
275
#define INT64_C(val) val##i64
276
277
#define UINT8_C(val) val##ui8
278
#define UINT16_C(val) val##ui16
279
#define UINT32_C(val) val##ui32
280
#define UINT64_C(val) val##ui64
281
282
// 7.18.4.2 Macros for greatest-width integer constants
283
// These #ifndef's are needed to prevent collisions with <boost/cstdint.hpp>.
284
// Check out Issue 9 for the details.
285
#ifndef INTMAX_C // [
286
# define INTMAX_C INT64_C
287
#endif // INTMAX_C ]
288
#ifndef UINTMAX_C // [
289
# define UINTMAX_C UINT64_C
290
#endif // UINTMAX_C ]
291
292
#endif // __STDC_CONSTANT_MACROS ]
293
294
#endif // _MSC_VER >= 1600 ]
295
296
#endif // _MSC_STDINT_H_ ]
int_fast32_t
int32_t int_fast32_t
Definition:
stdint.h:148
int_fast64_t
int64_t int_fast64_t
Definition:
stdint.h:149
int_fast8_t
int8_t int_fast8_t
Definition:
stdint.h:146
uint64_t
unsigned long long uint64_t
Definition:
ptypes.h:120
_W64
#define _W64
Definition:
stdint.h:104
intmax_t
int64_t intmax_t
Definition:
stdint.h:165
uint_least16_t
uint16_t uint_least16_t
Definition:
stdint.h:141
int_least64_t
int64_t int_least64_t
Definition:
stdint.h:139
int32_t
signed int int32_t
Definition:
ptypes.h:101
uint_least64_t
uint64_t uint_least64_t
Definition:
stdint.h:143
uint32_t
unsigned int uint32_t
Definition:
ptypes.h:105
int_least32_t
int32_t int_least32_t
Definition:
stdint.h:138
uint16_t
unsigned short uint16_t
Definition:
stdint.h:121
uint_least8_t
uint8_t uint_least8_t
Definition:
stdint.h:140
int64_t
signed long long int64_t
Definition:
ptypes.h:112
uint8_t
unsigned char uint8_t
Definition:
stdint.h:120
int16_t
signed short int16_t
Definition:
ptypes.h:93
int_fast16_t
int16_t int_fast16_t
Definition:
stdint.h:147
uint_fast16_t
uint16_t uint_fast16_t
Definition:
stdint.h:151
uint32_t
unsigned int uint32_t
Definition:
stdint.h:122
uintptr_t
_W64 unsigned int uintptr_t
Definition:
stdint.h:161
int16_t
signed short int16_t
Definition:
stdint.h:118
uint8_t
unsigned char uint8_t
Definition:
ptypes.h:89
uint16_t
unsigned short uint16_t
Definition:
ptypes.h:97
uint64_t
unsigned __int64 uint64_t
Definition:
stdint.h:132
int_least8_t
int8_t int_least8_t
Definition:
stdint.h:136
int8_t
signed char int8_t
Definition:
stdint.h:117
uint_fast8_t
uint8_t uint_fast8_t
Definition:
stdint.h:150
stdint.h
uintmax_t
uint64_t uintmax_t
Definition:
stdint.h:166
int64_t
signed __int64 int64_t
Definition:
stdint.h:131
uint_least32_t
uint32_t uint_least32_t
Definition:
stdint.h:142
int8_t
signed char int8_t
Definition:
ptypes.h:85
uint_fast64_t
uint64_t uint_fast64_t
Definition:
stdint.h:153
int32_t
signed int int32_t
Definition:
stdint.h:119
int_least16_t
int16_t int_least16_t
Definition:
stdint.h:137
intptr_t
_W64 signed int intptr_t
Definition:
stdint.h:160
uint_fast32_t
uint32_t uint_fast32_t
Definition:
stdint.h:152
Generated by
1.8.13