#include "///usr/include/stdint.h"#include <sys/types.h>#include <limits.h>#include <inttypes.h>#include <sys/bitypes.h>#include <stdio.h>#include <time.h>#include <wchar.h>Go to the source code of this file.
Defines | |
| #define | _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H |
| #define | _STDINT_MIN(signed, bits, zero) ((signed) ? (- ((zero) + 1) << ((bits) ? (bits) - 1 : 0)) : (zero)) |
| #define | _STDINT_MAX(signed, bits, zero) |
| #define | int8_t signed char |
| #define | uint8_t unsigned char |
| #define | int16_t short int |
| #define | uint16_t unsigned short int |
| #define | int32_t int |
| #define | uint32_t unsigned int |
| #define | int64_t long long int |
| #define | uint64_t unsigned long long int |
| #define | _UINT8_T |
| #define | _UINT32_T |
| #define | _UINT64_T |
| #define | int_least8_t int8_t |
| #define | uint_least8_t uint8_t |
| #define | int_least16_t int16_t |
| #define | uint_least16_t uint16_t |
| #define | int_least32_t int32_t |
| #define | uint_least32_t uint32_t |
| #define | int_least64_t int64_t |
| #define | uint_least64_t uint64_t |
| #define | int_fast8_t long int |
| #define | uint_fast8_t unsigned int_fast8_t |
| #define | int_fast16_t long int |
| #define | uint_fast16_t unsigned int_fast16_t |
| #define | int_fast32_t long int |
| #define | uint_fast32_t unsigned int_fast32_t |
| #define | int_fast64_t int64_t |
| #define | uint_fast64_t uint64_t |
| #define | intptr_t long int |
| #define | uintptr_t unsigned long int |
| #define | intmax_t int64_t |
| #define | uintmax_t uint64_t |
| #define | INT8_MIN (~ INT8_MAX) |
| #define | INT8_MAX 127 |
| #define | UINT8_MAX 255 |
| #define | INT16_MIN (~ INT16_MAX) |
| #define | INT16_MAX 32767 |
| #define | UINT16_MAX 65535 |
| #define | INT32_MIN (~ INT32_MAX) |
| #define | INT32_MAX 2147483647 |
| #define | UINT32_MAX 4294967295U |
| #define | INT64_MIN (~ INT64_MAX) |
| #define | INT64_MAX INTMAX_C (9223372036854775807) |
| #define | UINT64_MAX UINTMAX_C (18446744073709551615) |
| #define | INT_LEAST8_MIN INT8_MIN |
| #define | INT_LEAST8_MAX INT8_MAX |
| #define | UINT_LEAST8_MAX UINT8_MAX |
| #define | INT_LEAST16_MIN INT16_MIN |
| #define | INT_LEAST16_MAX INT16_MAX |
| #define | UINT_LEAST16_MAX UINT16_MAX |
| #define | INT_LEAST32_MIN INT32_MIN |
| #define | INT_LEAST32_MAX INT32_MAX |
| #define | UINT_LEAST32_MAX UINT32_MAX |
| #define | INT_LEAST64_MIN INT64_MIN |
| #define | INT_LEAST64_MAX INT64_MAX |
| #define | UINT_LEAST64_MAX UINT64_MAX |
| #define | INT_FAST8_MIN LONG_MIN |
| #define | INT_FAST8_MAX LONG_MAX |
| #define | UINT_FAST8_MAX ULONG_MAX |
| #define | INT_FAST16_MIN LONG_MIN |
| #define | INT_FAST16_MAX LONG_MAX |
| #define | UINT_FAST16_MAX ULONG_MAX |
| #define | INT_FAST32_MIN LONG_MIN |
| #define | INT_FAST32_MAX LONG_MAX |
| #define | UINT_FAST32_MAX ULONG_MAX |
| #define | INT_FAST64_MIN INT64_MIN |
| #define | INT_FAST64_MAX INT64_MAX |
| #define | UINT_FAST64_MAX UINT64_MAX |
| #define | INTPTR_MIN LONG_MIN |
| #define | INTPTR_MAX LONG_MAX |
| #define | UINTPTR_MAX ULONG_MAX |
| #define | INTMAX_MIN (~ INTMAX_MAX) |
| #define | INTMAX_MAX INT64_MAX |
| #define | UINTMAX_MAX UINT64_MAX |
| #define | PTRDIFF_MIN _STDINT_MIN (1, 32, 0) |
| #define | PTRDIFF_MAX _STDINT_MAX (1, 32, 0) |
| #define | SIG_ATOMIC_MIN |
| #define | SIG_ATOMIC_MAX |
| #define | SIZE_MAX _STDINT_MAX (0, 32, 0u) |
| #define | WCHAR_MIN _STDINT_MIN (1, 32, 0) |
| #define | WCHAR_MAX _STDINT_MAX (1, 32, 0) |
| #define | WINT_MIN _STDINT_MIN (0, 32, 0u) |
| #define | WINT_MAX _STDINT_MAX (0, 32, 0u) |
| #define | INT8_C(x) x |
| #define | UINT8_C(x) x |
| #define | INT16_C(x) x |
| #define | UINT16_C(x) x |
| #define | INT32_C(x) x |
| #define | UINT32_C(x) x ## U |
| #define | INT64_C(x) x##LL |
| #define | UINT64_C(x) x##ULL |
| #define | INTMAX_C(x) INT64_C(x) |
| #define | UINTMAX_C(x) UINT64_C(x) |
| #define _STDINT_MAX | ( | signed, | |||
| bits, | |||||
| zero | ) |
Value:
((signed) \ ? ~ _STDINT_MIN (signed, bits, zero) \ : ((((zero) + 1) << ((bits) ? (bits) - 1 : 0)) - 1) * 2 + 1)
| #define _STDINT_MIN | ( | signed, | |||
| bits, | |||||
| zero | ) | ((signed) ? (- ((zero) + 1) << ((bits) ? (bits) - 1 : 0)) : (zero)) |
| #define SIG_ATOMIC_MAX |
| #define SIG_ATOMIC_MIN |
| #define uint32_t unsigned int |
Definition at line 124 of file idn-int.h.
Referenced by idna_to_ascii_4i(), idna_to_ascii_4z(), idna_to_ascii_8z(), idna_to_unicode_4z4z(), idna_to_unicode_8z4z(), idna_to_unicode_8z8z(), pr29_8z(), stringprep(), stringprep_4i(), stringprep_ucs4_nfkc_normalize(), tld_check_4t(), tld_check_4tz(), tld_check_4z(), tld_check_8z(), tld_get_4(), tld_get_4z(), and tld_get_z().
1.4.7