clang 19.0.0git
Macros | Typedefs
stdint.h File Reference

Go to the source code of this file.

Macros

#define __CLANG_STDINT_H
 
#define __int8_t_defined
 
#define __stdint_join3(a, b, c)   a ## b ## c
 
#define __intptr_t_defined
 
#define _INTPTR_T
 
#define _UINTPTR_T
 
#define __int_c_join(a, b)   a ## b
 
#define __int_c(v, suffix)   __int_c_join(v, suffix)
 
#define __uint_c(v, suffix)   __int_c_join(v##U, suffix)
 
#define __INTN_MIN(n)   __stdint_join3( INT, n, _MIN)
 
#define __INTN_MAX(n)   __stdint_join3( INT, n, _MAX)
 
#define __UINTN_MAX(n)   __stdint_join3(UINT, n, _MAX)
 
#define __INTN_C(n, v)   __stdint_join3( INT, n, _C(v))
 
#define __UINTN_C(n, v)   __stdint_join3(UINT, n, _C(v))
 
#define INTPTR_MIN   (-__INTPTR_MAX__-1)
 
#define INTPTR_MAX   __INTPTR_MAX__
 
#define UINTPTR_MAX   __UINTPTR_MAX__
 
#define PTRDIFF_MIN   (-__PTRDIFF_MAX__-1)
 
#define PTRDIFF_MAX   __PTRDIFF_MAX__
 
#define SIZE_MAX   __SIZE_MAX__
 
#define INTMAX_MIN   (-__INTMAX_MAX__-1)
 
#define INTMAX_MAX   __INTMAX_MAX__
 
#define UINTMAX_MAX   __UINTMAX_MAX__
 
#define SIG_ATOMIC_MIN   __INTN_MIN(__SIG_ATOMIC_WIDTH__)
 
#define SIG_ATOMIC_MAX   __INTN_MAX(__SIG_ATOMIC_WIDTH__)
 
#define WINT_MIN   __INTN_MIN(__WINT_WIDTH__)
 
#define WINT_MAX   __INTN_MAX(__WINT_WIDTH__)
 
#define WCHAR_MAX   __WCHAR_MAX__
 
#define WCHAR_MIN   __INTN_MIN(__WCHAR_WIDTH__)
 
#define INTMAX_C(v)   __int_c(v, __INTMAX_C_SUFFIX__)
 
#define UINTMAX_C(v)   __int_c(v, __UINTMAX_C_SUFFIX__)
 

Typedefs

typedef __INTPTR_TYPE__ intptr_t
 
typedef __UINTPTR_TYPE__ uintptr_t
 
typedef __INTMAX_TYPE__ intmax_t
 
typedef __UINTMAX_TYPE__ uintmax_t
 

Macro Definition Documentation

◆ __CLANG_STDINT_H

#define __CLANG_STDINT_H

Definition at line 14 of file stdint.h.

◆ __int8_t_defined

#define __int8_t_defined

Definition at line 282 of file stdint.h.

◆ __int_c

#define __int_c (   v,
  suffix 
)    __int_c_join(v, suffix)

Definition at line 325 of file stdint.h.

◆ __int_c_join

#define __int_c_join (   a,
  b 
)    a ## b

Definition at line 324 of file stdint.h.

◆ __INTN_C

#define __INTN_C (   n,
  v 
)    __stdint_join3( INT, n, _C(v))

Definition at line 874 of file stdint.h.

◆ __INTN_MAX

#define __INTN_MAX (   n)    __stdint_join3( INT, n, _MAX)

Definition at line 872 of file stdint.h.

◆ __INTN_MIN

#define __INTN_MIN (   n)    __stdint_join3( INT, n, _MIN)

Definition at line 871 of file stdint.h.

◆ __intptr_t_defined

#define __intptr_t_defined

Definition at line 292 of file stdint.h.

◆ __stdint_join3

#define __stdint_join3 (   a,
  b,
  c 
)    a ## b ## c

Definition at line 287 of file stdint.h.

◆ __uint_c

#define __uint_c (   v,
  suffix 
)    __int_c_join(v##U, suffix)

Definition at line 326 of file stdint.h.

◆ __UINTN_C

#define __UINTN_C (   n,
  v 
)    __stdint_join3(UINT, n, _C(v))

Definition at line 875 of file stdint.h.

◆ __UINTN_MAX

#define __UINTN_MAX (   n)    __stdint_join3(UINT, n, _MAX)

Definition at line 873 of file stdint.h.

◆ _INTPTR_T

#define _INTPTR_T

Definition at line 293 of file stdint.h.

◆ _UINTPTR_T

#define _UINTPTR_T

Definition at line 299 of file stdint.h.

◆ INTMAX_C

#define INTMAX_C (   v)    __int_c(v, __INTMAX_C_SUFFIX__)

Definition at line 937 of file stdint.h.

◆ INTMAX_MAX

#define INTMAX_MAX   __INTMAX_MAX__

Definition at line 903 of file stdint.h.

◆ INTMAX_MIN

#define INTMAX_MIN   (-__INTMAX_MAX__-1)

Definition at line 902 of file stdint.h.

◆ INTPTR_MAX

#define INTPTR_MAX   __INTPTR_MAX__

Definition at line 881 of file stdint.h.

◆ INTPTR_MIN

#define INTPTR_MIN   (-__INTPTR_MAX__-1)

Definition at line 880 of file stdint.h.

◆ PTRDIFF_MAX

#define PTRDIFF_MAX   __PTRDIFF_MAX__

Definition at line 884 of file stdint.h.

◆ PTRDIFF_MIN

#define PTRDIFF_MIN   (-__PTRDIFF_MAX__-1)

Definition at line 883 of file stdint.h.

◆ SIG_ATOMIC_MAX

#define SIG_ATOMIC_MAX   __INTN_MAX(__SIG_ATOMIC_WIDTH__)

Definition at line 916 of file stdint.h.

◆ SIG_ATOMIC_MIN

#define SIG_ATOMIC_MIN   __INTN_MIN(__SIG_ATOMIC_WIDTH__)

Definition at line 915 of file stdint.h.

◆ SIZE_MAX

#define SIZE_MAX   __SIZE_MAX__

Definition at line 885 of file stdint.h.

◆ UINTMAX_C

#define UINTMAX_C (   v)    __int_c(v, __UINTMAX_C_SUFFIX__)

Definition at line 938 of file stdint.h.

◆ UINTMAX_MAX

#define UINTMAX_MAX   __UINTMAX_MAX__

Definition at line 904 of file stdint.h.

◆ UINTPTR_MAX

#define UINTPTR_MAX   __UINTPTR_MAX__

Definition at line 882 of file stdint.h.

◆ WCHAR_MAX

#define WCHAR_MAX   __WCHAR_MAX__

Definition at line 926 of file stdint.h.

◆ WCHAR_MIN

#define WCHAR_MIN   __INTN_MIN(__WCHAR_WIDTH__)

Definition at line 930 of file stdint.h.

◆ WINT_MAX

#define WINT_MAX   __INTN_MAX(__WINT_WIDTH__)

Definition at line 922 of file stdint.h.

◆ WINT_MIN

#define WINT_MIN   __INTN_MIN(__WINT_WIDTH__)

Definition at line 921 of file stdint.h.

Typedef Documentation

◆ intmax_t

typedef __INTMAX_TYPE__ intmax_t

Definition at line 304 of file stdint.h.

◆ intptr_t

typedef __INTPTR_TYPE__ intptr_t

Definition at line 291 of file stdint.h.

◆ uintmax_t

typedef __UINTMAX_TYPE__ uintmax_t

Definition at line 305 of file stdint.h.

◆ uintptr_t

typedef __UINTPTR_TYPE__ uintptr_t

Definition at line 298 of file stdint.h.