STM MATLAB Simulator
Loading...
Searching...
No Matches
Macros | Typedefs
stdint.h File Reference
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define __ARMCLIB_VERSION   6190004
 
#define __INT64   __int64
 
#define __INT64_C_SUFFIX__   ll
 
#define __PASTE2(x, y)   x ## y
 
#define __PASTE(x, y)   __PASTE2(x, y)
 
#define __INT64_C(x)   __ESCAPE__(__PASTE(x, __INT64_C_SUFFIX__))
 
#define __UINT64_C(x)   __ESCAPE__(__PASTE(x ## u, __INT64_C_SUFFIX__))
 
#define __LONGLONG   __int64
 
#define __STDINT_DECLS
 
#define __CLIBNS
 
#define INT8_MIN   -128
 
#define INT16_MIN   -32768
 
#define INT32_MIN   (~0x7fffffff) /* -2147483648 is unsigned */
 
#define INT64_MIN   __INT64_C(~0x7fffffffffffffff) /* -9223372036854775808 is unsigned */
 
#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   -32768
 
#define INT_LEAST32_MIN   (~0x7fffffff)
 
#define INT_LEAST64_MIN   __INT64_C(~0x7fffffffffffffff)
 
#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   (~0x7fffffff)
 
#define INT_FAST16_MIN   (~0x7fffffff)
 
#define INT_FAST32_MIN   (~0x7fffffff)
 
#define INT_FAST64_MIN   __INT64_C(~0x7fffffffffffffff)
 
#define INT_FAST8_MAX   2147483647
 
#define INT_FAST16_MAX   2147483647
 
#define INT_FAST32_MAX   2147483647
 
#define INT_FAST64_MAX   __INT64_C(9223372036854775807)
 
#define UINT_FAST8_MAX   4294967295u
 
#define UINT_FAST16_MAX   4294967295u
 
#define UINT_FAST32_MAX   4294967295u
 
#define UINT_FAST64_MAX   __UINT64_C(18446744073709551615)
 
#define INTPTR_MIN   INT32_MIN
 
#define INTPTR_MAX   INT32_MAX
 
#define UINTPTR_MAX   UINT32_MAX
 
#define INTMAX_MIN   __ESCAPE__(~0x7fffffffffffffffll)
 
#define INTMAX_MAX   __ESCAPE__(9223372036854775807ll)
 
#define UINTMAX_MAX   __ESCAPE__(18446744073709551615ull)
 
#define PTRDIFF_MIN   INT32_MIN
 
#define PTRDIFF_MAX   INT32_MAX
 
#define SIG_ATOMIC_MIN   (~0x7fffffff)
 
#define SIG_ATOMIC_MAX   2147483647
 
#define SIZE_MAX   UINT32_MAX
 
#define WCHAR_MIN   0
 
#define WCHAR_MAX   65535
 
#define WINT_MIN   (~0x7fffffff)
 
#define WINT_MAX   2147483647
 
#define INT8_C(x)   (x)
 
#define INT16_C(x)   (x)
 
#define INT32_C(x)   (x)
 
#define INT64_C(x)   __INT64_C(x)
 
#define UINT8_C(x)   (x ## u)
 
#define UINT16_C(x)   (x ## u)
 
#define UINT32_C(x)   (x ## u)
 
#define UINT64_C(x)   __UINT64_C(x)
 
#define INTMAX_C(x)   __ESCAPE__(x ## ll)
 
#define UINTMAX_C(x)   __ESCAPE__(x ## ull)
 

Typedefs

typedef signed char int8_t
 
typedef signed short int int16_t
 
typedef signed int int32_t
 
typedef signed __INT64 int64_t
 
typedef unsigned char uint8_t
 
typedef unsigned short int uint16_t
 
typedef unsigned int uint32_t
 
typedef unsigned __INT64 uint64_t
 
typedef signed char int_least8_t
 
typedef signed short int int_least16_t
 
typedef signed int int_least32_t
 
typedef signed __INT64 int_least64_t
 
typedef unsigned char uint_least8_t
 
typedef unsigned short int uint_least16_t
 
typedef unsigned int uint_least32_t
 
typedef unsigned __INT64 uint_least64_t
 
typedef signed int int_fast8_t
 
typedef signed int int_fast16_t
 
typedef signed int int_fast32_t
 
typedef signed __INT64 int_fast64_t
 
typedef unsigned int uint_fast8_t
 
typedef unsigned int uint_fast16_t
 
typedef unsigned int uint_fast32_t
 
typedef unsigned __INT64 uint_fast64_t
 
typedef signed int intptr_t
 
typedef unsigned int uintptr_t
 
typedef signed __LONGLONG intmax_t
 
typedef unsigned __LONGLONG uintmax_t
 

Macro Definition Documentation

◆ __ARMCLIB_VERSION

#define __ARMCLIB_VERSION   6190004

◆ __INT64

#define __INT64   __int64

◆ __INT64_C_SUFFIX__

#define __INT64_C_SUFFIX__   ll

◆ __PASTE2

#define __PASTE2 ( x,
y )   x ## y

◆ __PASTE

#define __PASTE ( x,
y )   __PASTE2(x, y)

◆ __INT64_C

#define __INT64_C ( x)    __ESCAPE__(__PASTE(x, __INT64_C_SUFFIX__))

◆ __UINT64_C

#define __UINT64_C ( x)    __ESCAPE__(__PASTE(x ## u, __INT64_C_SUFFIX__))

◆ __LONGLONG

#define __LONGLONG   __int64

◆ __STDINT_DECLS

#define __STDINT_DECLS

◆ __CLIBNS

#define __CLIBNS

◆ INT8_MIN

#define INT8_MIN   -128

◆ INT16_MIN

#define INT16_MIN   -32768

◆ INT32_MIN

#define INT32_MIN   (~0x7fffffff) /* -2147483648 is unsigned */

◆ INT64_MIN

#define INT64_MIN   __INT64_C(~0x7fffffffffffffff) /* -9223372036854775808 is unsigned */

◆ INT8_MAX

#define INT8_MAX   127

◆ INT16_MAX

#define INT16_MAX   32767

◆ INT32_MAX

#define INT32_MAX   2147483647

◆ INT64_MAX

#define INT64_MAX   __INT64_C(9223372036854775807)

◆ UINT8_MAX

#define UINT8_MAX   255

◆ UINT16_MAX

#define UINT16_MAX   65535

◆ UINT32_MAX

#define UINT32_MAX   4294967295u

◆ UINT64_MAX

#define UINT64_MAX   __UINT64_C(18446744073709551615)

◆ INT_LEAST8_MIN

#define INT_LEAST8_MIN   -128

◆ INT_LEAST16_MIN

#define INT_LEAST16_MIN   -32768

◆ INT_LEAST32_MIN

#define INT_LEAST32_MIN   (~0x7fffffff)

◆ INT_LEAST64_MIN

#define INT_LEAST64_MIN   __INT64_C(~0x7fffffffffffffff)

◆ INT_LEAST8_MAX

#define INT_LEAST8_MAX   127

◆ INT_LEAST16_MAX

#define INT_LEAST16_MAX   32767

◆ INT_LEAST32_MAX

#define INT_LEAST32_MAX   2147483647

◆ INT_LEAST64_MAX

#define INT_LEAST64_MAX   __INT64_C(9223372036854775807)

◆ UINT_LEAST8_MAX

#define UINT_LEAST8_MAX   255

◆ UINT_LEAST16_MAX

#define UINT_LEAST16_MAX   65535

◆ UINT_LEAST32_MAX

#define UINT_LEAST32_MAX   4294967295u

◆ UINT_LEAST64_MAX

#define UINT_LEAST64_MAX   __UINT64_C(18446744073709551615)

◆ INT_FAST8_MIN

#define INT_FAST8_MIN   (~0x7fffffff)

◆ INT_FAST16_MIN

#define INT_FAST16_MIN   (~0x7fffffff)

◆ INT_FAST32_MIN

#define INT_FAST32_MIN   (~0x7fffffff)

◆ INT_FAST64_MIN

#define INT_FAST64_MIN   __INT64_C(~0x7fffffffffffffff)

◆ INT_FAST8_MAX

#define INT_FAST8_MAX   2147483647

◆ INT_FAST16_MAX

#define INT_FAST16_MAX   2147483647

◆ INT_FAST32_MAX

#define INT_FAST32_MAX   2147483647

◆ INT_FAST64_MAX

#define INT_FAST64_MAX   __INT64_C(9223372036854775807)

◆ UINT_FAST8_MAX

#define UINT_FAST8_MAX   4294967295u

◆ UINT_FAST16_MAX

#define UINT_FAST16_MAX   4294967295u

◆ UINT_FAST32_MAX

#define UINT_FAST32_MAX   4294967295u

◆ UINT_FAST64_MAX

#define UINT_FAST64_MAX   __UINT64_C(18446744073709551615)

◆ INTPTR_MIN

#define INTPTR_MIN   INT32_MIN

◆ INTPTR_MAX

#define INTPTR_MAX   INT32_MAX

◆ UINTPTR_MAX

#define UINTPTR_MAX   UINT32_MAX

◆ INTMAX_MIN

#define INTMAX_MIN   __ESCAPE__(~0x7fffffffffffffffll)

◆ INTMAX_MAX

#define INTMAX_MAX   __ESCAPE__(9223372036854775807ll)

◆ UINTMAX_MAX

#define UINTMAX_MAX   __ESCAPE__(18446744073709551615ull)

◆ PTRDIFF_MIN

#define PTRDIFF_MIN   INT32_MIN

◆ PTRDIFF_MAX

#define PTRDIFF_MAX   INT32_MAX

◆ SIG_ATOMIC_MIN

#define SIG_ATOMIC_MIN   (~0x7fffffff)

◆ SIG_ATOMIC_MAX

#define SIG_ATOMIC_MAX   2147483647

◆ SIZE_MAX

#define SIZE_MAX   UINT32_MAX

◆ WCHAR_MIN

#define WCHAR_MIN   0

◆ WCHAR_MAX

#define WCHAR_MAX   65535

◆ WINT_MIN

#define WINT_MIN   (~0x7fffffff)

◆ WINT_MAX

#define WINT_MAX   2147483647

◆ INT8_C

#define INT8_C ( x)    (x)

◆ INT16_C

#define INT16_C ( x)    (x)

◆ INT32_C

#define INT32_C ( x)    (x)

◆ INT64_C

#define INT64_C ( x)    __INT64_C(x)

◆ UINT8_C

#define UINT8_C ( x)    (x ## u)

◆ UINT16_C

#define UINT16_C ( x)    (x ## u)

◆ UINT32_C

#define UINT32_C ( x)    (x ## u)

◆ UINT64_C

#define UINT64_C ( x)    __UINT64_C(x)

◆ INTMAX_C

#define INTMAX_C ( x)    __ESCAPE__(x ## ll)

◆ UINTMAX_C

#define UINTMAX_C ( x)    __ESCAPE__(x ## ull)

Typedef Documentation

◆ int8_t

typedef signed char int8_t

◆ int16_t

typedef signed short int int16_t

◆ int32_t

typedef signed int int32_t

◆ int64_t

typedef signed __INT64 int64_t

◆ uint8_t

typedef unsigned char uint8_t

◆ uint16_t

typedef unsigned short int uint16_t

◆ uint32_t

typedef unsigned int uint32_t

◆ uint64_t

typedef unsigned __INT64 uint64_t

◆ int_least8_t

typedef signed char int_least8_t

◆ int_least16_t

typedef signed short int int_least16_t

◆ int_least32_t

typedef signed int int_least32_t

◆ int_least64_t

typedef signed __INT64 int_least64_t

◆ uint_least8_t

typedef unsigned char uint_least8_t

◆ uint_least16_t

typedef unsigned short int uint_least16_t

◆ uint_least32_t

typedef unsigned int uint_least32_t

◆ uint_least64_t

typedef unsigned __INT64 uint_least64_t

◆ int_fast8_t

typedef signed int int_fast8_t

◆ int_fast16_t

typedef signed int int_fast16_t

◆ int_fast32_t

typedef signed int int_fast32_t

◆ int_fast64_t

typedef signed __INT64 int_fast64_t

◆ uint_fast8_t

typedef unsigned int uint_fast8_t

◆ uint_fast16_t

typedef unsigned int uint_fast16_t

◆ uint_fast32_t

typedef unsigned int uint_fast32_t

◆ uint_fast64_t

typedef unsigned __INT64 uint_fast64_t

◆ intptr_t

typedef signed int intptr_t

◆ uintptr_t

typedef unsigned int uintptr_t

◆ intmax_t

typedef signed __LONGLONG intmax_t

◆ uintmax_t

typedef unsigned __LONGLONG uintmax_t