nckernel  0.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
stdint.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

#define __uint32_t_defined
 
#define __intptr_t_defined
 
#define __INT64_C(c)   c ## LL
 
#define __UINT64_C(c)   c ## ULL
 
#define INT8_MIN   (-128)
 
#define INT16_MIN   (-32767-1)
 
#define INT32_MIN   (-2147483647-1)
 
#define INT64_MIN   (-__INT64_C(9223372036854775807)-1)
 
#define INT8_MAX   (127)
 
#define INT16_MAX   (32767)
 
#define INT32_MAX   (2147483647)
 
#define INT64_MAX   (__INT64_C(9223372036854775807))
 
#define UINT8_MAX   (255)
 
#define UINT16_MAX   (65535)
 
#define UINT32_MAX   (4294967295U)
 
#define UINT64_MAX   (__UINT64_C(18446744073709551615))
 
#define INT_LEAST8_MIN   (-128)
 
#define INT_LEAST16_MIN   (-32767-1)
 
#define INT_LEAST32_MIN   (-2147483647-1)
 
#define INT_LEAST64_MIN   (-__INT64_C(9223372036854775807)-1)
 
#define INT_LEAST8_MAX   (127)
 
#define INT_LEAST16_MAX   (32767)
 
#define INT_LEAST32_MAX   (2147483647)
 
#define INT_LEAST64_MAX   (__INT64_C(9223372036854775807))
 
#define UINT_LEAST8_MAX   (255)
 
#define UINT_LEAST16_MAX   (65535)
 
#define UINT_LEAST32_MAX   (4294967295U)
 
#define UINT_LEAST64_MAX   (__UINT64_C(18446744073709551615))
 
#define INT_FAST8_MIN   (-128)
 
#define INT_FAST16_MIN   (-2147483647-1)
 
#define INT_FAST32_MIN   (-2147483647-1)
 
#define INT_FAST64_MIN   (-__INT64_C(9223372036854775807)-1)
 
#define INT_FAST8_MAX   (127)
 
#define INT_FAST16_MAX   (2147483647)
 
#define INT_FAST32_MAX   (2147483647)
 
#define INT_FAST64_MAX   (__INT64_C(9223372036854775807))
 
#define UINT_FAST8_MAX   (255)
 
#define UINT_FAST16_MAX   (4294967295U)
 
#define UINT_FAST32_MAX   (4294967295U)
 
#define UINT_FAST64_MAX   (__UINT64_C(18446744073709551615))
 
#define INTPTR_MIN   (-2147483647-1)
 
#define INTPTR_MAX   (2147483647)
 
#define UINTPTR_MAX   (4294967295U)
 
#define INTMAX_MIN   (-__INT64_C(9223372036854775807)-1)
 
#define INTMAX_MAX   (__INT64_C(9223372036854775807))
 
#define UINTMAX_MAX   (__UINT64_C(18446744073709551615))
 
#define PTRDIFF_MIN   (-2147483647-1)
 
#define PTRDIFF_MAX   (2147483647)
 
#define SIG_ATOMIC_MIN   (-2147483647-1)
 
#define SIG_ATOMIC_MAX   (2147483647)
 
#define SIZE_MAX   (4294967295U)
 
#define WCHAR_MIN   __WCHAR_MIN
 
#define WCHAR_MAX   __WCHAR_MAX
 
#define WINT_MIN   (0u)
 
#define WINT_MAX   (4294967295u)
 
#define INT8_C(c)   c
 
#define INT16_C(c)   c
 
#define INT32_C(c)   c
 
#define INT64_C(c)   c ## LL
 
#define UINT8_C(c)   c
 
#define UINT16_C(c)   c
 
#define UINT32_C(c)   c ## U
 
#define UINT64_C(c)   c ## ULL
 
#define INTMAX_C(c)   c ## LL
 
#define UINTMAX_C(c)   c ## ULL
 
typedef signed char int8_t
 
typedef short int int16_t
 
typedef int int32_t
 
typedef unsigned char uint8_t
 
typedef unsigned short int uint16_t
 
typedef unsigned int uint32_t
 
typedef signed char int_least8_t
 
typedef short int int_least16_t
 
typedef int int_least32_t
 
typedef unsigned char uint_least8_t
 
typedef unsigned short int uint_least16_t
 
typedef unsigned int uint_least32_t
 
typedef signed char int_fast8_t
 
typedef int int_fast16_t
 
typedef int int_fast32_t
 
typedef unsigned char uint_fast8_t
 
typedef unsigned int uint_fast16_t
 
typedef unsigned int uint_fast32_t
 
typedef int intptr_t
 
typedef unsigned int uintptr_t
 
__extension__ typedef long long int int64_t
 
__extension__ typedef unsigned
long long int 
uint64_t
 
__extension__ typedef long long int int_least64_t
 
__extension__ typedef unsigned
long long int 
uint_least64_t
 
__extension__ typedef long long int int_fast64_t
 
__extension__ typedef unsigned
long long int 
uint_fast64_t
 
__extension__ typedef long long int intmax_t
 
__extension__ typedef unsigned
long long int 
uintmax_t
 

Macro Definition Documentation

#define __INT64_C (   c)    c ## LL

Definition at line 150 of file stdint.h.

#define __intptr_t_defined

Definition at line 124 of file stdint.h.

#define __uint32_t_defined

Definition at line 50 of file stdint.h.

#define __UINT64_C (   c)    c ## ULL

Definition at line 151 of file stdint.h.

#define INT16_C (   c)    c

Definition at line 288 of file stdint.h.

#define INT16_MAX   (32767)

Definition at line 163 of file stdint.h.

#define INT16_MIN   (-32767-1)

Definition at line 158 of file stdint.h.

#define INT32_C (   c)    c

Definition at line 289 of file stdint.h.

#define INT32_MAX   (2147483647)

Definition at line 164 of file stdint.h.

#define INT32_MIN   (-2147483647-1)

Definition at line 159 of file stdint.h.

#define INT64_C (   c)    c ## LL

Definition at line 293 of file stdint.h.

#define INT64_MAX   (__INT64_C(9223372036854775807))

Definition at line 165 of file stdint.h.

#define INT64_MIN   (-__INT64_C(9223372036854775807)-1)

Definition at line 160 of file stdint.h.

#define INT8_C (   c)    c

Definition at line 287 of file stdint.h.

#define INT8_MAX   (127)

Definition at line 162 of file stdint.h.

#define INT8_MIN   (-128)

Definition at line 157 of file stdint.h.

#define INT_FAST16_MAX   (2147483647)

Definition at line 208 of file stdint.h.

#define INT_FAST16_MIN   (-2147483647-1)

Definition at line 198 of file stdint.h.

#define INT_FAST32_MAX   (2147483647)

Definition at line 209 of file stdint.h.

#define INT_FAST32_MIN   (-2147483647-1)

Definition at line 199 of file stdint.h.

#define INT_FAST64_MAX   (__INT64_C(9223372036854775807))

Definition at line 211 of file stdint.h.

#define INT_FAST64_MIN   (-__INT64_C(9223372036854775807)-1)

Definition at line 201 of file stdint.h.

#define INT_FAST8_MAX   (127)

Definition at line 203 of file stdint.h.

#define INT_FAST8_MIN   (-128)

Definition at line 193 of file stdint.h.

#define INT_LEAST16_MAX   (32767)

Definition at line 181 of file stdint.h.

#define INT_LEAST16_MIN   (-32767-1)

Definition at line 176 of file stdint.h.

#define INT_LEAST32_MAX   (2147483647)

Definition at line 182 of file stdint.h.

#define INT_LEAST32_MIN   (-2147483647-1)

Definition at line 177 of file stdint.h.

#define INT_LEAST64_MAX   (__INT64_C(9223372036854775807))

Definition at line 183 of file stdint.h.

#define INT_LEAST64_MIN   (-__INT64_C(9223372036854775807)-1)

Definition at line 178 of file stdint.h.

#define INT_LEAST8_MAX   (127)

Definition at line 180 of file stdint.h.

#define INT_LEAST8_MIN   (-128)

Definition at line 175 of file stdint.h.

#define INTMAX_C (   c)    c ## LL

Definition at line 311 of file stdint.h.

#define INTMAX_MAX   (__INT64_C(9223372036854775807))

Definition at line 240 of file stdint.h.

#define INTMAX_MIN   (-__INT64_C(9223372036854775807)-1)

Definition at line 238 of file stdint.h.

#define INTPTR_MAX   (2147483647)

Definition at line 232 of file stdint.h.

#define INTPTR_MIN   (-2147483647-1)

Definition at line 231 of file stdint.h.

#define PTRDIFF_MAX   (2147483647)

Definition at line 254 of file stdint.h.

#define PTRDIFF_MIN   (-2147483647-1)

Definition at line 253 of file stdint.h.

#define SIG_ATOMIC_MAX   (2147483647)

Definition at line 259 of file stdint.h.

#define SIG_ATOMIC_MIN   (-2147483647-1)

Definition at line 258 of file stdint.h.

#define SIZE_MAX   (4294967295U)

Definition at line 265 of file stdint.h.

#define UINT16_C (   c)    c

Definition at line 298 of file stdint.h.

#define UINT16_MAX   (65535)

Definition at line 169 of file stdint.h.

#define UINT32_C (   c)    c ## U

Definition at line 299 of file stdint.h.

#define UINT32_MAX   (4294967295U)

Definition at line 170 of file stdint.h.

#define UINT64_C (   c)    c ## ULL

Definition at line 303 of file stdint.h.

#define UINT64_MAX   (__UINT64_C(18446744073709551615))

Definition at line 171 of file stdint.h.

#define UINT8_C (   c)    c

Definition at line 297 of file stdint.h.

#define UINT8_MAX   (255)

Definition at line 168 of file stdint.h.

#define UINT_FAST16_MAX   (4294967295U)

Definition at line 219 of file stdint.h.

#define UINT_FAST32_MAX   (4294967295U)

Definition at line 220 of file stdint.h.

#define UINT_FAST64_MAX   (__UINT64_C(18446744073709551615))

Definition at line 222 of file stdint.h.

#define UINT_FAST8_MAX   (255)

Definition at line 214 of file stdint.h.

#define UINT_LEAST16_MAX   (65535)

Definition at line 187 of file stdint.h.

#define UINT_LEAST32_MAX   (4294967295U)

Definition at line 188 of file stdint.h.

#define UINT_LEAST64_MAX   (__UINT64_C(18446744073709551615))

Definition at line 189 of file stdint.h.

#define UINT_LEAST8_MAX   (255)

Definition at line 186 of file stdint.h.

#define UINTMAX_C (   c)    c ## ULL

Definition at line 312 of file stdint.h.

#define UINTMAX_MAX   (__UINT64_C(18446744073709551615))

Definition at line 243 of file stdint.h.

#define UINTPTR_MAX   (4294967295U)

Definition at line 233 of file stdint.h.

#define WCHAR_MAX   __WCHAR_MAX

Definition at line 272 of file stdint.h.

#define WCHAR_MIN   __WCHAR_MIN

Definition at line 271 of file stdint.h.

#define WINT_MAX   (4294967295u)

Definition at line 277 of file stdint.h.

#define WINT_MIN   (0u)

Definition at line 276 of file stdint.h.

Typedef Documentation

typedef short int int16_t

Definition at line 35 of file stdint.h.

typedef int int32_t

Definition at line 36 of file stdint.h.

typedef signed char int8_t

Definition at line 34 of file stdint.h.

typedef int int_fast16_t

Definition at line 94 of file stdint.h.

typedef int int_fast32_t

Definition at line 95 of file stdint.h.

typedef signed char int_fast8_t

Definition at line 88 of file stdint.h.

typedef short int int_least16_t

Definition at line 64 of file stdint.h.

typedef int int_least32_t

Definition at line 65 of file stdint.h.

typedef signed char int_least8_t

Definition at line 63 of file stdint.h.

typedef int intptr_t

Definition at line 123 of file stdint.h.

typedef unsigned short int uint16_t

Definition at line 47 of file stdint.h.

typedef unsigned int uint32_t

Definition at line 49 of file stdint.h.

typedef unsigned char uint8_t

Definition at line 46 of file stdint.h.

typedef unsigned int uint_fast16_t

Definition at line 107 of file stdint.h.

typedef unsigned int uint_fast32_t

Definition at line 108 of file stdint.h.

typedef unsigned char uint_fast8_t

Definition at line 101 of file stdint.h.

typedef unsigned short int uint_least16_t

Definition at line 75 of file stdint.h.

typedef unsigned int uint_least32_t

Definition at line 76 of file stdint.h.

typedef unsigned char uint_least8_t

Definition at line 74 of file stdint.h.

typedef unsigned int uintptr_t

Definition at line 126 of file stdint.h.

Variable Documentation

__extension__ typedef long long int int64_t

Definition at line 41 of file stdint.h.

__extension__ typedef long long int int_fast64_t

Definition at line 97 of file stdint.h.

__extension__ typedef long long int int_least64_t

Definition at line 70 of file stdint.h.

__extension__ typedef long long int intmax_t

Definition at line 136 of file stdint.h.

__extension__ typedef unsigned long long int uint64_t

Definition at line 56 of file stdint.h.

__extension__ typedef unsigned long long int uint_fast64_t

Definition at line 110 of file stdint.h.

__extension__ typedef unsigned long long int uint_least64_t

Definition at line 81 of file stdint.h.

__extension__ typedef unsigned long long int uintmax_t

Definition at line 138 of file stdint.h.