STM MATLAB Simulator
|
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 |
#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) |
typedef signed char int8_t |
typedef signed short int int16_t |
typedef signed 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 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 |