sl@0: /** @file ../include/sys/stdint.h sl@0: @internalComponent sl@0: */ sl@0: sl@0: /** @typedef typedef __int8_t int8_t sl@0: sl@0: denotes a signed integer type with a width of exactly 8 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __int16_t int16_t sl@0: sl@0: denotes a signed integer type with a width of exactly 16 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __int32_t int32_t sl@0: sl@0: denotes a signed integer type with a width of exactly 32 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __int64_t int64_t sl@0: sl@0: denotes a signed integer type with a width of exactly 64 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uint8_t uint8_t sl@0: sl@0: denotes a unsigned integer type with a width of exactly 8 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uint16_t uint16_t sl@0: sl@0: denotes a unsigned integer type with a width of exactly 16 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uint32_t uint32_t sl@0: sl@0: denotes a unsigned integer type with a width of exactly 32 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uint64_t uint64_t sl@0: sl@0: denotes a unsigned integer type with a width of exactly 64 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __int_least8_t int_least8_t sl@0: sl@0: denotes an signed integer type with a width of at least 8 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __int_least16_t int_least16_t sl@0: sl@0: denotes an signed integer type with a width of at least 16 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __int_least32_t int_least32_t sl@0: sl@0: denotes an signed integer type with a width of at least 32 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __int_least64_t int_least64_t sl@0: sl@0: denotes an signed integer type with a width of at least 64 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uint_least8_t uint_least8_t sl@0: sl@0: denotes an unsigned integer type with a width of at least 8 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uint_least16_t uint_least16_t sl@0: sl@0: denotes an unsigned integer type with a width of at least 16 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uint_least32_t uint_least32_t sl@0: sl@0: denotes an unsigned integer type with a width of at least 32 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uint_least64_t uint_least64_t sl@0: sl@0: denotes an unsigned integer type with a width of at least 64 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __int_fast8_t int_fast8_t sl@0: sl@0: designates the fastest signed integer type with a width of at least 8 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __int_fast16_t int_fast16_t sl@0: sl@0: designates the fastest signed integer type with a width of at least 16 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __int_fast32_t int_fast32_t sl@0: sl@0: designates the fastest signed integer type with a width of at least 32 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __int_fast64_t int_fast64_t sl@0: sl@0: designates the fastest signed integer type with a width of at least 64 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uint_fast8_t uint_fast8_t sl@0: sl@0: designates the fastest unsigned integer type with a width of at least 8 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uint_fast16_t uint_fast16_t sl@0: sl@0: designates the fastest unsigned integer type with a width of at least 16 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uint_fast32_t uint_fast32_t sl@0: sl@0: designates the fastest unsigned integer type with a width of at least 32 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uint_fast64_t uint_fast64_t sl@0: sl@0: designates the fastest unsigned integer type with a width of at least 64 bits. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __intmax_t intmax_t sl@0: sl@0: designates a signed integer type capable of representing any value of any signed integer type sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uintmax_t uintmax_t sl@0: sl@0: designates an unsigned integer type capable of representing any value of any unsigned integer type sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __intptr_t intptr_t sl@0: sl@0: designates a signed integer type with the property that any valid pointer to void can be converted to this type, then converted back to a pointer to void, and the result will compare equal to the original pointer. sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */ sl@0: sl@0: /** @typedef typedef __uintptr_t uintptr_t sl@0: sl@0: designates an unsigned integer type with the property that any valid pointer to void can be converted to this type, then converted back to a pointer to void, and the result will compare equal to the original pointer sl@0: sl@0: @publishedAll sl@0: @externallyDefinedApi sl@0: */