dhcpd-pools  3.0
ISC dhcpd lease usage analyser
Macros | Typedefs
stdint.in.h File Reference
#include <limits.h>
Include dependency graph for stdint.in.h:

Go to the source code of this file.

Macros

#define _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H
 
#define _   @GUARD_PREFIX@_STDINT_H
 
#define _STDINT_UNSIGNED_MIN(bits, zero)   (zero)
 
#define _STDINT_SIGNED_MIN(bits, zero)   (~ _STDINT_MAX (1, bits, zero))
 
#define _STDINT_MAX(signed, bits, zero)   (((((zero) + 1) << ((bits) ? (bits) - 1 - (signed) : 0)) - 1) * 2 + 1)
 
#define int8_t   gl_int8_t
 
#define uint8_t   gl_uint8_t
 
#define int16_t   gl_int16_t
 
#define uint16_t   gl_uint16_t
 
#define int32_t   gl_int32_t
 
#define uint32_t   gl_uint32_t
 
#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_fast8_t   gl_int_fast8_t
 
#define uint_fast8_t   gl_uint_fast8_t
 
#define int_fast16_t   gl_int_fast16_t
 
#define uint_fast16_t   gl_uint_fast16_t
 
#define int_fast32_t   gl_int_fast32_t
 
#define uint_fast32_t   gl_uint_fast32_t
 
#define intptr_t   gl_intptr_t
 
#define uintptr_t   gl_uintptr_t
 
#define intmax_t   gl_intmax_t
 
#define uintmax_t   gl_uintmax_t
 
#define GNULIB_defined_stdint_types   1
 
#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 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_FAST8_MIN   SCHAR_MIN
 
#define INT_FAST8_MAX   SCHAR_MAX
 
#define UINT_FAST8_MAX   UCHAR_MAX
 
#define INT_FAST16_MIN   INT_FAST32_MIN
 
#define INT_FAST16_MAX   INT_FAST32_MAX
 
#define UINT_FAST16_MAX   UINT_FAST32_MAX
 
#define INT_FAST32_MIN   LONG_MIN
 
#define INT_FAST32_MAX   LONG_MAX
 
#define UINT_FAST32_MAX   ULONG_MAX
 
#define INTPTR_MIN   LONG_MIN
 
#define INTPTR_MAX   LONG_MAX
 
#define UINTPTR_MAX   ULONG_MAX
 
#define INTMAX_MIN   INT32_MIN
 
#define INTMAX_MAX   INT32_MAX
 
#define UINTMAX_MAX   UINT32_MAX
 
#define PTRDIFF_MIN   _STDINT_SIGNED_MIN (@BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@)
 
#define PTRDIFF_MAX   _STDINT_MAX (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@)
 
#define SIG_ATOMIC_MIN   _STDINT_UNSIGNED_MIN (@BITSIZEOF_SIG_ATOMIC_T@, 0@SIG_ATOMIC_T_SUFFIX@)
 
#define SIG_ATOMIC_MAX
 
#define SIZE_MAX   _STDINT_MAX (0, @BITSIZEOF_SIZE_T@, 0@SIZE_T_SUFFIX@)
 
#define WCHAR_MIN   _STDINT_UNSIGNED_MIN (@BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@)
 
#define WCHAR_MAX   _STDINT_MAX (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@)
 
#define WINT_MIN   _STDINT_UNSIGNED_MIN (@BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@)
 
#define WINT_MAX   _STDINT_MAX (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@)
 
#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 INTMAX_C(x)   x##L
 
#define UINTMAX_C(x)   x##UL
 

Typedefs

typedef signed char gl_int8_t
 
typedef unsigned char gl_uint8_t
 
typedef short int gl_int16_t
 
typedef unsigned short int gl_uint16_t
 
typedef int gl_int32_t
 
typedef unsigned int gl_uint32_t
 
typedef signed char gl_int_fast8_t
 
typedef unsigned char gl_uint_fast8_t
 
typedef long int gl_int_fast32_t
 
typedef unsigned long int gl_uint_fast32_t
 
typedef gl_int_fast32_t gl_int_fast16_t
 
typedef gl_uint_fast32_t gl_uint_fast16_t
 
typedef long int gl_intptr_t
 
typedef unsigned long int gl_uintptr_t
 
typedef long int gl_intmax_t
 
typedef unsigned long int gl_uintmax_t
 
typedef int _verify_intmax_size[sizeof(intmax_t)==sizeof(uintmax_t) ? 1 :-1]
 

Macro Definition Documentation

◆ _

#define _   @GUARD_PREFIX@_STDINT_H

◆ _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H

#define _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H

◆ _STDINT_MAX

#define _STDINT_MAX (   signed,
  bits,
  zero 
)    (((((zero) + 1) << ((bits) ? (bits) - 1 - (signed) : 0)) - 1) * 2 + 1)

◆ _STDINT_SIGNED_MIN

#define _STDINT_SIGNED_MIN (   bits,
  zero 
)    (~ _STDINT_MAX (1, bits, zero))

◆ _STDINT_UNSIGNED_MIN

#define _STDINT_UNSIGNED_MIN (   bits,
  zero 
)    (zero)

◆ _UINT32_T

#define _UINT32_T

◆ _UINT64_T

#define _UINT64_T

◆ _UINT8_T

#define _UINT8_T

◆ GNULIB_defined_stdint_types

#define GNULIB_defined_stdint_types   1

◆ INT16_C

#define INT16_C (   x)    x

◆ INT16_MAX

#define INT16_MAX   32767

◆ INT16_MIN

#define INT16_MIN   (~ INT16_MAX)

◆ int16_t

#define int16_t   gl_int16_t

◆ INT32_C

#define INT32_C (   x)    x

◆ INT32_MAX

#define INT32_MAX   2147483647

◆ INT32_MIN

#define INT32_MIN   (~ INT32_MAX)

◆ int32_t

#define int32_t   gl_int32_t

◆ INT8_C

#define INT8_C (   x)    x

◆ INT8_MAX

#define INT8_MAX   127

◆ INT8_MIN

#define INT8_MIN   (~ INT8_MAX)

◆ int8_t

#define int8_t   gl_int8_t

◆ INT_FAST16_MAX

#define INT_FAST16_MAX   INT_FAST32_MAX

◆ INT_FAST16_MIN

#define INT_FAST16_MIN   INT_FAST32_MIN

◆ int_fast16_t

#define int_fast16_t   gl_int_fast16_t

◆ INT_FAST32_MAX

#define INT_FAST32_MAX   LONG_MAX

◆ INT_FAST32_MIN

#define INT_FAST32_MIN   LONG_MIN

◆ int_fast32_t

#define int_fast32_t   gl_int_fast32_t

◆ INT_FAST8_MAX

#define INT_FAST8_MAX   SCHAR_MAX

◆ INT_FAST8_MIN

#define INT_FAST8_MIN   SCHAR_MIN

◆ int_fast8_t

#define int_fast8_t   gl_int_fast8_t

◆ INT_LEAST16_MAX

#define INT_LEAST16_MAX   INT16_MAX

◆ INT_LEAST16_MIN

#define INT_LEAST16_MIN   INT16_MIN

◆ int_least16_t

#define int_least16_t   int16_t

◆ INT_LEAST32_MAX

#define INT_LEAST32_MAX   INT32_MAX

◆ INT_LEAST32_MIN

#define INT_LEAST32_MIN   INT32_MIN

◆ int_least32_t

#define int_least32_t   int32_t

◆ INT_LEAST8_MAX

#define INT_LEAST8_MAX   INT8_MAX

◆ INT_LEAST8_MIN

#define INT_LEAST8_MIN   INT8_MIN

◆ int_least8_t

#define int_least8_t   int8_t

◆ INTMAX_C

#define INTMAX_C (   x)    x##L

◆ INTMAX_MAX

#define INTMAX_MAX   INT32_MAX

◆ INTMAX_MIN

#define INTMAX_MIN   INT32_MIN

◆ intmax_t

#define intmax_t   gl_intmax_t

◆ INTPTR_MAX

#define INTPTR_MAX   LONG_MAX

◆ INTPTR_MIN

#define INTPTR_MIN   LONG_MIN

◆ intptr_t

#define intptr_t   gl_intptr_t

◆ PTRDIFF_MAX

#define PTRDIFF_MAX   _STDINT_MAX (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@)

Referenced by quotearg_n_options(), and x2nrealloc().

◆ PTRDIFF_MIN

#define PTRDIFF_MIN   _STDINT_SIGNED_MIN (@BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@)

◆ SIG_ATOMIC_MAX

#define SIG_ATOMIC_MAX
Value:
_STDINT_MAX (@HAVE_SIGNED_SIG_ATOMIC_T@, @BITSIZEOF_SIG_ATOMIC_T@, \
0@SIG_ATOMIC_T_SUFFIX@)
#define _STDINT_MAX(signed, bits, zero)
Definition: stdint.in.h:139

◆ SIG_ATOMIC_MIN

#define SIG_ATOMIC_MIN   _STDINT_UNSIGNED_MIN (@BITSIZEOF_SIG_ATOMIC_T@, 0@SIG_ATOMIC_T_SUFFIX@)

◆ SIZE_MAX

#define SIZE_MAX   _STDINT_MAX (0, @BITSIZEOF_SIZE_T@, 0@SIZE_T_SUFFIX@)

◆ UINT16_C

#define UINT16_C (   x)    x

◆ UINT16_MAX

#define UINT16_MAX   65535

◆ uint16_t

#define uint16_t   gl_uint16_t

◆ UINT32_C

#define UINT32_C (   x)    x ## U

◆ UINT32_MAX

#define UINT32_MAX   4294967295U

◆ uint32_t

#define uint32_t   gl_uint32_t

Referenced by cidr_last_v4(), and must_put_base().

◆ UINT8_C

#define UINT8_C (   x)    x

◆ UINT8_MAX

#define UINT8_MAX   255

◆ uint8_t

#define uint8_t   gl_uint8_t

◆ UINT_FAST16_MAX

#define UINT_FAST16_MAX   UINT_FAST32_MAX

◆ uint_fast16_t

#define uint_fast16_t   gl_uint_fast16_t

◆ UINT_FAST32_MAX

#define UINT_FAST32_MAX   ULONG_MAX

◆ uint_fast32_t

#define uint_fast32_t   gl_uint_fast32_t

◆ UINT_FAST8_MAX

#define UINT_FAST8_MAX   UCHAR_MAX

◆ uint_fast8_t

#define uint_fast8_t   gl_uint_fast8_t

◆ UINT_LEAST16_MAX

#define UINT_LEAST16_MAX   UINT16_MAX

◆ uint_least16_t

#define uint_least16_t   uint16_t

◆ UINT_LEAST32_MAX

#define UINT_LEAST32_MAX   UINT32_MAX

◆ uint_least32_t

#define uint_least32_t   uint32_t

◆ UINT_LEAST8_MAX

#define UINT_LEAST8_MAX   UINT8_MAX

◆ uint_least8_t

#define uint_least8_t   uint8_t

◆ UINTMAX_C

#define UINTMAX_C (   x)    x##UL

◆ UINTMAX_MAX

#define UINTMAX_MAX   UINT32_MAX

◆ uintmax_t

#define uintmax_t   gl_uintmax_t

◆ UINTPTR_MAX

#define UINTPTR_MAX   ULONG_MAX

◆ uintptr_t

#define uintptr_t   gl_uintptr_t

Referenced by mmalloca().

◆ WCHAR_MAX

#define WCHAR_MAX   _STDINT_MAX (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@)

◆ WCHAR_MIN

#define WCHAR_MIN   _STDINT_UNSIGNED_MIN (@BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@)

◆ WINT_MAX

#define WINT_MAX   _STDINT_MAX (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@)

◆ WINT_MIN

#define WINT_MIN   _STDINT_UNSIGNED_MIN (@BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@)

Typedef Documentation

◆ _verify_intmax_size

typedef int _verify_intmax_size[sizeof(intmax_t)==sizeof(uintmax_t) ? 1 :-1]

◆ gl_int16_t

typedef short int gl_int16_t

◆ gl_int32_t

typedef int gl_int32_t

◆ gl_int8_t

typedef signed char gl_int8_t

◆ gl_int_fast16_t

◆ gl_int_fast32_t

typedef long int gl_int_fast32_t

◆ gl_int_fast8_t

typedef signed char gl_int_fast8_t

◆ gl_intmax_t

typedef long int gl_intmax_t

◆ gl_intptr_t

typedef long int gl_intptr_t

◆ gl_uint16_t

typedef unsigned short int gl_uint16_t

◆ gl_uint32_t

typedef unsigned int gl_uint32_t

◆ gl_uint8_t

typedef unsigned char gl_uint8_t

◆ gl_uint_fast16_t

◆ gl_uint_fast32_t

typedef unsigned long int gl_uint_fast32_t

◆ gl_uint_fast8_t

typedef unsigned char gl_uint_fast8_t

◆ gl_uintmax_t

typedef unsigned long int gl_uintmax_t

◆ gl_uintptr_t

typedef unsigned long int gl_uintptr_t