Referenced Macros for: /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c

Return to Index

Referenced Macros:


Macro Usage (referenced macros only)

Macros Out-of-scope

__HAS_FIXED_CHK_PROTOTYPES [References: 3] Defined? False

#define __HAS_FIXED_CHK_PROTOTYPES 0

defined @ /usr/include/secure/_string.h#48

/ usr/ include/ secure/ _string.h: 55-47 102-47 108-47

undef'd @ /usr/include/secure/_string.h#141

_PyGenObject_HEAD [References: 3] Defined? False

#define _PyGenObject_HEAD(prefix) PyObject_HEAD struct _frame *prefix##_frame; char \
prefix##_running; PyObject *prefix##_code; PyObject *prefix##_weakreflist; PyObject \
*prefix##_name; PyObject *prefix##_qualname;

defined @ /Users/paulross/dev/Python-3.6.2/Include/genobject.h#15

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ genobject.h: 32-5 52-5 69-5

undef'd @ /Users/paulross/dev/Python-3.6.2/Include/genobject.h#98


Macros In Scope

CACHED_KEYS [References: 10] Defined? True

#define CACHED_KEYS(tp) (((PyHeapTypeObject*)tp)->ht_cached_keys)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#4352

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 4366-53 4367-13 4368-57 4387-59 4401-27 4402-17 4410-31 4427-21 4430-21 4433-21

DICT_FROMKEYS_METHODDEF [References: 1] Defined? True

#define DICT_FROMKEYS_METHODDEF {"fromkeys", (PyCFunction)dict_fromkeys, METH_VARARGS|METH_CLASS, \
dict_fromkeys__doc__},

defined @ /Users/paulross/dev/Python-3.6.2/Objects/clinic/dictobject.c.h#11

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3172-5

I depend on these macros:

DICT_FROMKEYS_METHODDEF METH_CLASS
METH_VARARGS

DICT_NEXT_VERSION [References: 11] Defined? True

#define DICT_NEXT_VERSION() (++pydict_global_version)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#245

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 596-26 1165-30 1178-30 1191-26 1608-26 1741-26 1879-26 2916-30 2929-30 3026-26 3246-25

DICT___CONTAINS___METHODDEF [References: 1] Defined? True

#define DICT___CONTAINS___METHODDEF {"__contains__", (PyCFunction)dict___contains__, \
METH_O|METH_COEXIST, dict___contains____doc__},

defined @ /Users/paulross/dev/Python-3.6.2/Objects/clinic/dictobject.c.h#41

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3151-5

I depend on these macros:

DICT___CONTAINS___METHODDEF METH_COEXIST
METH_O

DKIX_DUMMY [References: 11] Defined? True

#define DKIX_DUMMY (-2)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dict-common.h#19

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 338-5 348-5 710-15 758-19 827-15 854-19 897-5 918-9 1610-40 1880-40 3017-34

DKIX_EMPTY [References: 44] Defined? True

#define DKIX_EMPTY (-1)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dict-common.h#18

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 427-34 427-46 427-58 427-70 428-34 428-46 428-58 428-70 642-15 643-16 653-19 654-20 704-15 708-16 751-19 821-15 825-16 847-19 852-20 898-15 902-16 919-19 923-20 965-15 969-16 985-19 989-20 1088-39 1137-17 1141-14 1144-15 1227-55 1538-15 1653-15 1696-15 1857-15 2138-15 2816-15 2843-15 2883-17 2888-14 2891-15 3198-19 3212-19

DKIX_ERROR [References: 14] Defined? True

#define DKIX_ERROR (-3)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dict-common.h#20

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 658-12 729-24 779-24 1126-15 1536-15 1651-15 1694-15 1855-15 2136-15 2814-15 2841-15 2878-15 3196-15 3210-15

DK_DEBUG_DECREF [References: 11] Defined? True

#define DK_DEBUG_DECREF _Py_DEC_REFTOTAL _Py_REF_DEBUG_COMMA

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#306

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 588-13 611-9 1305-9 1313-9 1748-9 1752-8 2018-9 2022-9 4403-17 4432-17 4457-5

I depend on these macros:

DK_DEBUG_DECREF _Py_DEC_REFTOTAL
_Py_REF_DEBUG_COMMA

These macros depend on me:

DK_DEBUG_DECREF DK_DECREF

DK_DEBUG_INCREF [References: 6] Defined? True

#define DK_DEBUG_INCREF _Py_INC_REFTOTAL _Py_REF_DEBUG_COMMA

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#305

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 544-5 1358-5 1737-5 2655-9 4367-13 4391-13

I depend on these macros:

DK_DEBUG_INCREF _Py_INC_REFTOTAL
_Py_REF_DEBUG_COMMA

These macros depend on me:

DK_DEBUG_INCREF DK_INCREF

DK_DECREF [References: 10] Defined? True

#define DK_DECREF(dk) if (DK_DEBUG_DECREF (--(dk)->dk_refcnt) == 0) free_keys_object(dk)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#309

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 588-13 611-9 1305-9 1748-9 1752-8 2018-9 2022-9 4403-17 4432-17 4457-5

I depend on these macros:

DK_DECREF DK_DEBUG_DECREF _Py_DEC_REFTOTAL
_Py_REF_DEBUG_COMMA

DK_ENTRIES [References: 29] Defined? True

#define DK_ENTRIES(dk) ((PyDictKeyEntry*)(&(dk)->dk_indices.as_1[DK_SIZE(dk) * DK_IXSIZE(dk)])) \

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#302

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 550-5 557-31 700-11 808-32 884-32 951-32 1043-11 1078-32 1152-15 1219-27 1280-11 1343-15 1609-11 1786-22 1790-22 1881-11 2197-10 2241-10 2299-10 2504-15 2728-31 2900-15 3006-11 3036-31 3503-15 3506-38 3590-38 3671-15 3675-38

I depend on these macros:

DK_ENTRIES DK_IXSIZE DK_SIZE
DK_SIZE

DK_INCREF [References: 5] Defined? True

#define DK_INCREF(dk) (DK_DEBUG_INCREF ++(dk)->dk_refcnt)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#308

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1358-5 1737-5 2655-9 4367-13 4391-13

I depend on these macros:

DK_INCREF DK_DEBUG_INCREF _Py_INC_REFTOTAL
_Py_REF_DEBUG_COMMA

DK_IXSIZE [References: 31] Defined? True

#define DK_IXSIZE(dk) (DK_SIZE(dk) <= 0xff ? 1 : DK_SIZE(dk) <= 0xffff ? 2 : DK_SIZE(dk) \
<= 0xffffffff ? 4 : sizeof(int64_t))

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#291

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 550-5 557-31 700-11 808-32 884-32 951-32 1043-11 1078-32 1152-15 1219-27 1280-11 1343-15 1609-11 1786-22 1790-22 1881-11 2197-10 2241-10 2299-10 2504-15 2728-31 2900-15 3006-11 3036-31 3087-19 3097-15 3503-15 3506-38 3590-38 3671-15 3675-38

I depend on these macros:

DK_IXSIZE DK_SIZE

These macros depend on me:

DK_IXSIZE DK_ENTRIES

DK_MASK [References: 6] Defined? True

#define DK_MASK(dk) (((dk)->dk_size)-1)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#310

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 634-19 699-12 806-19 882-19 949-19 1076-19

DK_SIZE [References: 136] Defined? True

#define DK_SIZE(dk) ((dk)->dk_size)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#289

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 317-20 346-20 550-5 557-31 608-12 700-11 808-32 884-32 951-32 1043-11 1078-32 1152-15 1218-27 1219-27 1280-11 1338-32 1343-15 1344-16 1609-11 1661-28 1704-28 1786-22 1790-22 1868-28 1881-11 2197-10 2241-10 2299-10 2504-15 2642-27 2728-31 2900-15 2998-28 3006-11 3036-31 3076-12 3087-19 3097-15 3097-33 3098-15 3503-15 3506-38 3590-38 3671-15 3675-38

These macros depend on me:

DK_SIZE DK_ENTRIES
DK_IXSIZE DK_ENTRIES

DOUBLE_IS_LITTLE_ENDIAN_IEEE754 [References: 2] Defined? True

#define DOUBLE_IS_LITTLE_ENDIAN_IEEE754 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#29

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 473-14

ENSURE_ALLOWS_DELETIONS [References: 3] Defined? True

#define ENSURE_ALLOWS_DELETIONS(d) if ((d)->ma_keys->dk_lookup == lookdict_unicode_nodummy) \
{ (d)->ma_keys->dk_lookup = lookdict_unicode; }

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#413

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1611-5 1882-5 3003-5

ESTIMATE_SIZE [References: 4] Defined? True

#define ESTIMATE_SIZE(n) (((n)*3+1) >> 1)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#391

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1377-30 1934-32 1953-32 2500-32

FD_CLR [References: 1] Defined? True

#define FD_CLR(n,p) __DARWIN_FD_CLR(n, p)

defined @ /usr/include/sys/_types/_fd_clr.h#29

/ usr/ include/ sys/ _types/ _fd_clr.h: 29-1

I depend on these macros:

FD_CLR __DARWIN_FD_CLR __DARWIN_NFDBITS __DARWIN_NBBY

FD_COPY [References: 1] Defined? True

#define FD_COPY(f,t) __DARWIN_FD_COPY(f, t)

defined @ /usr/include/sys/_types/_fd_copy.h#29

/ usr/ include/ sys/ _types/ _fd_copy.h: 29-1

I depend on these macros:

FD_COPY __DARWIN_FD_COPY

FD_ISSET [References: 1] Defined? True

#define FD_ISSET(n,p) __DARWIN_FD_ISSET(n, p)

defined @ /usr/include/sys/_types/_fd_isset.h#29

/ usr/ include/ sys/ _types/ _fd_isset.h: 29-1

I depend on these macros:

FD_ISSET __DARWIN_FD_ISSET

FD_SET [References: 1] Defined? True

#define FD_SET(n,p) __DARWIN_FD_SET(n, p)

defined @ /usr/include/sys/_types/_fd_set.h#29

/ usr/ include/ sys/ _types/ _fd_set.h: 29-1

I depend on these macros:

FD_SET __DARWIN_FD_SET __DARWIN_NFDBITS __DARWIN_NBBY

FD_SETSIZE [References: 2] Defined? True

#define FD_SETSIZE __DARWIN_FD_SETSIZE

defined @ /usr/include/sys/_types/_fd_setsize.h#29

/ usr/ include/ sys/ _types/ _fd_def.h: 37-1
_fd_setsize.h: 29-1

I depend on these macros:

FD_SETSIZE __DARWIN_FD_SETSIZE

These macros depend on me:

FD_SETSIZE _PyIsSelectable_fd

FD_ZERO [References: 1] Defined? True

#define FD_ZERO(p) __DARWIN_FD_ZERO(p)

defined @ /usr/include/sys/_types/_fd_zero.h#29

/ usr/ include/ sys/ _types/ _fd_zero.h: 29-1

I depend on these macros:

FD_ZERO __DARWIN_FD_ZERO

GROWTH_RATE [References: 1] Defined? True

#define GROWTH_RATE(d) (((d)->ma_used*2)+((d)->ma_keys->dk_size>>1))

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#411

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1102-27

HAVE_BUILTIN_ATOMIC [References: 1] Defined? True

#define HAVE_BUILTIN_ATOMIC 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#109

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyatomic.h: 53-15

HAVE_COPYSIGN [References: 1] Defined? True

#define HAVE_COPYSIGN 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#142

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 18-1

HAVE_DECL_ISFINITE [References: 2] Defined? True

#define HAVE_DECL_ISFINITE 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#164

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 133-13 133-35

HAVE_DECL_ISINF [References: 2] Defined? True

#define HAVE_DECL_ISINF 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#168

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 118-15 118-34

HAVE_DECL_ISNAN [References: 2] Defined? True

#define HAVE_DECL_ISNAN 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#172

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 98-13 98-32

HAVE_DLOPEN [References: 2] Defined? True

#define HAVE_DLOPEN 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#232

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pystate.h: 44-5

HAVE_ERRNO_H [References: 1] Defined? True

#define HAVE_ERRNO_H 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#259

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ Python.h: 32-1

HAVE_FORKPTY [References: 2] Defined? True

#define HAVE_FORKPTY 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#307

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 526-38

HAVE_GCC_ASM_FOR_X87 [References: 3] Defined? True

#define HAVE_GCC_ASM_FOR_X87 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#362

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 83-1
pyport.h: 395-1

HAVE_HYPOT [References: 1] Defined? True

#define HAVE_HYPOT 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#471

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 26-1

HAVE_KQUEUE [References: 1] Defined? True

#define HAVE_KQUEUE 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#504

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pytime.h: 131-44

HAVE_LONG_LONG [References: 1] Defined? True

#define HAVE_LONG_LONG 1

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#42

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 42-1

HAVE_OPENPTY [References: 2] Defined? True

#define HAVE_OPENPTY 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#654

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 526-13

HAVE_PY_SET_53BIT_PRECISION [References: 4] Defined? True

#define HAVE_PY_SET_53BIT_PRECISION 1

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#395

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 456-1 482-46

HAVE_READLINK [References: 1] Defined? True

#define HAVE_READLINK 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#720

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ fileutils.h: 92-1

HAVE_REALPATH [References: 1] Defined? True

#define HAVE_REALPATH 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#729

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ fileutils.h: 99-1

HAVE_ROUND [References: 1] Defined? True

#define HAVE_ROUND 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#762

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 22-1

HAVE_SELECT [References: 1] Defined? True

#define HAVE_SELECT 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#783

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ fileobject.h: 42-2

HAVE_SNPRINTF [References: 1] Defined? True

#define HAVE_SNPRINTF 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#882

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyerrors.h: 490-35

HAVE_SSIZE_T [References: 2] Defined? True

#define HAVE_SSIZE_T 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#900

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 84-1

HAVE_SYS_SELECT_H [References: 2] Defined? True

#define HAVE_SYS_SELECT_H 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1044

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 219-1

HAVE_SYS_STAT_H [References: 2] Defined? True

#define HAVE_SYS_STAT_H 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1056

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 227-1

HAVE_SYS_TIME_H [References: 2] Defined? True

#define HAVE_SYS_TIME_H 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1071

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 205-1

HAVE_UNISTD_H [References: 1] Defined? True

#define HAVE_UNISTD_H 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1142

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ Python.h: 36-1

HAVE_WCHAR_H [References: 3] Defined? True

#define HAVE_WCHAR_H 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1180

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ unicodeobject.h: 102-1 107-1 1024-1

INT_MAX [References: 2] Defined? True

#define INT_MAX 2147483647

defined @ /usr/include/i386/limits.h#71

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 659-1

These macros depend on me:

INT_MAX PY_INVALID_STACK_EFFECT

IS_POWER_OF_2 [References: 3] Defined? True

#define IS_POWER_OF_2(x) (((x) & (x-1)) == 0)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#311

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 452-5 513-5 1383-5

LONG_BIT [References: 4] Defined? True

#define LONG_BIT (8 * SIZEOF_LONG)

defined @ Unnamed Pre-include#7

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 677-1 680-5

I depend on these macros:

LONG_BIT SIZEOF_LONG

LONG_MAX [References: 2] Defined? True

#define LONG_MAX 2147483647L

defined @ /usr/include/i386/limits.h#80

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 663-1

These macros depend on me:

LONG_MAX SSIZE_MAX

LONG_MIN [References: 2] Defined? True

#define LONG_MIN (-2147483647L-1)

defined @ /usr/include/i386/limits.h#81

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 673-1

MAINTAIN_TRACKING [References: 3] Defined? True

#define MAINTAIN_TRACKING(mp,key,value) do { if (!_PyObject_GC_IS_TRACKED(mp)) { if \
(_PyObject_GC_MAY_BE_TRACKED(key) || _PyObject_GC_MAY_BE_TRACKED(value)) { \
_PyObject_GC_TRACK(mp); } } } while(0)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#1021

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1130-5 2905-9 2926-9

I depend on these macros:

MAINTAIN_TRACKING _PyObject_GC_IS_TRACKED _PyGC_REFS _PyGCHead_REFS _PyGC_REFS_SHIFT
_Py_AS_GC
_PyGC_REFS_UNTRACKED
_PyObject_GC_MAY_BE_TRACKED PyObject_IS_GC NULL __DARWIN_NULL
PyType_IS_GC PyType_HasFeature
Py_TPFLAGS_HAVE_GC
Py_TYPE
PyTuple_CheckExact Py_TYPE
_PyObject_GC_IS_TRACKED _PyGC_REFS _PyGCHead_REFS _PyGC_REFS_SHIFT
_Py_AS_GC
_PyGC_REFS_UNTRACKED
_PyObject_GC_TRACK _PyGCHead_REFS _PyGC_REFS_SHIFT
_PyGCHead_SET_REFS _PyGC_REFS_MASK _PyGC_REFS_SHIFT
_PyGC_REFS_SHIFT
_PyGC_REFS_REACHABLE
_PyGC_REFS_UNTRACKED
_Py_AS_GC

MAX_CO_EXTRA_USERS [References: 2] Defined? True

#define MAX_CO_EXTRA_USERS 255

defined @ /Users/paulross/dev/Python-3.6.2/Include/pystate.h#13

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pystate.h: 59-33 158-33

MB_CUR_MAX [References: 1] Defined? True

#define MB_CUR_MAX __mb_cur_max

defined @ /usr/include/stdlib.h#118

/ usr/ include/ stdlib.h: 111-1

METH_CLASS [References: 1] Defined? True

#define METH_CLASS 0x0010

defined @ /Users/paulross/dev/Python-3.6.2/Include/methodobject.h#78

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3172-5

These macros depend on me:

METH_CLASS DICT_FROMKEYS_METHODDEF

METH_COEXIST [References: 2] Defined? True

#define METH_COEXIST 0x0040

defined @ /Users/paulross/dev/Python-3.6.2/Include/methodobject.h#86

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3151-5 3152-66

These macros depend on me:

METH_COEXIST DICT___CONTAINS___METHODDEF

METH_KEYWORDS [References: 1] Defined? True

#define METH_KEYWORDS 0x0002

defined @ /Users/paulross/dev/Python-3.6.2/Include/methodobject.h#70

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3170-72

METH_NOARGS [References: 9] Defined? True

#define METH_NOARGS 0x0004

defined @ /Users/paulross/dev/Python-3.6.2/Include/methodobject.h#72

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3154-57 3162-57 3164-57 3166-57 3168-57 3173-57 3175-57 3466-52 3468-51

METH_O [References: 4] Defined? True

#define METH_O 0x0008

defined @ /Users/paulross/dev/Python-3.6.2/Include/methodobject.h#73

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3151-5 3152-57 4140-61 4230-61

These macros depend on me:

METH_O DICT___CONTAINS___METHODDEF

METH_VARARGS [References: 5] Defined? True

#define METH_VARARGS 0x0001

defined @ /Users/paulross/dev/Python-3.6.2/Include/methodobject.h#69

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3156-53 3158-53 3160-53 3170-57 3172-5

These macros depend on me:

METH_VARARGS DICT_FROMKEYS_METHODDEF

NCCS [References: 1] Defined? True

#define NCCS 20

defined @ /usr/include/sys/termios.h#108

/ usr/ include/ sys/ termios.h: 272-13

NULL [References: 429] Defined? True

#define NULL __DARWIN_NULL

defined @ /usr/include/sys/_types/_null.h#29

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ Python.h: 27-1
Objects/ clinic/ dictobject.c.h: 20-30
dictobject.c: 431-38 444-20 539-19 541-20 560-9 561-9 578-5 581-9 587-19 590-20 609-14 610-19 615-21 624-17 625-16 626-27 705-24 707-23 715-9 718-28 728-31 734-36 752-28 755-27 764-9 766-28 778-31 783-36 810-5 822-24 824-23 832-9 835-28 848-28 851-27 860-9 864-28 886-5 899-24 901-23 905-5 909-24 920-28 922-27 926-9 929-28 954-5 966-24 968-23 973-5 976-24 986-28 988-27 993-9 996-28 1045-9 1047-47 1049-17 1050-17 1057-46 1059-17 1060-17 1064-5 1080-5 1081-5 1082-5 1095-5 1120-26 1130-5 1135-9 1136-37 1158-13 1173-5 1176-22 1187-5 1222-5 1223-5 1224-5 1232-5 1271-24 1279-21 1285-22 1287-33 1296-29 1301-22 1304-31 1328-16 1329-10 1334-20 1339-24 1345-18 1346-23 1349-20 1353-31 1386-21 1387-16 1388-31 1411-16 1418-20 1428-19 1428-50 1432-67 1436-20 1439-67 1442-20 1461-16 1464-63 1466-16 1485-16 1492-20 1496-63 1498-16 1507-15 1508-16 1531-20 1535-71 1537-16 1538-44 1542-73 1544-16 1605-5 1606-19 1613-18 1653-44 1660-9 1696-44 1703-9 1743-22 1746-13 1780-39 1791-48 1830-49 1852-16 1856-16 1857-44 1863-16 1867-9 1869-20 1876-5 1877-19 1884-18 1902-16 1908-20 1922-34 1923-14 1924-16 1936-24 1942-28 1955-24 1961-28 1969-15 1971-16 1975-43 1982-43 1998-12 2011-19 2014-17 2020-22 2036-21 2036-36 2042-56 2077-18 2088-18 2095-9 2096-9 2110-5 2111-5 2112-12 2133-20 2135-63 2137-16 2138-44 2142-13 2144-28 2146-57 2151-24 2154-16 2164-14 2188-14 2189-16 2208-27 2232-14 2233-16 2254-22 2281-14 2282-16 2285-21 2287-20 2312-22 2347-21 2353-21 2354-9 2360-32 2374-12 2395-5 2397-5 2400-15 2407-16 2409-21 2417-21 2439-51 2457-5 2458-5 2479-14 2479-47 2516-26 2522-69 2556-21 2566-21 2570-60 2581-26 2635-14 2637-16 2640-9 2644-21 2645-26 2648-27 2650-20 2658-13 2666-17 2667-16 2671-12 2677-15 2687-15 2689-16 2697-15 2699-16 2707-15 2709-16 2734-21 2745-70 2746-24 2749-25 2778-20 2811-20 2813-63 2815-16 2816-44 2826-21 2832-16 2838-20 2840-63 2842-16 2843-44 2862-16 2869-20 2872-26 2874-20 2879-16 2881-9 2882-37 2885-20 2896-24 2905-9 2909-13 2921-29 2923-9 2926-9 2946-16 2949-5 2963-29 2966-16 2988-16 2989-16 2994-16 3000-20 3008-41 3021-18 3022-20 3041-40 3048-30 3177-6 3177-25 3195-63 3198-48 3209-63 3212-48 3235-5 3237-17 3238-16 3243-9 3248-23 3250-16 3327-15 3329-16 3341-15 3343-16 3355-15 3366-15 3378-15 3389-15 3412-15 3413-16 3421-30 3423-20 3427-25 3435-5 3436-5 3452-24 3470-6 3470-25 3481-14 3482-16 3489-16 3497-39 3507-48 3521-19 3523-12 3566-14 3567-16 3574-16 3581-39 3591-48 3605-19 3607-12 3650-14 3651-16 3658-16 3665-39 3676-48 3701-23 3702-20 3709-19 3711-12 3756-16 3760-5 3777-17 3778-24 3784-5 3786-24 3789-16 3803-5 3818-24 3827-17 3829-16 3836-16 3839-15 3840-16 3863-17 3867-21 3888-5 3890-5 3897-16 3900-16 3935-16 3948-16 3949-16 3961-24 3970-24 3991-5 3993-19 3994-16 3996-81 3997-16 3999-16 4011-5 4013-19 4014-16 4016-83 4017-16 4019-16 4031-5 4033-19 4034-16 4036-70 4037-16 4039-16 4051-5 4053-19 4054-16 4056-91 4057-16 4059-16 4089-22 4104-20 4114-15 4115-16 4117-40 4122-20 4132-16 4142-6 4142-25 4189-24 4200-24 4207-18 4232-6 4232-25 4279-24 4297-6 4297-25 4345-17 4358-20 4361-16 4364-17 4374-5 4386-5 4388-9 4390-21 4393-25 4397-22 4401-47 4402-35 4410-51 4430-39 4433-40 4439-21 4441-25 4445-22
usr/ include/ c++/ 4.2.1/ bits/ os_defines.h: 206-1
sys/ _types/ _null.h: 29-1

I depend on these macros:

NULL __DARWIN_NULL

These macros depend on me:

NULL PyCFunction_GET_SELF
PyCFunction_New
PyDescr_IsData
PyEval_CallObject
PyIndex_Check
PyIter_Check
PyMem_NEW new_values
PyMem_New
PyMem_RESIZE
PyMem_Resize
PyModuleDef_HEAD_INIT
PyObject_CheckBuffer
PyObject_DelAttr
PyObject_DelAttrString
PyObject_IS_GC _PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING
PyRun_AnyFile
PyRun_AnyFileEx
PyRun_File
PyRun_FileEx
PyRun_InteractiveLoop
PyRun_InteractiveOne
PyRun_SimpleFile
PyRun_SimpleFileEx
PyRun_SimpleString
PyRun_String
Py_CLEAR
Py_CompileString
Py_GETENV
Py_XDECREF Py_XSETREF
Py_XINCREF
_PyDict_HasSplitTable
_PyObject_CallNoArg
_PyObject_FastCall _PyObject_CallArg1
_PyObject_CallNoArg
_PyObject_GC_UNTRACK
_Py_static_string_init _Py_static_string _Py_IDENTIFIER

PERTURB_SHIFT [References: 7] Defined? True

#define PERTURB_SHIFT 5

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#129

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 647-21 748-21 844-21 915-21 982-21 1089-21 1228-21

PYLONG_BITS_IN_DIGIT [References: 2] Defined? True

#define PYLONG_BITS_IN_DIGIT 30

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#65

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ longintrepr.h: 44-5
pyport.h: 64-1

PYMALLOC_DEBUG [References: 1] Defined? True

#define PYMALLOC_DEBUG

defined @ /Users/paulross/dev/Python-3.6.2/Include/Python.h#59

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ Python.h: 61-13

PY_FORMAT_SIZE_T [References: 2] Defined? True

#define PY_FORMAT_SIZE_T "z"

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1249

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 138-1

PY_LONG_LONG [References: 1] Defined? True

#define PY_LONG_LONG long long

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#45

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 45-1

PY_SSIZE_T_MAX [References: 3] Defined? True

#define PY_SSIZE_T_MAX ((Py_ssize_t)(((size_t)-1)>>1))

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#109

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 609-14 1345-18 2644-21

These macros depend on me:

PY_SSIZE_T_MAX PY_SSIZE_T_MIN
PyMem_NEW new_values
PyMem_New
PyMem_RESIZE
PyMem_Resize

PyAPI_DATA [References: 200] Defined? True

#define PyAPI_DATA(RTYPE) extern RTYPE

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#646

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ bltinmodule.h: 7-1 8-1 9-1
boolobject.h: 10-1 18-1
bytearrayobject.h: 34-1 35-1 56-1
bytesobject.h: 44-1 45-1
cellobject.h: 14-1
ceval.h: 87-1
classobject.h: 19-1 42-1
code.h: 98-1
codecs.h: 234-1
complexobject.h: 39-1
descrobject.h: 75-1 76-1 77-1 78-1 79-1 80-1 82-1 102-1
dictobject.h: 50-1 51-1 52-1 53-1 54-1 55-1 56-1
enumobject.h: 10-1 11-1
fileobject.h: 25-1 27-1 29-1 37-1
floatobject.h: 21-1
funcobject.h: 43-1 93-1 94-1
genobject.h: 35-1 55-1 56-1 58-1 82-1 83-1 84-1 85-1
import.h: 113-1 117-1 134-1
iterobject.h: 8-1 9-1 10-1
listobject.h: 43-1 44-1 45-1 46-1
longobject.h: 12-1 71-1
memoryobject.h: 10-1 12-1
methodobject.h: 14-1
modsupport.h: 177-1
moduleobject.h: 10-1 40-1
namespaceobject.h: 11-1
object.h: 489-1 490-1 491-1 715-1 899-1 900-1 909-1 919-1 938-1 1041-1 1042-1
odictobject.h: 14-1 15-1 16-1 17-1 18-1
pycapsule.h: 21-1
pyctype.h: 13-1 26-1 27-1
pydebug.h: 10-1 11-1 12-1 13-1 14-1 15-1 16-1 17-1 18-1 19-1 20-1 21-1 22-1 23-1 24-1 25-1
pyerrors.h: 150-1 151-1 153-1 155-1 156-1 157-1 158-1 160-1 161-1 162-1 163-1 164-1 165-1 166-1 168-1 170-1 171-1 172-1 173-1 174-1 175-1 176-1 178-1 180-1 181-1 182-1 183-1 184-1 185-1 186-1 187-1 188-1 189-1 190-1 191-1 192-1 193-1 194-1 197-1 198-1 199-1 200-1 201-1 202-1 203-1 204-1 205-1 206-1 207-1 208-1 209-1 210-1 211-1 216-1 217-1 222-1 225-1 226-1 227-1 228-1 229-1 230-1 231-1 232-1 233-1 234-1 235-1
pyhash.h: 77-1 81-1
pylifecycle.h: 112-1
pyport.h: 646-1
pystate.h: 280-1 318-1
pythonrun.h: 173-1 174-1 176-1
rangeobject.h: 18-1 19-1 20-1
setobject.h: 69-1 77-1 78-1 79-1
sliceobject.h: 9-1 28-1 29-1
traceback.h: 31-1
tupleobject.h: 36-1 37-1
unicodeobject.h: 363-1 364-1 2151-1
weakrefobject.h: 43-1 44-1 45-1

PyAPI_FUNC [References: 1135] Defined? True

#define PyAPI_FUNC(RTYPE) RTYPE

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#643

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ abstract.h: 268-6 278-5 289-5 304-5 320-5 339-5 354-5 358-6 363-6 374-6 387-6 401-6 411-6 414-6 419-6 425-6 437-6 440-6 482-6 490-6 501-6 505-6 506-6 515-6 523-6 531-6 539-6 552-6 567-6 575-6 590-6 614-6 624-6 630-6 638-6 641-6 661-6 666-6 669-6 681-6 691-6 697-6 706-6 715-6 723-6 732-6 739-6 747-6 756-6 763-6 771-6 779-6 787-6 795-6 804-6 811-6 818-6 825-6 833-6 841-6 849-6 858-6 866-6 878-6 885-6 895-6 903-6 913-6 921-6 929-6 938-6 945-6 955-6 965-6 973-6 982-6 990-6 998-6 1006-6 1014-6 1022-6 1033-6 1042-6 1050-6 1054-6 1062-6 1070-6 1077-6 1085-6 1093-6 1101-6 1110-6 1118-6 1126-6 1132-6 1168-6 1177-6 1187-6 1203-6 1214-6 1224-6 1233-6 1244-6 1253-6 1263-6 1287-6 1297-6 1308-6 1315-6 1322-6 1331-6 1340-6 1350-1 1353-1 1358-1 1360-1 1362-1 1364-1 1367-1 1369-1
boolobject.h: 29-1
bytearrayobject.h: 42-1 43-1 44-1 45-1 46-1 47-1
bytesobject.h: 51-1 52-1 53-1 54-1 56-1 58-1 59-1 60-1 61-1 62-1 64-1 65-1 70-1 74-1 79-1 95-1 103-1 115-1 124-1 171-1 176-1 180-1 185-1 194-1 209-1 215-1
cellobject.h: 18-1 19-1 20-1
ceval.h: 10-1 17-1 19-1 24-1 25-1 26-1 27-1 28-1 29-1 30-1 31-1 36-1 37-1 38-1 39-1 45-1 48-1 49-1 76-1 77-1 86-1 120-1 121-1 123-1 124-1 125-1 127-1 175-1 176-1 180-1 181-1 183-1 185-1 186-1 187-1 188-1 189-1 192-1 193-1 197-1 218-1 219-1 220-1
classobject.h: 23-1 25-1 26-1 35-1 46-1 47-1
code.h: 104-1 111-1 117-1 129-1 139-1 142-1 147-1 149-1
codecs.h: 26-1 49-1 53-1 65-1 79-1 95-1 115-1 120-1 126-1 135-1 140-1 158-1 164-1 170-1 177-1 184-1 192-1 206-1 211-1 214-1 217-1 220-1 223-1 226-1 230-1
compile.h: 13-1 34-1 40-1 46-1 50-1 56-1 59-1
complexobject.h: 17-1 18-1 19-1 20-1 21-1 22-1 23-1 45-1 47-1 49-1 50-1 52-1 58-1
descrobject.h: 85-1 86-1 88-1 90-1 93-1 98-1 99-1
dictobject.h: 69-1 70-1 72-1 75-1 77-1 79-1 82-1 84-1 87-1 89-1 91-1 94-1 95-1 99-1 100-1 104-1 105-1 106-1 107-1 108-1 109-1 111-1 112-1 113-1 114-1 117-1 122-1 126-1 133-1 143-1 144-1 152-1 156-1 158-1 160-1 162-1 164-1 167-1 168-1
dtoa.h: 7-1 8-1 10-1 11-1 12-1
eval.h: 10-1 12-1 21-1
fileobject.h: 11-1 14-1 15-1 16-1 17-1 19-1 36-1
fileutils.h: 9-1 13-1 20-1 44-1 48-1 52-1 56-1 60-1 64-1 68-1 72-1 76-1 81-1 86-1 92-1 99-1 105-1 109-1 111-1 114-1 117-1 119-1
floatobject.h: 37-1 38-1 39-1 42-1 45-1 49-1 87-1 88-1 89-1 94-1 97-1 98-1 108-1 109-1 110-1 113-1 115-1 119-1
funcobject.h: 47-1 48-1 49-1 50-1 51-1 52-1 53-1 54-1 55-1 56-1 57-1 58-1 59-1 62-1 68-1 96-1 97-1
genobject.h: 40-1 41-1 43-1 44-1 45-1 46-1 48-1 63-1 87-1
import.h: 11-1 15-1 16-1 17-1 21-1 26-1 33-1 40-1 42-1 46-1 49-1 52-1 55-1 63-1 75-1 76-1 77-1 78-1 80-1 84-1 90-1 91-1 97-1 99-1 102-1 103-1 107-1 114-1 119-1
intrcheck.h: 8-1 9-1 10-1 13-1
iterobject.h: 14-1 19-1
listobject.h: 52-1 53-1 54-1 55-1 56-1 57-1 58-1 59-1 60-1 61-1 62-1 64-1 66-1 67-1
longintrepr.h: 90-1 93-1
longobject.h: 18-1 19-1 20-1 21-1 22-1 23-1 24-1 25-1 26-1 27-1 28-1 30-1 32-1 81-1 84-1 85-1 86-1 88-1 89-1 90-1 91-1 92-1 93-1 95-1 97-1 98-1 99-1 107-1 117-1 125-1 140-1 163-1 172-1 176-1 178-1 184-1 193-1 204-1 205-1 209-1
memoryobject.h: 23-1 25-1 29-1 31-1
methodobject.h: 25-1 26-1 27-1 40-1 43-1 48-1 64-1 100-1 103-1 104-1
modsupport.h: 24-1 30-1 31-1 32-1 34-1 35-1 38-1 39-1 40-1 41-1 44-1 45-1 47-1 66-1 68-1 70-1 75-1 76-1 77-1 83-1 84-1 85-1 150-1 163-1
moduleobject.h: 16-1 20-1 23-1 25-1 27-1 28-1 29-1 31-1 32-1 34-1 35-1 39-1
namespaceobject.h: 13-1
object.h: 451-1 453-1 456-1 485-1 493-1 499-1 500-1 501-1 504-1 505-1 506-1 507-1 509-1 510-1 513-1 514-1 520-1 521-1 522-1 524-1 525-1 526-1 527-1 528-1 529-1 530-1 531-1 532-1 533-1 534-1 535-1 537-1 538-1 539-1 540-1 541-1 543-1 545-1 547-1 548-1 551-1 553-1 554-1 555-1 556-1 557-1 559-1 561-1 562-1 568-1 570-1 577-1 586-1 590-1 591-1 716-1 718-1 730-1 756-1 757-1 758-1 759-1 760-1 761-1 895-1 896-1 1039-1 1040-1 1046-1 1047-1 1067-1 1070-1
objimpl.h: 97-1 99-1 101-1 102-1 106-1 112-1 130-1 131-1 133-1 134-1 219-1 222-1 232-1 235-1 236-1 246-1 331-1 332-1 334-1 335-1 336-1 337-1 338-1
odictobject.h: 28-1 29-1 30-1
osmodule.h: 11-1
pyarena.h: 36-3 37-3 51-3 57-3
pycapsule.h: 28-1 33-1 35-1 37-1 39-1 41-1 43-1 45-1 47-1 49-1 51-1
pyerrors.h: 77-1 78-1 80-1 82-1 86-1 87-1 88-1 89-1 91-1 92-1 105-1 114-1 115-1 116-1 119-1 120-1 123-1 124-1 127-1 128-1 130-1 240-1 241-1 242-1 243-1 246-1 249-1 258-1 264-1 274-1 311-1 315-1 320-1 321-1 327-1 329-1 331-1 348-1 356-1 357-1 365-1 368-1 373-1 378-1 382-1 391-1 402-1 414-1 421-1 430-1 431-1 434-1 435-1 436-1 440-1 441-1 442-1 446-1 447-1 448-1 452-1 453-1 454-1 458-1 459-1 460-1 463-1 464-1 465-1 469-1 473-1 477-1 497-1 499-1
pyhash.h: 10-1 11-1 12-1 94-1
pylifecycle.h: 10-1 11-1 13-1 14-1 20-1 24-1 25-1 27-1 29-1 30-1 31-1 32-1 33-1 40-1 42-1 44-1 48-1 50-1 54-1 57-1 58-1 59-1 60-1 61-1 67-1 68-1 69-1 70-1 71-1 73-1 74-1 79-1 80-1 81-1 82-1 83-1 84-1 85-1 86-1 87-1 92-1 93-1 94-1 95-1 96-1 97-1 98-1 99-1 100-1 101-1 102-1 103-1 104-1 105-1 106-1 107-1 108-1 109-1 110-1 117-1 118-1 122-1 123-1
pymath.h: 83-1 84-1
pymem.h: 15-1 16-1 17-1 18-1 22-1 25-1 38-1 47-1 59-1 103-1 105-1 107-1 108-1 111-1 112-1 193-1 207-1 226-1
pyport.h: 643-1
pystate.h: 169-1 170-1 171-1 173-1 177-1 178-1 180-1 182-1 185-1 187-1 188-1 190-1 191-1 193-1 196-1 198-1 205-1 210-1 213-1 214-1 215-1 257-1 267-1 275-1 286-1 293-1 302-1 308-1 309-1 310-1 311-1
pystrcmp.h: 8-1 9-1
pystrtod.h: 9-1 15-1 22-1 26-1
pythonrun.h: 27-1 28-1 29-1 34-1 39-1 43-1 47-1 52-1 58-1 64-1 74-1 92-1 95-1 99-1 103-1 106-1 121-1 127-1 133-1 138-1 144-1 145-1 146-1 171-1
pytime.h: 36-1 40-1 44-1 52-1 61-1 69-1 77-1 81-1 87-1 92-1 95-1 99-1 104-1 110-1 115-1 125-1 135-1 142-1 151-1 166-1 178-1 185-1 189-1 193-1
setobject.h: 71-1 72-1 73-1 81-1 82-1 84-1 85-1 86-1 87-1 88-1 89-1
sliceobject.h: 33-1 36-1 37-1 41-1 43-1 55-1 57-1
structseq.h: 25-1 27-1 30-1 32-1 43-1 44-1
sysmodule.h: 10-1 11-1 13-1 14-1 17-1 18-1 19-1 21-1 23-1 25-1 26-1 28-1 29-1 30-1 31-1 33-1 34-1 37-1
traceback.h: 23-1 24-1 26-1 27-1 52-1 79-1 94-1 99-1 109-1
tupleobject.h: 43-1 44-1 45-1 46-1 47-1 49-1 51-1 53-1 65-1 67-1
unicodeobject.h: 586-1 600-1 607-1 631-1 642-1 660-1 669-1 688-1 695-1 702-1 709-1 716-1 722-1 731-1 743-1 752-1 761-1 772-1 781-1 789-1 796-1 806-1 815-1 834-1 852-1 867-1 871-1 875-1 908-1 925-1 942-1 948-1 955-1 962-1 971-1 979-1 988-1 992-1 999-1 1007-1 1008-1 1009-1 1013-1 1029-1 1046-1 1060-1 1066-1 1080-1 1091-1 1134-1 1161-1 1167-1 1174-1 1188-1 1201-1 1211-1 1227-1 1236-1 1249-1 1257-1 1263-1 1269-1 1277-1 1284-1 1294-1 1300-1 1307-1 1312-1 1316-1 1348-1 1357-1 1370-1 1391-1 1397-1 1429-1 1438-1 1451-1 1476-1 1482-1 1491-1 1500-1 1510-1 1515-1 1523-1 1529-1 1534-1 1558-1 1564-1 1569-1 1573-1 1586-1 1592-1 1597-1 1601-1 1625-1 1632-1 1638-1 1644-1 1665-1 1747-1 1762-1 1774-1 1790-1 1798-1 1807-1 1818-1 1823-1 1834-1 1845-1 1857-1 1869-1 1877-1 1885-1 1901-1 1912-1 1919-1 1927-1 1945-1 1963-1 1972-1 1978-1 1988-1 2000-1 2010-1 2021-1 2031-1 2043-1 2053-1 2065-1 2075-1 2093-1 2102-1 2113-1 2120-1 2124-1 2135-1 2160-1 2164-1 2168-1 2172-1 2176-1 2180-1 2184-1 2188-1 2192-1 2196-1 2200-1 2205-1 2210-1 2215-1 2220-1 2224-1 2228-1 2232-1 2236-1 2240-1 2244-1 2248-1 2252-1 2256-1 2260-1 2264-1 2268-1 2271-1 2276-1 2281-1 2287-1 2292-1 2297-1 2303-1 2309-1 2320-1 2322-1 2326-1
warnings.h: 8-1 11-1 15-1 23-1 30-1 38-1 47-1
weakrefobject.h: 58-1 60-1 62-1 65-1 67-1

PyAnySet_Check [References: 2] Defined? True

#define PyAnySet_Check(ob) (Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type \
|| PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || PyType_IsSubtype(Py_TYPE(ob), \
&PyFrozenSet_Type))

defined @ /Users/paulross/dev/Python-3.6.2/Include/setobject.h#94

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3892-10 4100-9

I depend on these macros:

PyAnySet_Check Py_TYPE

PyAnySet_CheckExact [References: 1] Defined? True

#define PyAnySet_CheckExact(ob) (Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type) \

defined @ /Users/paulross/dev/Python-3.6.2/Include/setobject.h#92

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1947-13

I depend on these macros:

PyAnySet_CheckExact Py_TYPE

PyDescr_COMMON [References: 4] Defined? True

#define PyDescr_COMMON PyDescrObject d_common

defined @ /Users/paulross/dev/Python-3.6.2/Include/descrobject.h#48

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ descrobject.h: 54-5 59-5 64-5 69-5

PyDictItems_Check [References: 3] Defined? True

#define PyDictItems_Check(op) PyObject_TypeCheck(op, &PyDictItems_Type)

defined @ /Users/paulross/dev/Python-3.6.2/Include/dictobject.h#62

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3889-5 3892-36 4100-34

I depend on these macros:

PyDictItems_Check PyObject_TypeCheck Py_TYPE

These macros depend on me:

PyDictItems_Check PyDictViewSet_Check

PyDictKeys_Check [References: 3] Defined? True

#define PyDictKeys_Check(op) PyObject_TypeCheck(op, &PyDictKeys_Type)

defined @ /Users/paulross/dev/Python-3.6.2/Include/dictobject.h#61

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3889-5 3892-36 4100-34

I depend on these macros:

PyDictKeys_Check PyObject_TypeCheck Py_TYPE

These macros depend on me:

PyDictKeys_Check PyDictViewSet_Check

PyDictViewSet_Check [References: 3] Defined? True

#define PyDictViewSet_Check(op) (PyDictKeys_Check(op) || PyDictItems_Check(op))

defined @ /Users/paulross/dev/Python-3.6.2/Include/dictobject.h#65

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3889-5 3892-36 4100-34

I depend on these macros:

PyDictViewSet_Check PyDictItems_Check PyObject_TypeCheck Py_TYPE
PyDictKeys_Check PyObject_TypeCheck Py_TYPE

PyDict_Check [References: 26] Defined? True

#define PyDict_Check(op) PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)

defined @ /Users/paulross/dev/Python-3.6.2/Include/dictobject.h#58

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1011-5 1410-10 1459-10 1483-10 1559-10 1584-10 1643-10 1684-10 1729-10 1771-10 1843-5 2396-5 2479-23 2484-9 2635-23 2677-24 2687-24 2697-24 2707-24 2772-10 2772-30 2860-10 3483-5 3568-5 3652-5 3831-10

I depend on these macros:

PyDict_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_DICT_SUBCLASS
Py_TYPE

PyDict_CheckExact [References: 7] Defined? True

#define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)

defined @ /Users/paulross/dev/Python-3.6.2/Include/dictobject.h#60

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 265-9 1039-10 1327-10 1926-9 1927-13 1974-9 2139-14

I depend on these macros:

PyDict_CheckExact Py_TYPE

PyDict_MAXFREELIST [References: 4] Defined? True

#define PyDict_MAXFREELIST 80

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#249

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 251-32 253-41 563-58 2024-19

PyDict_MINSIZE [References: 8] Defined? True

#define PyDict_MINSIZE 8

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#110

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 512-5 531-17 563-26 623-46 1259-20 1378-19 3247-34 4344-46

PyDoc_STR [References: 18] Defined? True

#define PyDoc_STR(str) str

defined @ /Users/paulross/dev/Python-3.6.2/Include/pymacro.h#73

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ clinic/ dictobject.c.h: 5-1 35-1
dictobject.c: 3107-1 3109-1 3112-1 3115-1 3118-1 3122-1 3126-1 3132-1 3135-1 3143-1 3145-1 3147-1 3268-1 3457-1 3463-1 4136-1

These macros depend on me:

PyDoc_STR PyDoc_STRVAR

PyDoc_STRVAR [References: 18] Defined? True

#define PyDoc_STRVAR(name,str) PyDoc_VAR(name) = PyDoc_STR(str)

defined @ /Users/paulross/dev/Python-3.6.2/Include/pymacro.h#71

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ clinic/ dictobject.c.h: 5-1 35-1
dictobject.c: 3107-1 3109-1 3112-1 3115-1 3118-1 3122-1 3126-1 3132-1 3135-1 3143-1 3145-1 3147-1 3268-1 3457-1 3463-1 4136-1

I depend on these macros:

PyDoc_STRVAR PyDoc_STR
PyDoc_VAR

PyDoc_VAR [References: 18] Defined? True

#define PyDoc_VAR(name) static char name[]

defined @ /Users/paulross/dev/Python-3.6.2/Include/pymacro.h#70

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ clinic/ dictobject.c.h: 5-1 35-1
dictobject.c: 3107-1 3109-1 3112-1 3115-1 3118-1 3122-1 3126-1 3132-1 3135-1 3143-1 3145-1 3147-1 3268-1 3457-1 3463-1 4136-1

These macros depend on me:

PyDoc_VAR PyDoc_STRVAR

PyErr_BadInternalCall [References: 14] Defined? True

#define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__)

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyerrors.h#324

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1460-9 1484-9 1560-9 1585-9 1644-9 1685-9 2480-9 2636-9 2678-9 2688-9 2698-9 2708-9 2861-9 3828-9

PyException_HEAD [References: 7] Defined? True

#define PyException_HEAD PyObject_HEAD PyObject *dict; PyObject *args; PyObject *traceback; \
PyObject *context; PyObject *cause; char suppress_context;

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyerrors.h#11

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyerrors.h: 17-5 21-5 31-5 38-5 47-5 52-5 64-5

I depend on these macros:

PyException_HEAD PyObject_HEAD

PyList_Check [References: 3] Defined? True

#define PyList_Check(op) PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)

defined @ /Users/paulross/dev/Python-3.6.2/Include/listobject.h#48

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2425-13 2435-15 2436-17

I depend on these macros:

PyList_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_LIST_SUBCLASS
Py_TYPE

These macros depend on me:

PyList_Check PySequence_Fast_GET_ITEM
PySequence_Fast_GET_SIZE
PySequence_Fast_ITEMS

PyList_GET_ITEM [References: 3] Defined? True

#define PyList_GET_ITEM(op,i) (((PyListObject *)(op))->ob_item[i])

defined @ /Users/paulross/dev/Python-3.6.2/Include/listobject.h#72

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2314-20 2435-15 2436-17

These macros depend on me:

PyList_GET_ITEM PySequence_Fast_GET_ITEM

PyList_GET_SIZE [References: 1] Defined? True

#define PyList_GET_SIZE(op) Py_SIZE(op)

defined @ /Users/paulross/dev/Python-3.6.2/Include/listobject.h#74

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2425-13

I depend on these macros:

PyList_GET_SIZE Py_SIZE

These macros depend on me:

PyList_GET_SIZE PySequence_Fast_GET_SIZE

PyList_SET_ITEM [References: 3] Defined? True

#define PyList_SET_ITEM(op,i,v) (((PyListObject *)(op))->ob_item[i] = (v))

defined @ /Users/paulross/dev/Python-3.6.2/Include/listobject.h#73

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2211-13 2256-13 2289-9

PyLong_SHIFT [References: 1] Defined? True

#define PyLong_SHIFT 30

defined @ /Users/paulross/dev/Python-3.6.2/Include/longintrepr.h#49

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ longintrepr.h: 66-5

These macros depend on me:

PyLong_SHIFT PyLong_BASE PyLong_MASK

PyMODINIT_FUNC [References: 2] Defined? True

#define PyMODINIT_FUNC PyObject*

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#652

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ import.h: 13-1
pyport.h: 649-1

PyMem_FREE [References: 5] Defined? True

#define PyMem_FREE(p) PyMem_Free(p)

defined @ /Users/paulross/dev/Python-3.6.2/Include/pymem.h#125

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 589-13 1307-13 1747-9 2016-13 2649-13

These macros depend on me:

PyMem_FREE PyMem_DEL
free_values

PyMem_MALLOC [References: 3] Defined? True

#define PyMem_MALLOC(n) PyMem_Malloc(n)

defined @ /Users/paulross/dev/Python-3.6.2/Include/pymem.h#123

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 609-14 1345-18 2644-21

These macros depend on me:

PyMem_MALLOC PyMem_NEW new_values

PyMem_NEW [References: 3] Defined? True

#define PyMem_NEW(type,n) ( ((size_t)(n) > PY_SSIZE_T_MAX / sizeof(type)) ? NULL : ( (type \
*) PyMem_MALLOC((n) * sizeof(type)) ) )

defined @ /Users/paulross/dev/Python-3.6.2/Include/pymem.h#140

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 609-14 1345-18 2644-21

I depend on these macros:

PyMem_NEW NULL __DARWIN_NULL
PY_SSIZE_T_MAX
PyMem_MALLOC

These macros depend on me:

PyMem_NEW new_values

PyModule_Create2 [References: 1] Defined? True

#define PyModule_Create2 PyModule_Create2TraceRefs

defined @ /Users/paulross/dev/Python-3.6.2/Include/modsupport.h#146

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ modsupport.h: 150-24

These macros depend on me:

PyModule_Create2 PyModule_Create

PyModule_FromDefAndSpec2 [References: 1] Defined? True

#define PyModule_FromDefAndSpec2 PyModule_FromDefAndSpec2TraceRefs

defined @ /Users/paulross/dev/Python-3.6.2/Include/modsupport.h#147

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ modsupport.h: 163-24

These macros depend on me:

PyModule_FromDefAndSpec2 PyModule_FromDefAndSpec

PyObject_FREE [References: 3] Defined? True

#define PyObject_FREE PyObject_Free

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#119

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 269-9 567-5 1313-25

PyObject_GC_New [References: 4] Defined? True

#define PyObject_GC_New(type,typeobj) ( (type *) _PyObject_GC_New(typeobj) )

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#340

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 586-14 2647-22 3411-10 3838-10

PyObject_HEAD [References: 29] Defined? True

#define PyObject_HEAD PyObject ob_base;

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#83

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ cellobject.h: 10-2
classobject.h: 13-5 38-2
code.h: 22-5
complexobject.h: 34-5
descrobject.h: 42-5
dictobject.h: 24-5 44-5
floatobject.h: 16-5
funcobject.h: 22-5
genobject.h: 32-5 52-5 69-5
memoryobject.h: 43-5
methodobject.h: 92-5
moduleobject.h: 44-3
pyerrors.h: 17-5 21-5 31-5 38-5 47-5 52-5 64-5
setobject.h: 43-5
sliceobject.h: 23-5
traceback.h: 15-5
unicodeobject.h: 275-5
weakrefobject.h: 17-5
Objects/ dictobject.c: 3399-5

These macros depend on me:

PyObject_HEAD PyException_HEAD

PyObject_HEAD_INIT [References: 7] Defined? True

#define PyObject_HEAD_INIT(type) { _PyObject_EXTRA_INIT 1, type },

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#85

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3280-5 3527-5 3611-5 3715-5 4146-5 4236-5 4301-5

I depend on these macros:

PyObject_HEAD_INIT _PyObject_EXTRA_INIT

These macros depend on me:

PyObject_HEAD_INIT PyModuleDef_HEAD_INIT
PyVarObject_HEAD_INIT

PyObject_IS_GC [References: 10] Defined? True

#define PyObject_IS_GC(o) (PyType_IS_GC(Py_TYPE(o)) && (Py_TYPE(o)->tp_is_gc == NULL || \
Py_TYPE(o)->tp_is_gc(o)))

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#243

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1049-17 1050-17 1059-17 1060-17 1130-5 2905-9 2926-9

I depend on these macros:

PyObject_IS_GC NULL __DARWIN_NULL
PyType_IS_GC PyType_HasFeature
Py_TPFLAGS_HAVE_GC
Py_TYPE

These macros depend on me:

PyObject_IS_GC _PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING

PyObject_MALLOC [References: 1] Defined? True

#define PyObject_MALLOC PyObject_Malloc

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#117

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 535-14

These macros depend on me:

PyObject_MALLOC PyObject_NEW
PyObject_NEW_VAR

PyObject_TypeCheck [References: 6] Defined? True

#define PyObject_TypeCheck(ob,tp) (Py_TYPE(ob) == (tp) || PyType_IsSubtype(Py_TYPE(ob), \
(tp)))

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#486

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3889-5 3892-36 4100-34

I depend on these macros:

PyObject_TypeCheck Py_TYPE

These macros depend on me:

PyObject_TypeCheck PyByteArray_Check PyByteArray_AS_STRING
PyByteArray_GET_SIZE
PyComplex_Check
PyDictItems_Check PyDictViewSet_Check
PyDictKeys_Check PyDictViewSet_Check
PyDictValues_Check
PyFloat_Check
PyGen_Check
PyModule_Check
PyODict_Check
PyWeakref_CheckRef PyWeakref_Check

PyObject_VAR_HEAD [References: 7] Defined? True

#define PyObject_VAR_HEAD PyVarObject ob_base;

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#98

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ bytearrayobject.h: 24-5
bytesobject.h: 32-5
listobject.h: 24-5
longintrepr.h: 86-2
memoryobject.h: 58-5
object.h: 347-5
tupleobject.h: 26-5

PySequence_Fast_GET_ITEM [References: 2] Defined? True

#define PySequence_Fast_GET_ITEM(o,i) (PyList_Check(o) ? PyList_GET_ITEM(o, i) : \
PyTuple_GET_ITEM(o, i))

defined @ /Users/paulross/dev/Python-3.6.2/Include/abstract.h#1149

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2435-15 2436-17

I depend on these macros:

PySequence_Fast_GET_ITEM PyList_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_LIST_SUBCLASS
Py_TYPE
PyList_GET_ITEM
PyTuple_GET_ITEM

PySequence_Fast_GET_SIZE [References: 1] Defined? True

#define PySequence_Fast_GET_SIZE(o) (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o)) \

defined @ /Users/paulross/dev/Python-3.6.2/Include/abstract.h#1142

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2425-13

I depend on these macros:

PySequence_Fast_GET_SIZE PyList_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_LIST_SUBCLASS
Py_TYPE
PyList_GET_SIZE Py_SIZE
PyTuple_GET_SIZE Py_SIZE

PySet_GET_SIZE [References: 1] Defined? True

#define PySet_GET_SIZE(so) (((PySetObject *)(so))->used)

defined @ /Users/paulross/dev/Python-3.6.2/Include/setobject.h#67

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1953-32

PySet_MINSIZE [References: 1] Defined? True

#define PySet_MINSIZE 8

defined @ /Users/paulross/dev/Python-3.6.2/Include/setobject.h#24

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ setobject.h: 63-25

PyThreadState_GET [References: 1] Defined? True

#define PyThreadState_GET() PyThreadState_Get()

defined @ /Users/paulross/dev/Python-3.6.2/Include/pystate.h#227

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2010-5

These macros depend on me:

PyThreadState_GET Py_ALLOW_RECURSION
Py_END_ALLOW_RECURSION
Py_EnterRecursiveCall
Py_LeaveRecursiveCall
Py_TRASHCAN_SAFE_BEGIN

PyTrash_UNWIND_LEVEL [References: 1] Defined? True

#define PyTrash_UNWIND_LEVEL 50

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#1049

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2010-5

These macros depend on me:

PyTrash_UNWIND_LEVEL Py_TRASHCAN_SAFE_BEGIN

PyTuple_Check [References: 1] Defined? True

#define PyTuple_Check(op) PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)

defined @ /Users/paulross/dev/Python-3.6.2/Include/tupleobject.h#39

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 4202-10

I depend on these macros:

PyTuple_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_TUPLE_SUBCLASS
Py_TYPE

PyTuple_CheckExact [References: 10] Defined? True

#define PyTuple_CheckExact(op) (Py_TYPE(op) == &PyTuple_Type)

defined @ /Users/paulross/dev/Python-3.6.2/Include/tupleobject.h#41

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1049-17 1050-17 1059-17 1060-17 1130-5 2905-9 2926-9

I depend on these macros:

PyTuple_CheckExact Py_TYPE

These macros depend on me:

PyTuple_CheckExact _PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING

PyTuple_GET_ITEM [References: 6] Defined? True

#define PyTuple_GET_ITEM(op,i) (((PyTupleObject *)(op))->ob_item[i])

defined @ /Users/paulross/dev/Python-3.6.2/Include/tupleobject.h#58

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2435-15 2436-17 3691-28 3692-30 4204-11 4205-13

These macros depend on me:

PyTuple_GET_ITEM PySequence_Fast_GET_ITEM
PyStructSequence_GET_ITEM

PyTuple_GET_SIZE [References: 2] Defined? True

#define PyTuple_GET_SIZE(op) Py_SIZE(op)

defined @ /Users/paulross/dev/Python-3.6.2/Include/tupleobject.h#59

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2425-13 4202-32

I depend on these macros:

PyTuple_GET_SIZE Py_SIZE

These macros depend on me:

PyTuple_GET_SIZE PyCode_GetNumFree
PySequence_Fast_GET_SIZE

PyTuple_SET_ITEM [References: 8] Defined? True

#define PyTuple_SET_ITEM(op,i,v) (((PyTupleObject *)(op))->ob_item[i] = v)

defined @ /Users/paulross/dev/Python-3.6.2/Include/tupleobject.h#62

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2316-13 2318-13 3019-5 3020-5 3693-9 3694-9 3703-9 3704-9

These macros depend on me:

PyTuple_SET_ITEM PyStructSequence_SET_ITEM

PyType_FastSubclass [References: 44] Defined? True

#define PyType_FastSubclass(t,f) PyType_HasFeature(t,f)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#674

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1011-5 1016-14 1410-10 1459-10 1483-10 1559-10 1584-10 1643-10 1684-10 1729-10 1771-10 1843-5 2396-5 2425-13 2435-15 2436-17 2479-23 2484-9 2635-23 2677-24 2687-24 2697-24 2707-24 2772-10 2772-30 2860-10 3483-5 3568-5 3652-5 3831-10 4202-10
stringlib/ eq.h: 12-9 12-37 17-9 17-36 19-9 21-9 21-30 23-19 23-44 24-19 24-45

I depend on these macros:

PyType_FastSubclass PyType_HasFeature

These macros depend on me:

PyType_FastSubclass PyBytes_Check PyBytes_AS_STRING
PyBytes_GET_SIZE
PyDict_Check
PyExceptionClass_Check
PyExceptionInstance_Check
PyList_Check PySequence_Fast_GET_ITEM
PySequence_Fast_GET_SIZE
PySequence_Fast_ITEMS
PyLong_Check
PyTuple_Check
PyType_Check PyExceptionClass_Check
PyUnicode_Check PyUnicode_AS_UNICODE PyUnicode_AS_DATA
PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_GET_LENGTH
PyUnicode_GET_SIZE PyUnicode_GET_DATA_SIZE
PyUnicode_IS_ASCII PyUnicode_MAX_CHAR_VALUE
_PyUnicode_COMPACT_DATA PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_KIND PyUnicode_MAX_CHAR_VALUE
PyUnicode_READ_CHAR
PyUnicode_READY
PyUnicode_READ_CHAR

PyType_HasFeature [References: 54] Defined? True

#define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#672

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1011-5 1016-14 1049-17 1050-17 1059-17 1060-17 1130-5 1410-10 1459-10 1483-10 1559-10 1584-10 1643-10 1684-10 1729-10 1771-10 1843-5 2396-5 2425-13 2435-15 2436-17 2479-23 2484-9 2635-23 2677-24 2687-24 2697-24 2707-24 2772-10 2772-30 2860-10 2905-9 2926-9 3483-5 3568-5 3652-5 3831-10 4202-10
stringlib/ eq.h: 12-9 12-37 17-9 17-36 19-9 21-9 21-30 23-19 23-44 24-19 24-45

These macros depend on me:

PyType_HasFeature PyType_FastSubclass PyBytes_Check PyBytes_AS_STRING
PyBytes_GET_SIZE
PyDict_Check
PyExceptionClass_Check
PyExceptionInstance_Check
PyList_Check PySequence_Fast_GET_ITEM
PySequence_Fast_GET_SIZE
PySequence_Fast_ITEMS
PyLong_Check
PyTuple_Check
PyType_Check PyExceptionClass_Check
PyUnicode_Check PyUnicode_AS_UNICODE PyUnicode_AS_DATA
PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_GET_LENGTH
PyUnicode_GET_SIZE PyUnicode_GET_DATA_SIZE
PyUnicode_IS_ASCII PyUnicode_MAX_CHAR_VALUE
_PyUnicode_COMPACT_DATA PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_KIND PyUnicode_MAX_CHAR_VALUE
PyUnicode_READ_CHAR
PyUnicode_READY
PyUnicode_READ_CHAR
PyType_IS_GC PyObject_IS_GC _PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING

PyType_IS_GC [References: 10] Defined? True

#define PyType_IS_GC(t) PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#240

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1049-17 1050-17 1059-17 1060-17 1130-5 2905-9 2926-9

I depend on these macros:

PyType_IS_GC PyType_HasFeature
Py_TPFLAGS_HAVE_GC

These macros depend on me:

PyType_IS_GC PyObject_IS_GC _PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING

PyUnicode_1BYTE_DATA [References: 2] Defined? True

#define PyUnicode_1BYTE_DATA(op) ((Py_UCS1*)PyUnicode_DATA(op))

defined @ /Users/paulross/dev/Python-3.6.2/Include/unicodeobject.h#451

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ stringlib/ eq.h: 23-19 23-44

I depend on these macros:

PyUnicode_1BYTE_DATA PyUnicode_DATA PyUnicode_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_UNICODE_SUBCLASS
Py_TYPE
PyUnicode_IS_COMPACT
_PyUnicode_COMPACT_DATA PyUnicode_IS_ASCII PyUnicode_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_UNICODE_SUBCLASS
Py_TYPE
PyUnicode_IS_READY
assert
_PyUnicode_NONCOMPACT_DATA assert
assert

PyUnicode_Check [References: 14] Defined? True

#define PyUnicode_Check(op) PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_UNICODE_SUBCLASS) \

defined @ /Users/paulross/dev/Python-3.6.2/Include/unicodeobject.h#366

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1016-14
stringlib/ eq.h: 12-9 12-37 17-9 17-36 19-9 21-9 21-30 23-19 23-44 24-19 24-45

I depend on these macros:

PyUnicode_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_UNICODE_SUBCLASS
Py_TYPE

These macros depend on me:

PyUnicode_Check PyUnicode_AS_UNICODE PyUnicode_AS_DATA
PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_GET_LENGTH
PyUnicode_GET_SIZE PyUnicode_GET_DATA_SIZE
PyUnicode_IS_ASCII PyUnicode_MAX_CHAR_VALUE
_PyUnicode_COMPACT_DATA PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_KIND PyUnicode_MAX_CHAR_VALUE
PyUnicode_READ_CHAR
PyUnicode_READY
PyUnicode_READ_CHAR

PyUnicode_CheckExact [References: 23] Defined? True

#define PyUnicode_CheckExact(op) (Py_TYPE(op) == &PyUnicode_Type)

defined @ /Users/paulross/dev/Python-3.6.2/Include/unicodeobject.h#368

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 815-10 891-10 906-5 926-9 955-10 973-5 993-9 1084-10 1120-35 1129-5 1225-5 1412-10 1487-10 1526-10 1566-10 1626-10 1904-10 2129-10 2807-10 2834-10 2865-10 2872-35 3189-10

I depend on these macros:

PyUnicode_CheckExact Py_TYPE

PyUnicode_DATA [References: 2] Defined? True

#define PyUnicode_DATA(op) (assert(PyUnicode_Check(op)), PyUnicode_IS_COMPACT(op) ? \
_PyUnicode_COMPACT_DATA(op) : _PyUnicode_NONCOMPACT_DATA(op))

defined @ /Users/paulross/dev/Python-3.6.2/Include/unicodeobject.h#471

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ stringlib/ eq.h: 23-19 23-44

I depend on these macros:

PyUnicode_DATA PyUnicode_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_UNICODE_SUBCLASS
Py_TYPE
PyUnicode_IS_COMPACT
_PyUnicode_COMPACT_DATA PyUnicode_IS_ASCII PyUnicode_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_UNICODE_SUBCLASS
Py_TYPE
PyUnicode_IS_READY
assert
_PyUnicode_NONCOMPACT_DATA assert
assert

These macros depend on me:

PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR

PyUnicode_GET_LENGTH [References: 4] Defined? True

#define PyUnicode_GET_LENGTH(op) (assert(PyUnicode_Check(op)), assert(PyUnicode_IS_READY(op)), \
((PyASCIIObject *)(op))->length)

defined @ /Users/paulross/dev/Python-3.6.2/Include/unicodeobject.h#534

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ stringlib/ eq.h: 17-9 17-36 19-9 24-19

I depend on these macros:

PyUnicode_GET_LENGTH PyUnicode_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_UNICODE_SUBCLASS
Py_TYPE
PyUnicode_IS_READY
assert

PyUnicode_IS_ASCII [References: 2] Defined? True

#define PyUnicode_IS_ASCII(op) (assert(PyUnicode_Check(op)), assert(PyUnicode_IS_READY(op)), \
((PyASCIIObject*)op)->state.ascii)

defined @ /Users/paulross/dev/Python-3.6.2/Include/unicodeobject.h#420

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ stringlib/ eq.h: 23-19 23-44

I depend on these macros:

PyUnicode_IS_ASCII PyUnicode_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_UNICODE_SUBCLASS
Py_TYPE
PyUnicode_IS_READY
assert

These macros depend on me:

PyUnicode_IS_ASCII PyUnicode_MAX_CHAR_VALUE
_PyUnicode_COMPACT_DATA PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR

PyUnicode_IS_COMPACT [References: 2] Defined? True

#define PyUnicode_IS_COMPACT(op) (((PyASCIIObject*)(op))->state.compact)

defined @ /Users/paulross/dev/Python-3.6.2/Include/unicodeobject.h#427

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ stringlib/ eq.h: 23-19 23-44

These macros depend on me:

PyUnicode_IS_COMPACT PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_IS_COMPACT_ASCII PyUnicode_WSTR_LENGTH PyUnicode_GET_SIZE PyUnicode_GET_DATA_SIZE

PyUnicode_IS_READY [References: 11] Defined? True

#define PyUnicode_IS_READY(op) (((PyASCIIObject*)op)->state.ready)

defined @ /Users/paulross/dev/Python-3.6.2/Include/unicodeobject.h#543

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ stringlib/ eq.h: 12-9 12-37 17-9 17-36 19-9 21-9 21-30 23-19 23-44 24-19 24-45

These macros depend on me:

PyUnicode_IS_READY PyUnicode_GET_LENGTH
PyUnicode_IS_ASCII PyUnicode_MAX_CHAR_VALUE
_PyUnicode_COMPACT_DATA PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_KIND PyUnicode_MAX_CHAR_VALUE
PyUnicode_READ_CHAR
PyUnicode_MAX_CHAR_VALUE
PyUnicode_READY
PyUnicode_READ_CHAR

PyUnicode_KIND [References: 3] Defined? True

#define PyUnicode_KIND(op) (assert(PyUnicode_Check(op)), assert(PyUnicode_IS_READY(op)), \
((PyASCIIObject *)(op))->state.kind)

defined @ /Users/paulross/dev/Python-3.6.2/Include/unicodeobject.h#456

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ stringlib/ eq.h: 21-9 21-30 24-45

I depend on these macros:

PyUnicode_KIND PyUnicode_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_UNICODE_SUBCLASS
Py_TYPE
PyUnicode_IS_READY
assert

These macros depend on me:

PyUnicode_KIND PyUnicode_MAX_CHAR_VALUE
PyUnicode_READ_CHAR

PyUnicode_READY [References: 2] Defined? True

#define PyUnicode_READY(op) (assert(PyUnicode_Check(op)), (PyUnicode_IS_READY(op) ? 0 : \
_PyUnicode_Ready((PyObject *)(op))))

defined @ /Users/paulross/dev/Python-3.6.2/Include/unicodeobject.h#549

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ stringlib/ eq.h: 12-9 12-37

I depend on these macros:

PyUnicode_READY PyUnicode_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_UNICODE_SUBCLASS
Py_TYPE
PyUnicode_IS_READY
assert

PyVarObject_HEAD_INIT [References: 7] Defined? True

#define PyVarObject_HEAD_INIT(type,size) { PyObject_HEAD_INIT(type) size },

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#89

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3280-5 3527-5 3611-5 3715-5 4146-5 4236-5 4301-5

I depend on these macros:

PyVarObject_HEAD_INIT PyObject_HEAD_INIT _PyObject_EXTRA_INIT

Py_CLEAR [References: 3] Defined? True

#define Py_CLEAR(op) do { PyObject *_py_tmp = (PyObject *)(op); if (_py_tmp != NULL) { \
(op) = NULL; Py_DECREF(_py_tmp); } } while (0)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#831

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1746-13 2095-9 2096-9

I depend on these macros:

Py_CLEAR NULL __DARWIN_NULL
Py_DECREF _Py_CHECK_REFCNT
_Py_DEC_REFTOTAL
_Py_REF_DEBUG_COMMA

Py_DEBUG [References: 8] Defined? True

#define Py_DEBUG 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1252

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ Python.h: 58-13
object.h: 55-13
pyerrors.h: 107-13
pyhash.h: 81-1
pyport.h: 301-1
unicodeobject.h: 2308-13

Py_DECREF [References: 102] Defined? True

#define Py_DECREF(op) do { PyObject *_py_decref_tmp = (PyObject *)(op); if (_Py_DEC_REFTOTAL \
_Py_REF_DEBUG_COMMA --(_py_decref_tmp)->ob_refcnt != 0) _Py_CHECK_REFCNT(_py_decref_tmp) \
else _Py_Dealloc(_py_decref_tmp); } while (0)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#787

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 560-9 561-9 726-13 776-13 1181-9 1182-9 1193-5 1197-5 1198-5 1614-5 1615-5 1746-13 1885-5 1935-17 1941-21 1954-17 1960-21 1970-9 1977-13 1984-13 1992-5 1996-5 1997-5 2014-17 2080-9 2091-9 2095-9 2096-9 2110-5 2111-5 2147-17 2194-9 2238-9 2286-13 2295-9 2442-17 2443-17 2447-9 2448-9 2449-9 2450-9 2457-5 2458-5 2461-5 2524-25 2525-25 2532-21 2533-21 2536-17 2537-17 2565-9 2573-21 2574-21 2577-17 2582-17 2583-17 2587-13 2588-13 2590-17 2594-9 2670-5 2750-17 2751-17 2757-13 2758-13 2991-9 2999-13 3249-9 3346-5 3370-5 3392-5 3422-13 3435-5 3436-5 3522-5 3606-5 3696-9 3697-9 3710-5 3775-17 3776-17 3777-17 3780-13 3784-5 3788-9 3803-5 3873-9 3877-5 3952-5 3998-9 4002-5 4018-9 4022-5 4038-9 4042-5 4058-9 4062-5 4119-9 4121-13 4126-13 4130-5 4214-5

I depend on these macros:

Py_DECREF _Py_CHECK_REFCNT
_Py_DEC_REFTOTAL
_Py_REF_DEBUG_COMMA

These macros depend on me:

Py_DECREF Py_CLEAR
Py_SETREF
Py_XDECREF Py_XSETREF

Py_DEPRECATED [References: 4] Defined? True

#define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#496

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ unicodeobject.h: 1192-7 1205-7 1231-7 1253-7

Py_EMPTY_KEYS [References: 2] Defined? True

#define Py_EMPTY_KEYS &empty_keys_struct

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#433

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1737-5 1738-19

Py_EQ [References: 7] Defined? True

#define Py_EQ 2

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#929

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 725-59 775-59 2756-56 2775-20 2779-30 3906-10 4213-53

Py_False [References: 8] Defined? True

#define Py_False ((PyObject *) &_Py_FalseStruct)

defined @ /Users/paulross/dev/Python-3.6.2/Include/boolobject.h#21

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2779-50 2817-9 3936-29 4095-13 4127-13

These macros depend on me:

Py_False Py_RETURN_FALSE

Py_GCC_ATTRIBUTE [References: 6] Defined? True

#define Py_GCC_ATTRIBUTE(x) __attribute__(x)

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#700

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ bytesobject.h: 55-5 57-5
pyerrors.h: 498-25 500-25
sysmodule.h: 22-18 24-18

Py_GE [References: 1] Defined? True

#define Py_GE 5

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#932

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3928-10

Py_GT [References: 1] Defined? True

#define Py_GT 4

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#931

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3923-10

Py_INCREF [References: 51] Defined? True

#define Py_INCREF(op) ( _Py_INC_REFTOTAL _Py_REF_DEBUG_COMMA ((PyObject *)(op))->ob_refcnt++) \

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#783

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 724-13 774-13 1118-5 1119-5 1288-17 1848-13 1859-13 1898-13 2067-9 2068-9 2157-5 2210-13 2255-13 2315-13 2317-13 2373-9 2437-9 2438-9 2518-17 2519-17 2658-13 2741-13 2743-13 2783-5 2817-9 2818-5 2847-5 2903-9 2904-9 2925-9 2949-5 2957-5 3414-5 3517-5 3601-5 3687-5 3688-5 3695-9 3760-5 3841-5 3893-9 3937-5 3962-9 4093-13 4095-13 4127-13 4133-5 4190-9 4212-5 4280-9 4374-5

I depend on these macros:

Py_INCREF _Py_INC_REFTOTAL
_Py_REF_DEBUG_COMMA

These macros depend on me:

Py_INCREF Py_RETURN_FALSE
Py_RETURN_NONE
Py_RETURN_NOTIMPLEMENTED
Py_RETURN_TRUE
Py_XINCREF

Py_LE [References: 1] Defined? True

#define Py_LE 1

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#928

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3918-12

Py_LL [References: 1] Defined? True

#define Py_LL(x) x##LL

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#720

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 720-1

These macros depend on me:

Py_LL Py_ULL

Py_LOCAL_INLINE [References: 1] Defined? True

#define Py_LOCAL_INLINE(type) static inline type

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#178

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ stringlib/ eq.h: 6-1

I depend on these macros:

Py_LOCAL_INLINE inline

Py_LT [References: 1] Defined? True

#define Py_LT 0

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#927

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3913-10

Py_MEMBER_SIZE [References: 3] Defined? True

#define Py_MEMBER_SIZE(type,member) sizeof(((type *)0)->member)

defined @ /Users/paulross/dev/Python-3.6.2/Include/pymacro.h#22

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 536-32 3086-19 3096-15

Py_NAN [References: 1] Defined? True

#define Py_NAN (Py_HUGE_VAL * 0.)

defined @ /Users/paulross/dev/Python-3.6.2/Include/pymath.h#160

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ floatobject.h: 27-1

I depend on these macros:

Py_NAN Py_HUGE_VAL HUGE_VAL

These macros depend on me:

Py_NAN Py_RETURN_NAN

Py_NE [References: 3] Defined? True

#define Py_NE 3

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#930

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2775-35 3905-10 3909-19

Py_None [References: 15] Defined? True

#define Py_None (&_Py_NoneStruct)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#910

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ clinic/ dictobject.c.h: 22-23
dictobject.c: 2373-9 2825-25 2943-28 2957-5 3420-41 3420-50 3962-9 4190-9 4280-9

These macros depend on me:

Py_None PyWeakref_GET_OBJECT
Py_RETURN_NONE

Py_NotImplemented [References: 4] Defined? True

#define Py_NotImplemented (&_Py_NotImplementedStruct)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#920

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2773-15 2782-15 3893-9

These macros depend on me:

Py_NotImplemented Py_RETURN_NOTIMPLEMENTED

Py_OBJECT_H [References: 1] Defined? True

#define Py_OBJECT_H

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#2

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ object.h: 2-1

Py_PYCONFIG_H [References: 3] Defined? True

#define Py_PYCONFIG_H

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#6

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 6-1

Py_PYMEM_H [References: 1] Defined? True

#define Py_PYMEM_H

defined @ /Users/paulross/dev/Python-3.6.2/Include/pymem.h#6

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymem.h: 6-1

Py_PYPORT_H [References: 1] Defined? True

#define Py_PYPORT_H

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#2

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 2-1

Py_PYSTATE_H [References: 1] Defined? True

#define Py_PYSTATE_H

defined @ /Users/paulross/dev/Python-3.6.2/Include/pystate.h#6

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pystate.h: 6-1

Py_REFCNT [References: 1] Defined? True

#define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#117

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3690-9

These macros depend on me:

Py_REFCNT PyWeakref_GET_OBJECT

Py_REF_DEBUG [References: 5] Defined? True

#define Py_REF_DEBUG

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#61

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ object.h: 64-40 715-1 60-40

Py_RETURN_FALSE [References: 3] Defined? True

#define Py_RETURN_FALSE return Py_INCREF(Py_False), Py_False

defined @ /Users/paulross/dev/Python-3.6.2/Include/boolobject.h#26

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2817-9 4095-13 4127-13

I depend on these macros:

Py_RETURN_FALSE Py_False
Py_INCREF _Py_INC_REFTOTAL
_Py_REF_DEBUG_COMMA

Py_RETURN_NONE [References: 5] Defined? True

#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#913

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2373-9 2957-5 3962-9 4190-9 4280-9

I depend on these macros:

Py_RETURN_NONE Py_INCREF _Py_INC_REFTOTAL
_Py_REF_DEBUG_COMMA
Py_None

Py_RETURN_NOTIMPLEMENTED [References: 1] Defined? True

#define Py_RETURN_NOTIMPLEMENTED return Py_INCREF(Py_NotImplemented), Py_NotImplemented

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#923

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3893-9

I depend on these macros:

Py_RETURN_NOTIMPLEMENTED Py_INCREF _Py_INC_REFTOTAL
_Py_REF_DEBUG_COMMA
Py_NotImplemented

Py_RETURN_TRUE [References: 3] Defined? True

#define Py_RETURN_TRUE return Py_INCREF(Py_True), Py_True

defined @ /Users/paulross/dev/Python-3.6.2/Include/boolobject.h#25

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2818-5 4093-13 4133-5

I depend on these macros:

Py_RETURN_TRUE Py_INCREF _Py_INC_REFTOTAL
_Py_REF_DEBUG_COMMA
Py_True

Py_SAFE_DOWNCAST [References: 1] Defined? True

#define Py_SAFE_DOWNCAST(VALUE,WIDE,NARROW) (assert((WIDE)(NARROW)(VALUE) == (VALUE)), \
(NARROW)(VALUE))

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#301

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2462-12

I depend on these macros:

Py_SAFE_DOWNCAST assert

Py_SIZE [References: 3] Defined? True

#define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#119

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2425-13 4202-32

These macros depend on me:

Py_SIZE PyByteArray_AS_STRING
PyByteArray_GET_SIZE
PyBytes_GET_SIZE
PyList_GET_SIZE PySequence_Fast_GET_SIZE
PyObject_INIT_VAR
PyTuple_GET_SIZE PyCode_GetNumFree
PySequence_Fast_GET_SIZE

Py_TPFLAGS_BASETYPE [References: 1] Defined? True

#define Py_TPFLAGS_BASETYPE (1UL << 10)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#623

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3300-9

Py_TPFLAGS_DEFAULT [References: 7] Defined? True

#define Py_TPFLAGS_DEFAULT ( Py_TPFLAGS_HAVE_STACKLESS_EXTENSION | Py_TPFLAGS_HAVE_VERSION_TAG \
| 0)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#658

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3299-5 3547-5 3631-5 3735-5 4166-5 4256-5 4321-5

I depend on these macros:

Py_TPFLAGS_DEFAULT Py_TPFLAGS_HAVE_STACKLESS_EXTENSION
Py_TPFLAGS_HAVE_VERSION_TAG

Py_TPFLAGS_DICT_SUBCLASS [References: 27] Defined? True

#define Py_TPFLAGS_DICT_SUBCLASS (1UL << 29)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#654

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1011-5 1410-10 1459-10 1483-10 1559-10 1584-10 1643-10 1684-10 1729-10 1771-10 1843-5 2396-5 2479-23 2484-9 2635-23 2677-24 2687-24 2697-24 2707-24 2772-10 2772-30 2860-10 3300-31 3483-5 3568-5 3652-5 3831-10

These macros depend on me:

Py_TPFLAGS_DICT_SUBCLASS PyDict_Check

Py_TPFLAGS_HAVE_GC [References: 17] Defined? True

#define Py_TPFLAGS_HAVE_GC (1UL << 14)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#632

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1049-17 1050-17 1059-17 1060-17 1130-5 2905-9 2926-9 3299-26 3547-26 3631-26 3735-26 4166-26 4256-26 4321-26

These macros depend on me:

Py_TPFLAGS_HAVE_GC PyType_IS_GC PyObject_IS_GC _PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING

Py_TPFLAGS_HAVE_STACKLESS_EXTENSION [References: 7] Defined? True

#define Py_TPFLAGS_HAVE_STACKLESS_EXTENSION 0

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#638

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3299-5 3547-5 3631-5 3735-5 4166-5 4256-5 4321-5

These macros depend on me:

Py_TPFLAGS_HAVE_STACKLESS_EXTENSION Py_TPFLAGS_DEFAULT

Py_TPFLAGS_HAVE_VERSION_TAG [References: 7] Defined? True

#define Py_TPFLAGS_HAVE_VERSION_TAG (1UL << 18)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#642

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3299-5 3547-5 3631-5 3735-5 4166-5 4256-5 4321-5

These macros depend on me:

Py_TPFLAGS_HAVE_VERSION_TAG Py_TPFLAGS_DEFAULT

Py_TPFLAGS_HEAPTYPE [References: 2] Defined? True

#define Py_TPFLAGS_HEAPTYPE (1UL << 9)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#620

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 4366-29 4387-25

Py_TPFLAGS_LIST_SUBCLASS [References: 3] Defined? True

#define Py_TPFLAGS_LIST_SUBCLASS (1UL << 25)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#650

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2425-13 2435-15 2436-17

These macros depend on me:

Py_TPFLAGS_LIST_SUBCLASS PyList_Check PySequence_Fast_GET_ITEM
PySequence_Fast_GET_SIZE
PySequence_Fast_ITEMS

Py_TPFLAGS_TUPLE_SUBCLASS [References: 1] Defined? True

#define Py_TPFLAGS_TUPLE_SUBCLASS (1UL << 26)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#651

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 4202-10

These macros depend on me:

Py_TPFLAGS_TUPLE_SUBCLASS PyTuple_Check

Py_TPFLAGS_UNICODE_SUBCLASS [References: 14] Defined? True

#define Py_TPFLAGS_UNICODE_SUBCLASS (1UL << 28)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#653

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1016-14
stringlib/ eq.h: 12-9 12-37 17-9 17-36 19-9 21-9 21-30 23-19 23-44 24-19 24-45

These macros depend on me:

Py_TPFLAGS_UNICODE_SUBCLASS PyUnicode_Check PyUnicode_AS_UNICODE PyUnicode_AS_DATA
PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_GET_LENGTH
PyUnicode_GET_SIZE PyUnicode_GET_DATA_SIZE
PyUnicode_IS_ASCII PyUnicode_MAX_CHAR_VALUE
_PyUnicode_COMPACT_DATA PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_KIND PyUnicode_MAX_CHAR_VALUE
PyUnicode_READ_CHAR
PyUnicode_READY
PyUnicode_READ_CHAR

Py_TRACE_REFS [References: 8] Defined? True

#define Py_TRACE_REFS

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#56

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ modsupport.h: 143-2
object.h: 60-13 70-1 755-1 55-35

Py_TRASHCAN_SAFE_BEGIN [References: 1] Defined? True

#define Py_TRASHCAN_SAFE_BEGIN(op) do { PyThreadState *_tstate = PyThreadState_GET(); if \
(_tstate->trash_delete_nesting < PyTrash_UNWIND_LEVEL) { ++_tstate->trash_delete_nesting; \

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#1051

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2010-5

I depend on these macros:

Py_TRASHCAN_SAFE_BEGIN PyThreadState_GET
PyTrash_UNWIND_LEVEL

Py_TRASHCAN_SAFE_END [References: 1] Defined? True

#define Py_TRASHCAN_SAFE_END(op) --_tstate->trash_delete_nesting; if (_tstate->trash_delete_later \
&& _tstate->trash_delete_nesting <= 0) _PyTrash_thread_destroy_chain(); } else \
_PyTrash_thread_deposit_object((PyObject*)op); } while (0);

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#1057

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2028-5

Py_TYPE [References: 145] Defined? True

#define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#118

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 265-9 582-9 815-10 891-10 906-5 926-9 955-10 973-5 993-9 1011-5 1016-14 1039-10 1049-17 1050-17 1059-17 1060-17 1084-10 1120-35 1129-5 1130-5 1225-5 1327-10 1410-10 1412-10 1459-10 1483-10 1487-10 1526-10 1559-10 1566-10 1584-10 1626-10 1643-10 1684-10 1729-10 1771-10 1843-5 1904-10 1926-9 1927-13 1947-13 1974-9 2024-41 2027-9 2129-10 2139-14 2396-5 2425-13 2435-15 2436-17 2479-23 2484-9 2635-23 2677-24 2687-24 2697-24 2707-24 2772-10 2772-30 2807-10 2834-10 2860-10 2865-10 2872-35 2905-9 2926-9 3079-11 3189-10 3483-5 3568-5 3652-5 3765-13 3767-18 3769-18 3831-10 3889-5 3892-10 3892-36 3951-45 4100-9 4100-34 4202-10 4365-28
stringlib/ eq.h: 12-9 12-37 17-9 17-36 19-9 21-9 21-30 23-19 23-44 24-19 24-45

These macros depend on me:

Py_TYPE PyAnySet_Check
PyAnySet_CheckExact
PyAsyncGen_CheckExact
PyBool_Check
PyByteArray_CheckExact
PyBytes_Check PyBytes_AS_STRING
PyBytes_GET_SIZE
PyBytes_CheckExact
PyCFunction_Check
PyCallIter_Check
PyCapsule_CheckExact
PyCell_Check
PyCode_Check
PyComplex_CheckExact
PyCoro_CheckExact
PyDescr_IsData
PyDict_Check
PyDict_CheckExact
PyFloat_CheckExact
PyFrozenSet_Check
PyFrozenSet_CheckExact
PyFunction_Check
PyGen_CheckExact
PyHeapType_GET_MEMBERS
PyList_Check PySequence_Fast_GET_ITEM
PySequence_Fast_GET_SIZE
PySequence_Fast_ITEMS
PyList_CheckExact
PyLong_Check
PyLong_CheckExact
PyMemoryView_Check
PyModule_CheckExact
PyODict_CheckExact
PyObject_GET_WEAKREFS_LISTPTR
PyObject_INIT PyObject_INIT_VAR
PyObject_IS_GC _PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING
PyObject_TypeCheck PyByteArray_Check PyByteArray_AS_STRING
PyByteArray_GET_SIZE
PyComplex_Check
PyDictItems_Check PyDictViewSet_Check
PyDictKeys_Check PyDictViewSet_Check
PyDictValues_Check
PyFloat_Check
PyGen_Check
PyModule_Check
PyODict_Check
PyWeakref_CheckRef PyWeakref_Check
PyRange_Check
PySeqIter_Check
PySequence_ITEM
PySet_Check
PySlice_Check
PyTraceBack_Check
PyTuple_Check
PyTuple_CheckExact _PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING
PyType_Check PyExceptionClass_Check
PyType_CheckExact
PyUnicode_Check PyUnicode_AS_UNICODE PyUnicode_AS_DATA
PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_GET_LENGTH
PyUnicode_GET_SIZE PyUnicode_GET_DATA_SIZE
PyUnicode_IS_ASCII PyUnicode_MAX_CHAR_VALUE
_PyUnicode_COMPACT_DATA PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_KIND PyUnicode_MAX_CHAR_VALUE
PyUnicode_READ_CHAR
PyUnicode_READY
PyUnicode_READ_CHAR
PyUnicode_CheckExact
PyWeakref_CheckProxy PyWeakref_Check
PyWeakref_CheckRefExact

Py_True [References: 8] Defined? True

#define Py_True ((PyObject *) &_Py_TrueStruct)

defined @ /Users/paulross/dev/Python-3.6.2/Include/boolobject.h#22

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2779-40 2818-5 3936-19 4093-13 4133-5

These macros depend on me:

Py_True Py_RETURN_TRUE

Py_ULL [References: 1] Defined? True

#define Py_ULL(x) Py_LL(x##U)

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyport.h#724

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 724-1

I depend on these macros:

Py_ULL Py_LL

Py_UNICODE_SIZE [References: 1] Defined? True

#define Py_UNICODE_SIZE SIZEOF_WCHAR_T

defined @ /Users/paulross/dev/Python-3.6.2/Include/unicodeobject.h#71

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ unicodeobject.h: 77-5

I depend on these macros:

Py_UNICODE_SIZE SIZEOF_WCHAR_T

These macros depend on me:

Py_UNICODE_SIZE PyUnicode_GET_DATA_SIZE

Py_VISIT [References: 7] Defined? True

#define Py_VISIT(op) do { if (op) { int vret = visit((PyObject *)(op), arg); if (vret) \
return vret; } } while (0)

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#351

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3042-17 3043-17 3050-17 3055-17 3443-5 3444-5 3810-5

Py_XDECREF [References: 12] Defined? True

#define Py_XDECREF(op) do { PyObject *_py_xdecref_tmp = (PyObject *)(op); if (_py_xdecref_tmp \
!= NULL) Py_DECREF(_py_xdecref_tmp); } while (0)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#848

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 560-9 561-9 2014-17 2110-5 2111-5 2457-5 2458-5 3435-5 3436-5 3777-17 3784-5 3803-5

I depend on these macros:

Py_XDECREF NULL __DARWIN_NULL
Py_DECREF _Py_CHECK_REFCNT
_Py_DEC_REFTOTAL
_Py_REF_DEBUG_COMMA

These macros depend on me:

Py_XDECREF Py_XSETREF

Py_XINCREF [References: 4] Defined? True

#define Py_XINCREF(op) do { PyObject *_py_xincref_tmp = (PyObject *)(op); if (_py_xincref_tmp \
!= NULL) Py_INCREF(_py_xincref_tmp); } while (0)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#841

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2658-13 2949-5 3760-5 4374-5

I depend on these macros:

Py_XINCREF NULL __DARWIN_NULL
Py_INCREF _Py_INC_REFTOTAL
_Py_REF_DEBUG_COMMA

SEEK_CUR [References: 1] Defined? True

#define SEEK_CUR 1

defined @ /usr/include/stdio.h#210

/ usr/ include/ stdio.h: 210-1

These macros depend on me:

SEEK_CUR L_INCR

SEEK_END [References: 1] Defined? True

#define SEEK_END 2

defined @ /usr/include/stdio.h#213

/ usr/ include/ stdio.h: 213-1

These macros depend on me:

SEEK_END L_XTND

SEEK_SET [References: 2] Defined? True

#define SEEK_SET 0

defined @ /usr/include/stdio.h#207

/ usr/ include/ stdio.h: 207-1
sys/ _types/ _seek_set.h: 31-1

These macros depend on me:

SEEK_SET L_SET

SIZEOF_INT [References: 4] Defined? True

#define SIZEOF_INT 4

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1280

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ longobject.h: 39-47 55-22
pyport.h: 138-25

SIZEOF_LONG [References: 11] Defined? True

#define SIZEOF_LONG 8

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1283

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ longobject.h: 58-24
pyport.h: 140-27 663-5 665-7 680-5 680-21

These macros depend on me:

SIZEOF_LONG LONG_BIT

SIZEOF_PID_T [References: 2] Defined? True

#define SIZEOF_PID_T 4

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1295

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ longobject.h: 39-14 39-31

SIZEOF_SIZE_T [References: 4] Defined? True

#define SIZEOF_SIZE_T 8

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1304

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 138-8 140-10

These macros depend on me:

SIZEOF_SIZE_T SIZEOF_PY_HASH_T
SIZEOF_PY_UHASH_T

SIZEOF_VOID_P [References: 12] Defined? True

#define SIZEOF_VOID_P 8

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1313

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ longobject.h: 55-5 58-7
objimpl.h: 160-7 160-28
pyhash.h: 22-5
pyport.h: 64-5
Objects/ dict-common.h: 67-5
dictobject.c: 290-5 328-5 360-5 522-5

These macros depend on me:

SIZEOF_VOID_P _PyObject_VAR_SIZE PyObject_NEW_VAR

SIZEOF_WCHAR_T [References: 2] Defined? True

#define SIZEOF_WCHAR_T 4

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1316

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ unicodeobject.h: 68-1 77-5

These macros depend on me:

SIZEOF_WCHAR_T Py_UNICODE_SIZE PyUnicode_GET_DATA_SIZE

S_IFLNK [References: 2] Defined? True

#define S_IFLNK 0120000

defined @ /usr/include/sys/_types/_s_ifmt.h#41

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 238-1

These macros depend on me:

S_IFLNK S_ISLNK

S_IFMT [References: 2] Defined? True

#define S_IFMT 0170000

defined @ /usr/include/sys/_types/_s_ifmt.h#35

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 233-1

These macros depend on me:

S_IFMT S_ISBLK
S_ISCHR
S_ISDIR
S_ISFIFO
S_ISLNK
S_ISREG
S_ISSOCK
S_ISWHT

S_ISCHR [References: 2] Defined? True

#define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)

defined @ /usr/include/sys/stat.h#250

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 252-1

I depend on these macros:

S_ISCHR S_IFCHR
S_IFMT

S_ISDIR [References: 2] Defined? True

#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)

defined @ /usr/include/sys/stat.h#251

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 248-1

I depend on these macros:

S_ISDIR S_IFDIR
S_IFMT

S_ISREG [References: 2] Defined? True

#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)

defined @ /usr/include/sys/stat.h#253

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 244-1

I depend on these macros:

S_ISREG S_IFMT
S_IFREG

TIME_WITH_SYS_TIME [References: 2] Defined? True

#define TIME_WITH_SYS_TIME 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1335

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 201-1

UCHAR_MAX [References: 2] Defined? True

#define UCHAR_MAX 255

defined @ /usr/include/i386/limits.h#62

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ Python.h: 14-1 17-5

USABLE_FRACTION [References: 9] Defined? True

#define USABLE_FRACTION(n) (((n) << 1)/3)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#385

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 445-25 515-14 608-12 1344-16 1373-19 2499-13 2642-27 3077-14 3098-15

USE_INLINE [References: 2] Defined? True

#define USE_INLINE 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1344

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 176-15

WCHAR_MAX [References: 4] Defined? True

#define WCHAR_MAX 0x7fffffff

defined @ /usr/include/stdint.h#166

/ usr/ include/ stdint.h: 175-7 163-1
wchar.h: 86-1

These macros depend on me:

WCHAR_MAX WCHAR_MIN

WCHAR_MIN [References: 2] Defined? True

#define WCHAR_MIN (-WCHAR_MAX-1)

defined @ /usr/include/stdint.h#178

/ usr/ include/ stdint.h: 175-1
wchar.h: 82-1

I depend on these macros:

WCHAR_MIN WCHAR_MAX

WITH_DOC_STRINGS [References: 1] Defined? True

#define WITH_DOC_STRINGS 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1375

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymacro.h: 73-1

WITH_PYMALLOC [References: 5] Defined? True

#define WITH_PYMALLOC 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1393

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ Python.h: 58-34 61-41
objimpl.h: 111-1
pymem.h: 25-1

WITH_THREAD [References: 7] Defined? True

#define WITH_THREAD 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1396

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ Python.h: 21-31
ceval.h: 180-1
import.h: 90-1
pystate.h: 196-1 236-1

_ALL_SOURCE [References: 3] Defined? True

#define _ALL_SOURCE 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1348

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1348-1

_BSD_I386__TYPES_H_ [References: 1] Defined? True

#define _BSD_I386__TYPES_H_

defined @ /usr/include/i386/_types.h#29

/ usr/ include/ i386/ _types.h: 29-1

_BSD_MACHINE__TYPES_H_ [References: 2] Defined? True

#define _BSD_MACHINE__TYPES_H_

defined @ /usr/include/machine/_types.h#29

/ usr/ include/ machine/ _types.h: 29-1

_CACHED_RUNES [References: 4] Defined? True

#define _CACHED_RUNES (1 <<8 )

defined @ /usr/include/runetype.h#54

/ usr/ include/ ctype.h: 169-26
runetype.h: 85-24 86-29 87-29

These macros depend on me:

_CACHED_RUNES _CRMASK

_CDEFS_H_ [References: 33] Defined? True

#define _CDEFS_H_

defined @ /usr/include/sys/cdefs.h#68

/ usr/ include/ sys/ _posix_availability.h: 29-1
_symbol_aliasing.h: 29-1
cdefs.h: 68-1

_CS_PATH [References: 2] Defined? True

#define _CS_PATH 1

defined @ /usr/include/sys/unistd.h#174

/ usr/ include/ unistd.h: 371-1

_CTYPE_A [References: 4] Defined? True

#define _CTYPE_A 0x00000100L

defined @ /usr/include/ctype.h#72

/ usr/ include/ _wctype.h: 68-24 74-24
ctype.h: 214-23 220-23

_CTYPE_B [References: 1] Defined? True

#define _CTYPE_B 0x00020000L

defined @ /usr/include/ctype.h#81

/ usr/ include/ ctype.h: 226-23

_CTYPE_C [References: 2] Defined? True

#define _CTYPE_C 0x00000200L

defined @ /usr/include/ctype.h#73

/ usr/ include/ _wctype.h: 80-24
ctype.h: 232-23

_CTYPE_D [References: 5] Defined? True

#define _CTYPE_D 0x00000400L

defined @ /usr/include/ctype.h#74

/ usr/ include/ _wctype.h: 68-33 92-25
ctype.h: 214-32 239-24 325-23

_CTYPE_G [References: 2] Defined? True

#define _CTYPE_G 0x00000800L

defined @ /usr/include/ctype.h#75

/ usr/ include/ _wctype.h: 98-24
ctype.h: 245-23

_CTYPE_H_ [References: 1] Defined? True

#define _CTYPE_H_

defined @ /usr/include/ctype.h#67

/ usr/ include/ ctype.h: 67-1

_CTYPE_I [References: 1] Defined? True

#define _CTYPE_I 0x00080000L

defined @ /usr/include/ctype.h#83

/ usr/ include/ ctype.h: 319-23

_CTYPE_L [References: 2] Defined? True

#define _CTYPE_L 0x00001000L

defined @ /usr/include/ctype.h#76

/ usr/ include/ _wctype.h: 104-24
ctype.h: 251-23

_CTYPE_P [References: 2] Defined? True

#define _CTYPE_P 0x00002000L

defined @ /usr/include/ctype.h#77

/ usr/ include/ _wctype.h: 116-24
ctype.h: 263-23

_CTYPE_Q [References: 1] Defined? True

#define _CTYPE_Q 0x00200000L

defined @ /usr/include/ctype.h#85

/ usr/ include/ ctype.h: 331-23

_CTYPE_R [References: 4] Defined? True

#define _CTYPE_R 0x00040000L

defined @ /usr/include/ctype.h#82

/ usr/ include/ _wctype.h: 110-24
ctype.h: 200-47 203-16 257-23

_CTYPE_S [References: 2] Defined? True

#define _CTYPE_S 0x00004000L

defined @ /usr/include/ctype.h#78

/ usr/ include/ _wctype.h: 122-24
ctype.h: 269-23

_CTYPE_SWM [References: 3] Defined? True

#define _CTYPE_SWM 0xe0000000L

defined @ /usr/include/ctype.h#90

/ usr/ include/ ctype.h: 200-36 201-12 202-17

_CTYPE_SWS [References: 1] Defined? True

#define _CTYPE_SWS 30

defined @ /usr/include/ctype.h#91

/ usr/ include/ ctype.h: 202-32

_CTYPE_T [References: 1] Defined? True

#define _CTYPE_T 0x00100000L

defined @ /usr/include/ctype.h#84

/ usr/ include/ ctype.h: 343-23

_CTYPE_U [References: 2] Defined? True

#define _CTYPE_U 0x00008000L

defined @ /usr/include/ctype.h#79

/ usr/ include/ _wctype.h: 128-24
ctype.h: 275-23

_CTYPE_X [References: 3] Defined? True

#define _CTYPE_X 0x00010000L

defined @ /usr/include/ctype.h#80

/ usr/ include/ _wctype.h: 134-25
ctype.h: 282-24 313-23

_CT_RUNE_T [References: 2] Defined? True

#define _CT_RUNE_T

defined @ /usr/include/sys/_types/_ct_rune_t.h#30

/ usr/ include/ sys/ _types/ _ct_rune_t.h: 30-1

_DARWIN_C_SOURCE [References: 171] Defined? True

#define _DARWIN_C_SOURCE 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1423

/ usr/ include/ ctype.h: 303-69 368-69
i386/ endian.h: 91-62
limits.h: 45-69 97-71
types.h: 95-69
mach/ i386/ _structs.h: 99-42 105-42 226-42
runetype.h: 44-42
stdio.h: 239-51 299-51 316-51
stdlib.h: 66-43 75-69 122-69 209-63 237-69
sys/ _endian.h: 115-66 138-62
_posix_availability.h: 32-14 38-14 44-14 50-14 56-14 62-14 68-14
_select.h: 41-13
_types/ _s_ifmt.h: 43-42 68-42
cdefs.h: 415-17 614-44
select.h: 106-42 117-13
signal.h: 78-69 90-44 111-44 118-44 205-42 218-42 231-42 238-42 250-42 305-42 330-42 343-42 372-42
stat.h: 90-42 101-42 194-42 217-42 230-42 256-42 296-42 368-42
syslimits.h: 76-42 85-42
termios.h: 78-42 82-42 86-42 93-42 98-42 104-42 112-42 131-42 141-42 175-42 202-42 216-42 235-42 242-42 248-42 252-42 256-42 284-42 307-42 342-42 349-42 364-42
time.h: 79-42 116-42 182-42 188-42
unistd.h: 94-42 124-42 131-42 152-42
wait.h: 128-42 155-43 177-43 253-44
time.h: 128-69
unistd.h: 452-53

_DEV_T [References: 2] Defined? True

#define _DEV_T

defined @ /usr/include/sys/_types/_dev_t.h#29

/ usr/ include/ sys/ _types/ _dev_t.h: 29-1

_ERRNO_T [References: 1] Defined? True

#define _ERRNO_T

defined @ /usr/include/sys/_types/_errno_t.h#29

/ usr/ include/ sys/ _types/ _errno_t.h: 29-1

_FD_SET [References: 1] Defined? True

#define _FD_SET

defined @ /usr/include/sys/_types/_fd_def.h#29

/ usr/ include/ sys/ _types/ _fd_def.h: 29-1

_FORTIFY_SOURCE [References: 21] Defined? True

#define _FORTIFY_SOURCE 2

defined @ /usr/include/_types.h#64

/ usr/ include/ _types.h: 61-1
secure/ _common.h: 28-13 28-33 29-7
stdio.h: 490-27
string.h: 184-27

_GID_T [References: 2] Defined? True

#define _GID_T

defined @ /usr/include/sys/_types/_gid_t.h#29

/ usr/ include/ sys/ _types/ _gid_t.h: 29-1

_GLIBCXX_BEGIN_NAMESPACE [References: 2] Defined? True

#define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_DEFAULT {

defined @ /usr/include/c++/4.2.1/bits/c++config.h#80

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 153-1
cstdarg: 58-1

I depend on these macros:

_GLIBCXX_BEGIN_NAMESPACE _GLIBCXX_VISIBILITY_DEFAULT

These macros depend on me:

_GLIBCXX_BEGIN_NAMESPACE _GLIBCXX_BEGIN_NESTED_NAMESPACE

_GLIBCXX_END_NAMESPACE [References: 2] Defined? True

#define _GLIBCXX_END_NAMESPACE }

defined @ /usr/include/c++/4.2.1/bits/c++config.h#81

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 165-1
cstdarg: 62-1

These macros depend on me:

_GLIBCXX_END_NAMESPACE _GLIBCXX_END_NESTED_NAMESPACE

_GLIBCXX_HAVE_ACOSF [References: 1] Defined? True

#define _GLIBCXX_HAVE_ACOSF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#215

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 983-50

_GLIBCXX_HAVE_ACOSL [References: 1] Defined? True

#define _GLIBCXX_HAVE_ACOSL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#218

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 988-50

_GLIBCXX_HAVE_ASINF [References: 1] Defined? True

#define _GLIBCXX_HAVE_ASINF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#221

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 993-50

_GLIBCXX_HAVE_ASINL [References: 1] Defined? True

#define _GLIBCXX_HAVE_ASINL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#224

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 998-50

_GLIBCXX_HAVE_ATAN2F [References: 1] Defined? True

#define _GLIBCXX_HAVE_ATAN2F 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#227

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1003-51

_GLIBCXX_HAVE_ATAN2L [References: 1] Defined? True

#define _GLIBCXX_HAVE_ATAN2L 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#230

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1008-51

_GLIBCXX_HAVE_ATANF [References: 1] Defined? True

#define _GLIBCXX_HAVE_ATANF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#233

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1013-50

_GLIBCXX_HAVE_ATANL [References: 1] Defined? True

#define _GLIBCXX_HAVE_ATANL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#236

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1018-50

_GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY [References: 1] Defined? True

#define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#50

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 52-5

_GLIBCXX_HAVE_CEILF [References: 1] Defined? True

#define _GLIBCXX_HAVE_CEILF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#239

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1023-50

_GLIBCXX_HAVE_CEILL [References: 1] Defined? True

#define _GLIBCXX_HAVE_CEILL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#242

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1028-50

_GLIBCXX_HAVE_COPYSIGN [References: 1] Defined? True

#define _GLIBCXX_HAVE_COPYSIGN 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#248

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1033-53

_GLIBCXX_HAVE_COPYSIGNL [References: 1] Defined? True

#define _GLIBCXX_HAVE_COPYSIGNL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#254

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1038-54

_GLIBCXX_HAVE_COSF [References: 1] Defined? True

#define _GLIBCXX_HAVE_COSF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#257

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1043-49

_GLIBCXX_HAVE_COSHF [References: 1] Defined? True

#define _GLIBCXX_HAVE_COSHF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#260

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1048-50

_GLIBCXX_HAVE_COSHL [References: 1] Defined? True

#define _GLIBCXX_HAVE_COSHL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#263

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1053-50

_GLIBCXX_HAVE_COSL [References: 1] Defined? True

#define _GLIBCXX_HAVE_COSL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#266

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1058-49

_GLIBCXX_HAVE_EXPF [References: 1] Defined? True

#define _GLIBCXX_HAVE_EXPF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#272

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1063-49

_GLIBCXX_HAVE_EXPL [References: 1] Defined? True

#define _GLIBCXX_HAVE_EXPL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#275

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1068-49

_GLIBCXX_HAVE_FABSF [References: 1] Defined? True

#define _GLIBCXX_HAVE_FABSF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#278

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1073-50

_GLIBCXX_HAVE_FABSL [References: 1] Defined? True

#define _GLIBCXX_HAVE_FABSL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#281

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1078-50

_GLIBCXX_HAVE_FINITE [References: 1] Defined? True

#define _GLIBCXX_HAVE_FINITE 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#287

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1083-51

_GLIBCXX_HAVE_FLOORF [References: 1] Defined? True

#define _GLIBCXX_HAVE_FLOORF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#299

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1098-51

_GLIBCXX_HAVE_FLOORL [References: 1] Defined? True

#define _GLIBCXX_HAVE_FLOORL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#302

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1103-51

_GLIBCXX_HAVE_FMODF [References: 1] Defined? True

#define _GLIBCXX_HAVE_FMODF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#305

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1108-50

_GLIBCXX_HAVE_FMODL [References: 1] Defined? True

#define _GLIBCXX_HAVE_FMODL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#308

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1113-50

_GLIBCXX_HAVE_FREXPF [References: 1] Defined? True

#define _GLIBCXX_HAVE_FREXPF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#317

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1123-51

_GLIBCXX_HAVE_FREXPL [References: 1] Defined? True

#define _GLIBCXX_HAVE_FREXPL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#320

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1128-51

_GLIBCXX_HAVE_HYPOT [References: 1] Defined? True

#define _GLIBCXX_HAVE_HYPOT 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#336

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1133-50

_GLIBCXX_HAVE_HYPOTF [References: 1] Defined? True

#define _GLIBCXX_HAVE_HYPOTF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#339

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1138-51

_GLIBCXX_HAVE_HYPOTL [References: 1] Defined? True

#define _GLIBCXX_HAVE_HYPOTL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#342

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1143-51

_GLIBCXX_HAVE_ISINF [References: 1] Defined? True

#define _GLIBCXX_HAVE_ISINF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#363

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1148-50

_GLIBCXX_HAVE_ISNAN [References: 1] Defined? True

#define _GLIBCXX_HAVE_ISNAN 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#372

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1163-50

_GLIBCXX_HAVE_LDEXPF [References: 1] Defined? True

#define _GLIBCXX_HAVE_LDEXPF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#387

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1178-51

_GLIBCXX_HAVE_LDEXPL [References: 1] Defined? True

#define _GLIBCXX_HAVE_LDEXPL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#390

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1183-51

_GLIBCXX_HAVE_LOG10F [References: 1] Defined? True

#define _GLIBCXX_HAVE_LOG10F 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#417

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1188-51

_GLIBCXX_HAVE_LOG10L [References: 1] Defined? True

#define _GLIBCXX_HAVE_LOG10L 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#420

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1193-51

_GLIBCXX_HAVE_LOGF [References: 1] Defined? True

#define _GLIBCXX_HAVE_LOGF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#423

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1198-49

_GLIBCXX_HAVE_LOGL [References: 1] Defined? True

#define _GLIBCXX_HAVE_LOGL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#426

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1203-49

_GLIBCXX_HAVE_MODF [References: 1] Defined? True

#define _GLIBCXX_HAVE_MODF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#444

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1208-49

_GLIBCXX_HAVE_MODFF [References: 1] Defined? True

#define _GLIBCXX_HAVE_MODFF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#447

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1213-50

_GLIBCXX_HAVE_MODFL [References: 1] Defined? True

#define _GLIBCXX_HAVE_MODFL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#450

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1218-50

_GLIBCXX_HAVE_POWF [References: 1] Defined? True

#define _GLIBCXX_HAVE_POWF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#462

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1223-49

_GLIBCXX_HAVE_POWL [References: 1] Defined? True

#define _GLIBCXX_HAVE_POWL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#465

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1228-49

_GLIBCXX_HAVE_SINF [References: 1] Defined? True

#define _GLIBCXX_HAVE_SINF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#486

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1253-49

_GLIBCXX_HAVE_SINHF [References: 1] Defined? True

#define _GLIBCXX_HAVE_SINHF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#489

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1258-50

_GLIBCXX_HAVE_SINHL [References: 1] Defined? True

#define _GLIBCXX_HAVE_SINHL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#492

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1263-50

_GLIBCXX_HAVE_SINL [References: 1] Defined? True

#define _GLIBCXX_HAVE_SINL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#495

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1268-49

_GLIBCXX_HAVE_SQRTF [References: 1] Defined? True

#define _GLIBCXX_HAVE_SQRTF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#498

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1273-50

_GLIBCXX_HAVE_SQRTL [References: 1] Defined? True

#define _GLIBCXX_HAVE_SQRTL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#501

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1278-50

_GLIBCXX_HAVE_STRTOF [References: 1] Defined? True

#define _GLIBCXX_HAVE_STRTOF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#525

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1283-51

_GLIBCXX_HAVE_STRTOLD [References: 1] Defined? True

#define _GLIBCXX_HAVE_STRTOLD 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#528

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1288-52

_GLIBCXX_HAVE_TANF [References: 1] Defined? True

#define _GLIBCXX_HAVE_TANF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#576

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1293-49

_GLIBCXX_HAVE_TANHF [References: 1] Defined? True

#define _GLIBCXX_HAVE_TANHF 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#579

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1298-50

_GLIBCXX_HAVE_TANHL [References: 1] Defined? True

#define _GLIBCXX_HAVE_TANHL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#582

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1303-50

_GLIBCXX_HAVE_TANL [References: 1] Defined? True

#define _GLIBCXX_HAVE_TANL 1

defined @ /usr/include/c++/4.2.1/bits/c++config.h#585

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1308-49

_GLIBCXX_NAMESPACE_ASSOCIATION_VERSION [References: 3] Defined? True

#define _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION 0

defined @ /usr/include/c++/4.2.1/bits/c++config.h#63

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 74-5 92-5 139-5

_GLIBCXX_VISIBILITY_DEFAULT [References: 3] Defined? True

#define _GLIBCXX_VISIBILITY_DEFAULT

defined @ /usr/include/c++/4.2.1/bits/os_defines.h#48

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 66-1 153-1
cstdarg: 58-1

These macros depend on me:

_GLIBCXX_VISIBILITY_DEFAULT _GLIBCXX_BEGIN_NAMESPACE _GLIBCXX_BEGIN_NESTED_NAMESPACE

_GLIBCXX_WEAK_DEFINITION [References: 1] Defined? True

#define _GLIBCXX_WEAK_DEFINITION __attribute__ ((weak))

defined @ /usr/include/c++/4.2.1/bits/os_defines.h#45

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 187-1

_GNU_SOURCE [References: 3] Defined? True

#define _GNU_SOURCE 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1352

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1352-1

_ID_T [References: 1] Defined? True

#define _ID_T

defined @ /usr/include/sys/_types/_id_t.h#29

/ usr/ include/ sys/ _types/ _id_t.h: 29-1

_INT16_T [References: 1] Defined? True

#define _INT16_T

defined @ /usr/include/sys/_types/_int16_t.h#29

/ usr/ include/ sys/ _types/ _int16_t.h: 29-1

_INT32_T [References: 1] Defined? True

#define _INT32_T

defined @ /usr/include/sys/_types/_int32_t.h#29

/ usr/ include/ sys/ _types/ _int32_t.h: 29-1

_INT64_T [References: 1] Defined? True

#define _INT64_T

defined @ /usr/include/sys/_types/_int64_t.h#29

/ usr/ include/ sys/ _types/ _int64_t.h: 29-1

_INT8_T [References: 1] Defined? True

#define _INT8_T

defined @ /usr/include/sys/_types/_int8_t.h#29

/ usr/ include/ sys/ _types/ _int8_t.h: 29-1

_INTPTR_T [References: 2] Defined? True

#define _INTPTR_T

defined @ /usr/include/sys/_types/_intptr_t.h#29

/ usr/ include/ sys/ _types/ _intptr_t.h: 29-1

_MODE_T [References: 2] Defined? True

#define _MODE_T

defined @ /usr/include/sys/_types/_mode_t.h#29

/ usr/ include/ sys/ _types/ _mode_t.h: 29-1

_OFF_T [References: 2] Defined? True

#define _OFF_T

defined @ /usr/include/sys/_types/_off_t.h#29

/ usr/ include/ sys/ _types/ _off_t.h: 29-1

_PID_T [References: 3] Defined? True

#define _PID_T

defined @ /usr/include/sys/_types/_pid_t.h#29

/ usr/ include/ sys/ _types/ _pid_t.h: 29-1

_POSIX_PTHREAD_SEMANTICS [References: 3] Defined? True

#define _POSIX_PTHREAD_SEMANTICS 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1356

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1356-1

_POSIX_VDISABLE [References: 3] Defined? True

#define _POSIX_VDISABLE ((unsigned char)'\377')

defined @ /usr/include/sys/_types/_posix_vdisable.h#29

/ usr/ include/ sys/ _types/ _posix_vdisable.h: 29-1
unistd.h: 146-1

These macros depend on me:

_POSIX_VDISABLE CCEQ

_PyDict_HasSplitTable [References: 12] Defined? True

#define _PyDict_HasSplitTable(d) ((d)->ma_values != NULL)

defined @ /Users/paulross/dev/Python-3.6.2/Include/dictobject.h#120

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 444-20 1045-9 1080-5 1135-9 1187-5 1329-10 1660-9 1703-9 1867-9 2640-9 2881-9 2923-9

I depend on these macros:

_PyDict_HasSplitTable NULL __DARWIN_NULL

_PyGCHead_REFS [References: 23] Defined? True

#define _PyGCHead_REFS(g) ((g)->gc.gc_refs >> _PyGC_REFS_SHIFT)

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#271

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1039-36 1049-17 1050-17 1059-17 1060-17 1064-5 1130-5 2661-13 2662-13 2905-9 2926-9 3243-9 3428-5 3843-5

I depend on these macros:

_PyGCHead_REFS _PyGC_REFS_SHIFT

These macros depend on me:

_PyGCHead_REFS _PyGC_REFS _PyObject_GC_IS_TRACKED MAINTAIN_TRACKING
_PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING
_PyObject_GC_TRACK MAINTAIN_TRACKING
_PyObject_GC_UNTRACK

_PyGCHead_SET_REFS [References: 8] Defined? True

#define _PyGCHead_SET_REFS(g,v) do { (g)->gc.gc_refs = ((g)->gc.gc_refs & ~_PyGC_REFS_MASK) \
| (((size_t)(v)) << _PyGC_REFS_SHIFT); } while (0)

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#272

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1064-5 1130-5 2662-13 2905-9 2926-9 3243-9 3428-5 3843-5

I depend on these macros:

_PyGCHead_SET_REFS _PyGC_REFS_MASK _PyGC_REFS_SHIFT
_PyGC_REFS_SHIFT

These macros depend on me:

_PyGCHead_SET_REFS _PyObject_GC_TRACK MAINTAIN_TRACKING
_PyObject_GC_UNTRACK

_PyGC_REFS [References: 15] Defined? True

#define _PyGC_REFS(o) _PyGCHead_REFS(_Py_AS_GC(o))

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#287

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1039-36 1049-17 1050-17 1059-17 1060-17 1130-5 2661-13 2905-9 2926-9

I depend on these macros:

_PyGC_REFS _PyGCHead_REFS _PyGC_REFS_SHIFT
_Py_AS_GC

These macros depend on me:

_PyGC_REFS _PyObject_GC_IS_TRACKED MAINTAIN_TRACKING
_PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING

_PyGC_REFS_MASK [References: 8] Defined? True

#define _PyGC_REFS_MASK (((size_t) -1) << _PyGC_REFS_SHIFT)

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#269

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1064-5 1130-5 2662-13 2905-9 2926-9 3243-9 3428-5 3843-5

I depend on these macros:

_PyGC_REFS_MASK _PyGC_REFS_SHIFT

These macros depend on me:

_PyGC_REFS_MASK _PyGCHead_SET_REFS _PyObject_GC_TRACK MAINTAIN_TRACKING
_PyObject_GC_UNTRACK

_PyGC_REFS_REACHABLE [References: 6] Defined? True

#define _PyGC_REFS_REACHABLE (-3)

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#290

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1130-5 2662-13 2905-9 2926-9 3428-5 3843-5

These macros depend on me:

_PyGC_REFS_REACHABLE _PyObject_GC_TRACK MAINTAIN_TRACKING

_PyGC_REFS_SHIFT [References: 39] Defined? True

#define _PyGC_REFS_SHIFT (1)

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#268

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1039-36 1049-17 1050-17 1059-17 1060-17 1064-5 1130-5 2661-13 2662-13 2905-9 2926-9 3243-9 3428-5 3843-5

These macros depend on me:

_PyGC_REFS_SHIFT _PyGCHead_DECREF
_PyGCHead_REFS _PyGC_REFS _PyObject_GC_IS_TRACKED MAINTAIN_TRACKING
_PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING
_PyObject_GC_TRACK MAINTAIN_TRACKING
_PyObject_GC_UNTRACK
_PyGCHead_SET_REFS _PyObject_GC_TRACK MAINTAIN_TRACKING
_PyObject_GC_UNTRACK
_PyGC_REFS_MASK _PyGCHead_SET_REFS _PyObject_GC_TRACK MAINTAIN_TRACKING
_PyObject_GC_UNTRACK

_PyGC_REFS_UNTRACKED [References: 25] Defined? True

#define _PyGC_REFS_UNTRACKED (-2)

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#289

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1039-36 1049-17 1050-17 1059-17 1060-17 1064-5 1130-5 2661-13 2662-13 2905-9 2926-9 3243-9 3428-5 3843-5

These macros depend on me:

_PyGC_REFS_UNTRACKED _PyObject_GC_IS_TRACKED MAINTAIN_TRACKING
_PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING
_PyObject_GC_TRACK MAINTAIN_TRACKING
_PyObject_GC_UNTRACK

_PyObject_EXTRA_INIT [References: 7] Defined? True

#define _PyObject_EXTRA_INIT 0, 0,

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#75

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3280-5 3527-5 3611-5 3715-5 4146-5 4236-5 4301-5

These macros depend on me:

_PyObject_EXTRA_INIT PyObject_HEAD_INIT PyModuleDef_HEAD_INIT
PyVarObject_HEAD_INIT

_PyObject_GC_IS_TRACKED [References: 15] Defined? True

#define _PyObject_GC_IS_TRACKED(o) (_PyGC_REFS(o) != _PyGC_REFS_UNTRACKED)

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#320

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1039-36 1049-17 1050-17 1059-17 1060-17 1130-5 2661-13 2905-9 2926-9

I depend on these macros:

_PyObject_GC_IS_TRACKED _PyGC_REFS _PyGCHead_REFS _PyGC_REFS_SHIFT
_Py_AS_GC
_PyGC_REFS_UNTRACKED

These macros depend on me:

_PyObject_GC_IS_TRACKED MAINTAIN_TRACKING
_PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING

_PyObject_GC_MAY_BE_TRACKED [References: 10] Defined? True

#define _PyObject_GC_MAY_BE_TRACKED(obj) (PyObject_IS_GC(obj) && (!PyTuple_CheckExact(obj) \
|| _PyObject_GC_IS_TRACKED(obj)))

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#325

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1049-17 1050-17 1059-17 1060-17 1130-5 2905-9 2926-9

I depend on these macros:

_PyObject_GC_MAY_BE_TRACKED PyObject_IS_GC NULL __DARWIN_NULL
PyType_IS_GC PyType_HasFeature
Py_TPFLAGS_HAVE_GC
Py_TYPE
PyTuple_CheckExact Py_TYPE
_PyObject_GC_IS_TRACKED _PyGC_REFS _PyGCHead_REFS _PyGC_REFS_SHIFT
_Py_AS_GC
_PyGC_REFS_UNTRACKED

These macros depend on me:

_PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING

_PyObject_GC_TRACK [References: 6] Defined? True

#define _PyObject_GC_TRACK(o) do { PyGC_Head *g = _Py_AS_GC(o); if (_PyGCHead_REFS(g) != \
_PyGC_REFS_UNTRACKED) Py_FatalError("GC object already tracked"); _PyGCHead_SET_REFS(g, \
_PyGC_REFS_REACHABLE); g->gc.gc_next = _PyGC_generation0; g->gc.gc_prev = \
_PyGC_generation0->gc.gc_prev; g->gc.gc_prev->gc.gc_next = g; _PyGC_generation0->gc.gc_prev \
= g; } while (0);

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#295

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1130-5 2662-13 2905-9 2926-9 3428-5 3843-5

I depend on these macros:

_PyObject_GC_TRACK _PyGCHead_REFS _PyGC_REFS_SHIFT
_PyGCHead_SET_REFS _PyGC_REFS_MASK _PyGC_REFS_SHIFT
_PyGC_REFS_SHIFT
_PyGC_REFS_REACHABLE
_PyGC_REFS_UNTRACKED
_Py_AS_GC

These macros depend on me:

_PyObject_GC_TRACK MAINTAIN_TRACKING

_PyObject_GC_UNTRACK [References: 2] Defined? True

#define _PyObject_GC_UNTRACK(o) do { PyGC_Head *g = _Py_AS_GC(o); assert(_PyGCHead_REFS(g) \
!= _PyGC_REFS_UNTRACKED); _PyGCHead_SET_REFS(g, _PyGC_REFS_UNTRACKED); \
g->gc.gc_prev->gc.gc_next = g->gc.gc_next; g->gc.gc_next->gc.gc_prev = g->gc.gc_prev; \
g->gc.gc_next = NULL; } while (0);

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#310

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1064-5 3243-9

I depend on these macros:

_PyObject_GC_UNTRACK NULL __DARWIN_NULL
_PyGCHead_REFS _PyGC_REFS_SHIFT
_PyGCHead_SET_REFS _PyGC_REFS_MASK _PyGC_REFS_SHIFT
_PyGC_REFS_SHIFT
_PyGC_REFS_UNTRACKED
_Py_AS_GC
assert

_PyObject_HEAD_EXTRA [References: 1] Defined? True

#define _PyObject_HEAD_EXTRA struct _object *_ob_next; struct _object *_ob_prev;

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#71

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ object.h: 107-5

_PyObject_SIZE [References: 1] Defined? True

#define _PyObject_SIZE(typeobj) ( (typeobj)->tp_basicsize )

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#148

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 3079-11

These macros depend on me:

_PyObject_SIZE PyObject_NEW

_PyUnicode_COMPACT_DATA [References: 2] Defined? True

#define _PyUnicode_COMPACT_DATA(op) (PyUnicode_IS_ASCII(op) ? ((void*)((PyASCIIObject*)(op) \
+ 1)) : ((void*)((PyCompactUnicodeObject*)(op) + 1)))

defined @ /Users/paulross/dev/Python-3.6.2/Include/unicodeobject.h#462

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ stringlib/ eq.h: 23-19 23-44

I depend on these macros:

_PyUnicode_COMPACT_DATA PyUnicode_IS_ASCII PyUnicode_Check PyType_FastSubclass PyType_HasFeature
Py_TPFLAGS_UNICODE_SUBCLASS
Py_TYPE
PyUnicode_IS_READY
assert

These macros depend on me:

_PyUnicode_COMPACT_DATA PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR

_PyUnicode_NONCOMPACT_DATA [References: 2] Defined? True

#define _PyUnicode_NONCOMPACT_DATA(op) (assert(((PyUnicodeObject*)(op))->data.any), \
((((PyUnicodeObject *)(op))->data.any)))

defined @ /Users/paulross/dev/Python-3.6.2/Include/unicodeobject.h#467

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ stringlib/ eq.h: 23-19 23-44

I depend on these macros:

_PyUnicode_NONCOMPACT_DATA assert

These macros depend on me:

_PyUnicode_NONCOMPACT_DATA PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR

_Py_AS_GC [References: 23] Defined? True

#define _Py_AS_GC(o) ((PyGC_Head *)(o)-1)

defined @ /Users/paulross/dev/Python-3.6.2/Include/objimpl.h#263

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 1039-36 1049-17 1050-17 1059-17 1060-17 1064-5 1130-5 2661-13 2662-13 2905-9 2926-9 3243-9 3428-5 3843-5

These macros depend on me:

_Py_AS_GC _PyGC_FINALIZED
_PyGC_REFS _PyObject_GC_IS_TRACKED MAINTAIN_TRACKING
_PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING
_PyGC_SET_FINALIZED
_PyObject_GC_TRACK MAINTAIN_TRACKING
_PyObject_GC_UNTRACK

_Py_CHECK_REFCNT [References: 102] Defined? True

#define _Py_CHECK_REFCNT(OP) { if (((PyObject*)OP)->ob_refcnt < 0) _Py_NegativeRefcount(__FILE__, \
__LINE__, (PyObject *)(OP)); }

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#722

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 560-9 561-9 726-13 776-13 1181-9 1182-9 1193-5 1197-5 1198-5 1614-5 1615-5 1746-13 1885-5 1935-17 1941-21 1954-17 1960-21 1970-9 1977-13 1984-13 1992-5 1996-5 1997-5 2014-17 2080-9 2091-9 2095-9 2096-9 2110-5 2111-5 2147-17 2194-9 2238-9 2286-13 2295-9 2442-17 2443-17 2447-9 2448-9 2449-9 2450-9 2457-5 2458-5 2461-5 2524-25 2525-25 2532-21 2533-21 2536-17 2537-17 2565-9 2573-21 2574-21 2577-17 2582-17 2583-17 2587-13 2588-13 2590-17 2594-9 2670-5 2750-17 2751-17 2757-13 2758-13 2991-9 2999-13 3249-9 3346-5 3370-5 3392-5 3422-13 3435-5 3436-5 3522-5 3606-5 3696-9 3697-9 3710-5 3775-17 3776-17 3777-17 3780-13 3784-5 3788-9 3803-5 3873-9 3877-5 3952-5 3998-9 4002-5 4018-9 4022-5 4038-9 4042-5 4058-9 4062-5 4119-9 4121-13 4126-13 4130-5 4214-5

These macros depend on me:

_Py_CHECK_REFCNT Py_DECREF Py_CLEAR
Py_SETREF
Py_XDECREF Py_XSETREF

_Py_DEC_REFTOTAL [References: 113] Defined? True

#define _Py_DEC_REFTOTAL _Py_RefTotal--

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#720

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 560-9 561-9 588-13 611-9 726-13 776-13 1181-9 1182-9 1193-5 1197-5 1198-5 1305-9 1313-9 1614-5 1615-5 1746-13 1748-9 1752-8 1885-5 1935-17 1941-21 1954-17 1960-21 1970-9 1977-13 1984-13 1992-5 1996-5 1997-5 2014-17 2018-9 2022-9 2080-9 2091-9 2095-9 2096-9 2110-5 2111-5 2147-17 2194-9 2238-9 2286-13 2295-9 2442-17 2443-17 2447-9 2448-9 2449-9 2450-9 2457-5 2458-5 2461-5 2524-25 2525-25 2532-21 2533-21 2536-17 2537-17 2565-9 2573-21 2574-21 2577-17 2582-17 2583-17 2587-13 2588-13 2590-17 2594-9 2670-5 2750-17 2751-17 2757-13 2758-13 2991-9 2999-13 3249-9 3346-5 3370-5 3392-5 3422-13 3435-5 3436-5 3522-5 3606-5 3696-9 3697-9 3710-5 3775-17 3776-17 3777-17 3780-13 3784-5 3788-9 3803-5 3873-9 3877-5 3952-5 3998-9 4002-5 4018-9 4022-5 4038-9 4042-5 4058-9 4062-5 4119-9 4121-13 4126-13 4130-5 4214-5 4403-17 4432-17 4457-5

These macros depend on me:

_Py_DEC_REFTOTAL DK_DEBUG_DECREF DK_DECREF
Py_DECREF Py_CLEAR
Py_SETREF
Py_XDECREF Py_XSETREF

_Py_IDENTIFIER [References: 6] Defined? True

#define _Py_IDENTIFIER(varname) _Py_static_string(PyId_##varname, #varname)

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#150

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2142-13 2354-9 3991-5 4011-5 4031-5 4051-5

I depend on these macros:

_Py_IDENTIFIER _Py_static_string _Py_static_string_init NULL __DARWIN_NULL

_Py_INC_REFTOTAL [References: 57] Defined? True

#define _Py_INC_REFTOTAL _Py_RefTotal++

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#719

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 544-5 724-13 774-13 1118-5 1119-5 1288-17 1358-5 1737-5 1848-13 1859-13 1898-13 2067-9 2068-9 2157-5 2210-13 2255-13 2315-13 2317-13 2373-9 2437-9 2438-9 2518-17 2519-17 2655-9 2658-13 2741-13 2743-13 2783-5 2817-9 2818-5 2847-5 2903-9 2904-9 2925-9 2949-5 2957-5 3414-5 3517-5 3601-5 3687-5 3688-5 3695-9 3760-5 3841-5 3893-9 3937-5 3962-9 4093-13 4095-13 4127-13 4133-5 4190-9 4212-5 4280-9 4367-13 4374-5 4391-13

These macros depend on me:

_Py_INC_REFTOTAL DK_DEBUG_INCREF DK_INCREF
Py_INCREF Py_RETURN_FALSE
Py_RETURN_NONE
Py_RETURN_NOTIMPLEMENTED
Py_RETURN_TRUE
Py_XINCREF

_Py_NO_RETURN [References: 1] Defined? True

#define _Py_NO_RETURN

defined @ /Users/paulross/dev/Python-3.6.2/Include/pyerrors.h#101

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyerrors.h: 105-53

_Py_REF_DEBUG_COMMA [References: 170] Defined? True

#define _Py_REF_DEBUG_COMMA ,

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#721

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 544-5 560-9 561-9 588-13 611-9 724-13 726-13 774-13 776-13 1118-5 1119-5 1181-9 1182-9 1193-5 1197-5 1198-5 1288-17 1305-9 1313-9 1358-5 1614-5 1615-5 1737-5 1746-13 1748-9 1752-8 1848-13 1859-13 1885-5 1898-13 1935-17 1941-21 1954-17 1960-21 1970-9 1977-13 1984-13 1992-5 1996-5 1997-5 2014-17 2018-9 2022-9 2067-9 2068-9 2080-9 2091-9 2095-9 2096-9 2110-5 2111-5 2147-17 2157-5 2194-9 2210-13 2238-9 2255-13 2286-13 2295-9 2315-13 2317-13 2373-9 2437-9 2438-9 2442-17 2443-17 2447-9 2448-9 2449-9 2450-9 2457-5 2458-5 2461-5 2518-17 2519-17 2524-25 2525-25 2532-21 2533-21 2536-17 2537-17 2565-9 2573-21 2574-21 2577-17 2582-17 2583-17 2587-13 2588-13 2590-17 2594-9 2655-9 2658-13 2670-5 2741-13 2743-13 2750-17 2751-17 2757-13 2758-13 2783-5 2817-9 2818-5 2847-5 2903-9 2904-9 2925-9 2949-5 2957-5 2991-9 2999-13 3249-9 3346-5 3370-5 3392-5 3414-5 3422-13 3435-5 3436-5 3517-5 3522-5 3601-5 3606-5 3687-5 3688-5 3695-9 3696-9 3697-9 3710-5 3760-5 3775-17 3776-17 3777-17 3780-13 3784-5 3788-9 3803-5 3841-5 3873-9 3877-5 3893-9 3937-5 3952-5 3962-9 3998-9 4002-5 4018-9 4022-5 4038-9 4042-5 4058-9 4062-5 4093-13 4095-13 4119-9 4121-13 4126-13 4127-13 4130-5 4133-5 4190-9 4212-5 4214-5 4280-9 4367-13 4374-5 4391-13 4403-17 4432-17 4457-5

These macros depend on me:

_Py_REF_DEBUG_COMMA DK_DEBUG_DECREF DK_DECREF
DK_DEBUG_INCREF DK_INCREF
Py_DECREF Py_CLEAR
Py_SETREF
Py_XDECREF Py_XSETREF
Py_INCREF Py_RETURN_FALSE
Py_RETURN_NONE
Py_RETURN_NOTIMPLEMENTED
Py_RETURN_TRUE
Py_XINCREF

_Py_stat_struct [References: 2] Defined? True

#define _Py_stat_struct stat

defined @ /Users/paulross/dev/Python-3.6.2/Include/fileutils.h#41

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ fileutils.h: 46-12 50-12

_Py_static_string [References: 6] Defined? True

#define _Py_static_string(varname,value) static _Py_Identifier varname = _Py_static_string_init(value) \

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#149

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2142-13 2354-9 3991-5 4011-5 4031-5 4051-5

I depend on these macros:

_Py_static_string _Py_static_string_init NULL __DARWIN_NULL

These macros depend on me:

_Py_static_string _Py_IDENTIFIER

_Py_static_string_init [References: 6] Defined? True

#define _Py_static_string_init(value) { .next = NULL, .string = value, .object = NULL }

defined @ /Users/paulross/dev/Python-3.6.2/Include/object.h#148

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 2142-13 2354-9 3991-5 4011-5 4031-5 4051-5

I depend on these macros:

_Py_static_string_init NULL __DARWIN_NULL

These macros depend on me:

_Py_static_string_init _Py_static_string _Py_IDENTIFIER

_REENTRANT [References: 1] Defined? True

#define _REENTRANT 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1460

/ usr/ include/ math.h: 576-1

_RUNE_T [References: 2] Defined? True

#define _RUNE_T

defined @ /usr/include/sys/_types/_rune_t.h#29

/ usr/ include/ sys/ _types/ _rune_t.h: 29-1

_SECURE__COMMON_H_ [References: 1] Defined? True

#define _SECURE__COMMON_H_

defined @ /usr/include/secure/_common.h#25

/ usr/ include/ secure/ _common.h: 25-1

_SIGSET_T [References: 1] Defined? True

#define _SIGSET_T

defined @ /usr/include/sys/_types/_sigset_t.h#29

/ usr/ include/ sys/ _types/ _sigset_t.h: 29-1

_SIZE_T [References: 11] Defined? True

#define _SIZE_T

defined @ /usr/include/sys/_types/_size_t.h#29

/ usr/ include/ sys/ _types/ _size_t.h: 29-1

_SSIZE_T [References: 3] Defined? True

#define _SSIZE_T

defined @ /usr/include/sys/_types/_ssize_t.h#29

/ usr/ include/ sys/ _types/ _ssize_t.h: 29-1

_STDINT_H_ [References: 1] Defined? True

#define _STDINT_H_

defined @ /usr/include/stdint.h#7

/ usr/ include/ stdint.h: 7-1

_STDIO_H_ [References: 2] Defined? True

#define _STDIO_H_

defined @ /usr/include/stdio.h#62

/ usr/ include/ secure/ _stdio.h: 25-2
stdio.h: 62-1

_STDLIB_H_ [References: 1] Defined? True

#define _STDLIB_H_

defined @ /usr/include/stdlib.h#59

/ usr/ include/ stdlib.h: 59-1

_STRING_H_ [References: 2] Defined? True

#define _STRING_H_

defined @ /usr/include/string.h#59

/ usr/ include/ secure/ _string.h: 25-1
string.h: 59-1

_STRUCT_FP_CONTROL [References: 6] Defined? True

#define _STRUCT_FP_CONTROL struct __darwin_fp_control

defined @ /usr/include/mach/i386/_structs.h#88

/ usr/ include/ mach/ i386/ _structs.h: 89-1 114-9 235-2 272-2 512-2 563-2

_STRUCT_FP_STATUS [References: 6] Defined? True

#define _STRUCT_FP_STATUS struct __darwin_fp_status

defined @ /usr/include/mach/i386/_structs.h#146

/ usr/ include/ mach/ i386/ _structs.h: 147-1 164-9 236-2 273-2 513-2 564-2

_STRUCT_MCONTEXT [References: 1] Defined? True

#define _STRUCT_MCONTEXT _STRUCT_MCONTEXT32

defined @ /usr/include/i386/_mcontext.h#119

/ usr/ include/ sys/ _types/ _ucontext.h: 41-2

I depend on these macros:

_STRUCT_MCONTEXT _STRUCT_MCONTEXT32

_STRUCT_MCONTEXT32 [References: 3] Defined? True

#define _STRUCT_MCONTEXT32 struct __darwin_mcontext32

defined @ /usr/include/i386/_mcontext.h#37

/ usr/ include/ i386/ _mcontext.h: 38-1 118-9
sys/ _types/ _ucontext.h: 41-2

These macros depend on me:

_STRUCT_MCONTEXT32 _STRUCT_MCONTEXT

_STRUCT_MCONTEXT64 [References: 1] Defined? True

#define _STRUCT_MCONTEXT64 struct __darwin_mcontext64

defined @ /usr/include/i386/_mcontext.h#75

/ usr/ include/ i386/ _mcontext.h: 76-1

_STRUCT_MCONTEXT_AVX32 [References: 1] Defined? True

#define _STRUCT_MCONTEXT_AVX32 struct __darwin_mcontext_avx32

defined @ /usr/include/i386/_mcontext.h#45

/ usr/ include/ i386/ _mcontext.h: 46-1

_STRUCT_MCONTEXT_AVX64 [References: 1] Defined? True

#define _STRUCT_MCONTEXT_AVX64 struct __darwin_mcontext_avx64

defined @ /usr/include/i386/_mcontext.h#83

/ usr/ include/ i386/ _mcontext.h: 84-1

_STRUCT_MMST_REG [References: 33] Defined? True

#define _STRUCT_MMST_REG struct __darwin_mmst_reg

defined @ /usr/include/mach/i386/_structs.h#190

/ usr/ include/ mach/ i386/ _structs.h: 191-1 248-2 249-2 250-2 251-2 252-2 253-2 254-2 255-2 285-2 286-2 287-2 288-2 289-2 290-2 291-2 292-2 531-2 532-2 533-2 534-2 535-2 536-2 537-2 538-2 582-2 583-2 584-2 585-2 586-2 587-2 588-2 589-2

_STRUCT_SIGALTSTACK [References: 3] Defined? True

#define _STRUCT_SIGALTSTACK struct __darwin_sigaltstack

defined @ /usr/include/sys/_types/_sigaltstack.h#32

/ usr/ include/ sys/ _types/ _sigaltstack.h: 36-1 42-9
_ucontext.h: 38-2

_STRUCT_TIMESPEC [References: 5] Defined? True

#define _STRUCT_TIMESPEC struct timespec

defined @ /usr/include/sys/_types/_timespec.h#29

/ usr/ include/ sys/ _types/ _timespec.h: 30-1 29-1

_STRUCT_TIMEVAL [References: 3] Defined? True

#define _STRUCT_TIMEVAL struct timeval

defined @ /usr/include/sys/_types/_timeval.h#29

/ usr/ include/ sys/ _types/ _timeval.h: 30-1 29-1

_STRUCT_UCONTEXT [References: 3] Defined? True

#define _STRUCT_UCONTEXT struct __darwin_ucontext

defined @ /usr/include/sys/_types/_ucontext.h#30

/ usr/ include/ sys/ _types/ _ucontext.h: 34-1 39-2 48-9

_STRUCT_X86_AVX_STATE32 [References: 2] Defined? True

#define _STRUCT_X86_AVX_STATE32 struct __darwin_i386_avx_state

defined @ /usr/include/mach/i386/_structs.h#268

/ usr/ include/ i386/ _mcontext.h: 50-2
mach/ i386/ _structs.h: 269-1

_STRUCT_X86_AVX_STATE64 [References: 2] Defined? True

#define _STRUCT_X86_AVX_STATE64 struct __darwin_x86_avx_state64

defined @ /usr/include/mach/i386/_structs.h#559

/ usr/ include/ i386/ _mcontext.h: 88-2
mach/ i386/ _structs.h: 560-1

_STRUCT_X86_DEBUG_STATE32 [References: 1] Defined? True

#define _STRUCT_X86_DEBUG_STATE32 struct __darwin_x86_debug_state32

defined @ /usr/include/mach/i386/_structs.h#421

/ usr/ include/ mach/ i386/ _structs.h: 422-1

_STRUCT_X86_DEBUG_STATE64 [References: 1] Defined? True

#define _STRUCT_X86_DEBUG_STATE64 struct __darwin_x86_debug_state64

defined @ /usr/include/mach/i386/_structs.h#770

/ usr/ include/ mach/ i386/ _structs.h: 771-1

_STRUCT_X86_EXCEPTION_STATE32 [References: 3] Defined? True

#define _STRUCT_X86_EXCEPTION_STATE32 struct __darwin_i386_exception_state

defined @ /usr/include/mach/i386/_structs.h#401

/ usr/ include/ i386/ _mcontext.h: 40-2 48-2
mach/ i386/ _structs.h: 402-1

_STRUCT_X86_EXCEPTION_STATE64 [References: 3] Defined? True

#define _STRUCT_X86_EXCEPTION_STATE64 struct __darwin_x86_exception_state64

defined @ /usr/include/mach/i386/_structs.h#750

/ usr/ include/ i386/ _mcontext.h: 78-2 86-2
mach/ i386/ _structs.h: 751-1

_STRUCT_X86_FLOAT_STATE32 [References: 2] Defined? True

#define _STRUCT_X86_FLOAT_STATE32 struct __darwin_i386_float_state

defined @ /usr/include/mach/i386/_structs.h#231

/ usr/ include/ i386/ _mcontext.h: 42-2
mach/ i386/ _structs.h: 232-1

_STRUCT_X86_FLOAT_STATE64 [References: 2] Defined? True

#define _STRUCT_X86_FLOAT_STATE64 struct __darwin_x86_float_state64

defined @ /usr/include/mach/i386/_structs.h#508

/ usr/ include/ i386/ _mcontext.h: 80-2
mach/ i386/ _structs.h: 509-1

_STRUCT_X86_THREAD_STATE32 [References: 3] Defined? True

#define _STRUCT_X86_THREAD_STATE32 struct __darwin_i386_thread_state

defined @ /usr/include/mach/i386/_structs.h#42

/ usr/ include/ i386/ _mcontext.h: 41-2 49-2
mach/ i386/ _structs.h: 43-1

_STRUCT_X86_THREAD_STATE64 [References: 3] Defined? True

#define _STRUCT_X86_THREAD_STATE64 struct __darwin_x86_thread_state64

defined @ /usr/include/mach/i386/_structs.h#453

/ usr/ include/ i386/ _mcontext.h: 79-2 87-2
mach/ i386/ _structs.h: 454-1

_STRUCT_XMM_REG [References: 73] Defined? True

#define _STRUCT_XMM_REG struct __darwin_xmm_reg

defined @ /usr/include/mach/i386/_structs.h#209

/ usr/ include/ mach/ i386/ _structs.h: 210-1 256-2 257-2 258-2 259-2 260-2 261-2 262-2 263-2 293-2 294-2 295-2 296-2 297-2 298-2 299-2 300-2 304-2 305-2 306-2 307-2 308-2 309-2 310-2 311-2 539-2 540-2 541-2 542-2 543-2 544-2 545-2 546-2 547-2 548-2 549-2 550-2 551-2 552-2 553-2 554-2 590-2 591-2 592-2 593-2 594-2 595-2 596-2 597-2 598-2 599-2 600-2 601-2 602-2 603-2 604-2 605-2 609-2 610-2 611-2 612-2 613-2 614-2 615-2 616-2 617-2 618-2 619-2 620-2 621-2 622-2 623-2 624-2

_SUSECONDS_T [References: 1] Defined? True

#define _SUSECONDS_T

defined @ /usr/include/sys/_types/_suseconds_t.h#29

/ usr/ include/ sys/ _types/ _suseconds_t.h: 29-1

_SYS_SELECT_H_ [References: 1] Defined? True

#define _SYS_SELECT_H_

defined @ /usr/include/sys/select.h#64

/ usr/ include/ sys/ select.h: 64-1

_SYS__SELECT_H_ [References: 1] Defined? True

#define _SYS__SELECT_H_

defined @ /usr/include/sys/_select.h#37

/ usr/ include/ sys/ _select.h: 37-1

_SYS__TYPES_H_ [References: 10] Defined? True

#define _SYS__TYPES_H_

defined @ /usr/include/sys/_types.h#30

/ usr/ include/ sys/ _types.h: 30-1

_TANDEM_SOURCE [References: 3] Defined? True

#define _TANDEM_SOURCE 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1360

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1360-1

_TIME_H_ [References: 2] Defined? True

#define _TIME_H_

defined @ /usr/include/time.h#64

/ usr/ include/ time.h: 64-1

_TIME_T [References: 3] Defined? True

#define _TIME_T

defined @ /usr/include/sys/_types/_time_t.h#29

/ usr/ include/ sys/ _types/ _time_t.h: 29-1

_TR1_STDARG_H [References: 6] Defined? True

#define _TR1_STDARG_H 1

defined @ /usr/include/c++/4.2.1/tr1/stdarg.h#35

/ usr/ include/ c++/ 4.2.1/ tr1/ stdarg.h: 35-1

_UID_T [References: 3] Defined? True

#define _UID_T

defined @ /usr/include/sys/_types/_uid_t.h#29

/ usr/ include/ sys/ _types/ _uid_t.h: 29-1

_UINT64_T [References: 1] Defined? True

#define _UINT64_T

defined @ /usr/include/_types/_uint64_t.h#30

/ usr/ include/ _types/ _uint64_t.h: 30-1

_UINTPTR_T [References: 1] Defined? True

#define _UINTPTR_T

defined @ /usr/include/sys/_types/_uintptr_t.h#29

/ usr/ include/ sys/ _types/ _uintptr_t.h: 29-1

_UNISTD_H_ [References: 1] Defined? True

#define _UNISTD_H_

defined @ /usr/include/unistd.h#69

/ usr/ include/ unistd.h: 69-1

_USE_FORTIFY_LEVEL [References: 2] Defined? True

#define _USE_FORTIFY_LEVEL 2

defined @ /usr/include/secure/_common.h#30

/ usr/ include/ secure/ _stdio.h: 33-5
_string.h: 35-5

These macros depend on me:

_USE_FORTIFY_LEVEL __darwin_obsz snprintf
sprintf
stpcpy
strcat
strcpy
strncat
strncpy
vsnprintf
vsprintf

_UUID_T [References: 1] Defined? True

#define _UUID_T

defined @ /usr/include/sys/_types/_uuid_t.h#29

/ usr/ include/ sys/ _types/ _uuid_t.h: 29-1

_WCHAR_T [References: 3] Defined? True

#define _WCHAR_T

defined @ /usr/include/sys/_types/_wchar_t.h#32

/ usr/ include/ sys/ _types/ _wchar_t.h: 32-1

_WINT_T [References: 2] Defined? True

#define _WINT_T

defined @ /usr/include/sys/_types/_wint_t.h#30

/ usr/ include/ sys/ _types/ _wint_t.h: 30-1

__APPLE_API_EVOLVING [References: 3] Defined? True

#define __APPLE_API_EVOLVING

defined @ /usr/include/sys/appleapiopts.h#44

/ usr/ include/ sys/ appleapiopts.h: 44-1

__APPLE_API_OBSOLETE [References: 3] Defined? True

#define __APPLE_API_OBSOLETE

defined @ /usr/include/sys/appleapiopts.h#56

/ usr/ include/ sys/ appleapiopts.h: 56-1

__APPLE_API_PRIVATE [References: 3] Defined? True

#define __APPLE_API_PRIVATE

defined @ /usr/include/sys/appleapiopts.h#52

/ usr/ include/ sys/ appleapiopts.h: 52-1

__APPLE_API_STABLE [References: 3] Defined? True

#define __APPLE_API_STABLE

defined @ /usr/include/sys/appleapiopts.h#38

/ usr/ include/ sys/ appleapiopts.h: 38-1

__APPLE_API_STANDARD [References: 3] Defined? True

#define __APPLE_API_STANDARD

defined @ /usr/include/sys/appleapiopts.h#34

/ usr/ include/ sys/ appleapiopts.h: 34-1

__APPLE_API_UNSTABLE [References: 3] Defined? True

#define __APPLE_API_UNSTABLE

defined @ /usr/include/sys/appleapiopts.h#48

/ usr/ include/ sys/ appleapiopts.h: 48-1

__AVAILABILITY__ [References: 17] Defined? True

#define __AVAILABILITY__

defined @ /usr/include/Availability.h#25

/ usr/ include/ Availability.h: 25-1

__BEGIN_DECLS [References: 51] Defined? True

#define __BEGIN_DECLS

defined @ /usr/include/sys/cdefs.h#74

/ usr/ include/ _wctype.h: 170-1
alloca.h: 31-1
assert.h: 75-1
ctype.h: 128-1 147-1 187-1
inttypes.h: 231-1
math.h: 33-1
runetype.h: 110-1
stdio.h: 155-1 230-1 292-1 314-1 336-1 373-1 413-1 420-1 438-1 451-1
stdlib.h: 127-1
string.h: 69-1 103-1 115-1 129-1 144-1 154-1
strings.h: 67-1 84-1
sys/ _types/ _fd_def.h: 45-1
errno.h: 79-1
resource.h: 382-1
select.h: 111-1
signal.h: 389-1
stat.h: 350-1
stdio.h: 37-1
termios.h: 330-1
time.h: 186-1
unistd.h: 183-1 201-1
wait.h: 247-1
termios.h: 31-1
time.h: 105-1
unistd.h: 428-1 505-1 530-2 623-1 644-1
wchar.h: 96-1 169-1 194-1 213-1

__CAST_AWAY_QUALIFIER [References: 31] Defined? True

#define __CAST_AWAY_QUALIFIER(variable,qualifier,type) (type) (long)(variable)

defined @ /usr/include/sys/cdefs.h#690

/ usr/ include/ sys/ cdefs.h: 690-1

These macros depend on me:

__CAST_AWAY_QUALIFIER __DECONST
__DEQUALIFY
__DEVOLATILE

__COPYRIGHT [References: 31] Defined? True

#define __COPYRIGHT(s) __IDSTRING(copyright,s)

defined @ /usr/include/sys/cdefs.h#306

/ usr/ include/ sys/ cdefs.h: 306-1

I depend on these macros:

__COPYRIGHT __IDSTRING __used
const

__CTERMID_DEFINED [References: 3] Defined? True

#define __CTERMID_DEFINED 1

defined @ /usr/include/stdio.h#295

/ usr/ include/ stdio.h: 294-1
unistd.h: 544-1

__DARWIN_1050 [References: 1] Defined? True

#define __DARWIN_1050(sym) __asm("_" __STRING(sym) __DARWIN_SUF_1050)

defined @ /usr/include/sys/cdefs.h#521

/ usr/ include/ stdlib.h: 267-23

I depend on these macros:

__DARWIN_1050 __DARWIN_SUF_1050
__STRING

__DARWIN_64_BIT_INO_T [References: 107] Defined? True

#define __DARWIN_64_BIT_INO_T 1

defined @ /usr/include/sys/cdefs.h#448

/ usr/ include/ sys/ _types.h: 63-5
cdefs.h: 477-7 645-5 431-14
stat.h: 180-5

__DARWIN_ALIAS [References: 34] Defined? True

#define __DARWIN_ALIAS(sym) __asm("_" __STRING(sym) __DARWIN_SUF_UNIX03)

defined @ /usr/include/sys/cdefs.h#515

/ usr/ include/ stdio.h: 246-56 249-37 254-76 391-43
stdlib.h: 162-39 163-38 206-21 216-46 218-28 231-29
string.h: 81-21
sys/ resource.h: 387-37 393-43
stat.h: 352-33 353-25
time.h: 101-22 107-21 113-28 114-99 115-90
unistd.h: 488-37 506-38 508-49 549-28 570-41 574-16 591-22 596-29 598-29 695-28 700-29 729-63 730-63
wchar.h: 131-36

I depend on these macros:

__DARWIN_ALIAS __DARWIN_SUF_UNIX03
__STRING

__DARWIN_ALIAS_C [References: 16] Defined? True

#define __DARWIN_ALIAS_C(sym) __asm("_" __STRING(sym) __DARWIN_SUF_NON_CANCELABLE \
__DARWIN_SUF_UNIX03)

defined @ /usr/include/sys/cdefs.h#516

/ usr/ include/ stdlib.h: 177-27
sys/ termios.h: 337-18
wait.h: 248-19 249-34 251-46
time.h: 140-59
unistd.h: 436-17 467-18 471-36 480-23 495-43 572-29 576-44 578-51 604-25 608-17

I depend on these macros:

__DARWIN_ALIAS_C __DARWIN_SUF_NON_CANCELABLE
__DARWIN_SUF_UNIX03
__STRING

__DARWIN_ALIAS_STARTING [References: 5] Defined? True

#define __DARWIN_ALIAS_STARTING(_mac,_iphone,x) x

defined @ /usr/include/sys/cdefs.h#540

/ usr/ include/ stdio.h: 240-63 300-33 317-41
unistd.h: 453-31 700-29

__DARWIN_BIG_ENDIAN [References: 3] Defined? True

#define __DARWIN_BIG_ENDIAN 4321

defined @ /usr/include/i386/endian.h#86

/ usr/ include/ sys/ _endian.h: 108-30
wait.h: 206-28 224-28

These macros depend on me:

__DARWIN_BIG_ENDIAN BIG_ENDIAN

__DARWIN_BYTE_ORDER [References: 5] Defined? True

#define __DARWIN_BYTE_ORDER __DARWIN_LITTLE_ENDIAN

defined @ /usr/include/i386/endian.h#89

/ usr/ include/ sys/ _endian.h: 108-7
wait.h: 200-5 206-5 219-5 224-5

I depend on these macros:

__DARWIN_BYTE_ORDER __DARWIN_LITTLE_ENDIAN

These macros depend on me:

__DARWIN_BYTE_ORDER BYTE_ORDER

__DARWIN_CTYPE_TOP_inline [References: 23] Defined? True

#define __DARWIN_CTYPE_TOP_inline __header_inline

defined @ /usr/include/ctype.h#119

/ usr/ include/ ctype.h: 134-1 211-1 217-1 223-1 229-1 236-1 242-1 248-1 254-1 260-1 266-1 272-1 279-1 285-1 291-1 297-1 304-1 310-1 316-1 322-1 328-1 334-1 340-1

I depend on these macros:

__DARWIN_CTYPE_TOP_inline __header_inline

__DARWIN_CTYPE_inline [References: 3] Defined? True

#define __DARWIN_CTYPE_inline __header_inline

defined @ /usr/include/ctype.h#117

/ usr/ include/ ctype.h: 152-1 163-1 193-1

I depend on these macros:

__DARWIN_CTYPE_inline __header_inline

__DARWIN_C_ANSI [References: 2] Defined? True

#define __DARWIN_C_ANSI 010000L

defined @ /usr/include/sys/cdefs.h#609

/ usr/ include/ limits.h: 67-24 138-24

__DARWIN_C_FULL [References: 232] Defined? True

#define __DARWIN_C_FULL 900000L

defined @ /usr/include/sys/cdefs.h#610

/ usr/ include/ limits.h: 67-5 92-5 105-5 115-5 132-5 132-25 138-5
math.h: 686-5 738-5 738-25
secure/ _stdio.h: 50-5
_string.h: 86-5 100-5 100-25
stdio.h: 289-5 313-5 333-5 410-5 419-5 435-5 450-5 450-25
string.h: 102-5 114-5 128-5 151-5 151-25
strings.h: 83-5 83-25
sys/ cdefs.h: 624-70 624-90
errno.h: 103-5 103-25 141-5 141-25 157-5 157-25 173-5 173-25 184-5 184-25 191-5 191-25 199-5 199-25 211-5 211-25 224-5 224-25 236-5 236-25 256-5 261-5 261-25
resource.h: 71-5 71-25 104-5 104-25 155-5 155-24 182-5 182-25 310-5 310-25 316-5 316-25 330-5 330-25 384-5 384-25 390-5 390-25
stat.h: 362-5
stdio.h: 34-5
unistd.h: 176-5 176-25 191-5
unistd.h: 149-5 171-5 178-5 185-5 185-25 192-6 192-37 192-68 192-88 200-5 240-5 268-5 268-25 273-5 327-5 343-6 343-37 343-68 343-88 351-5 359-5 359-35 359-55 365-5 365-25 369-5 375-5 391-6 391-37 391-68 391-88 411-5 411-25 504-5 523-5 622-5 637-5 637-25
wchar.h: 168-5 193-5 212-5 212-25

These macros depend on me:

__DARWIN_C_FULL __DARWIN_C_LEVEL

__DARWIN_C_LEVEL [References: 152] Defined? True

#define __DARWIN_C_LEVEL __DARWIN_C_FULL

defined @ /usr/include/sys/cdefs.h#617

/ usr/ include/ limits.h: 67-5 92-5 105-5 115-5 132-5 138-5
math.h: 686-5 738-5
secure/ _stdio.h: 50-5
_string.h: 86-5 100-5
stdio.h: 289-5 313-5 333-5 410-5 419-5 435-5 450-5
string.h: 102-5 114-5 128-5 151-5
strings.h: 83-5
sys/ cdefs.h: 624-70
errno.h: 103-5 141-5 157-5 173-5 184-5 191-5 199-5 211-5 224-5 236-5 256-5 261-5
resource.h: 71-5 104-5 155-5 182-5 310-5 316-5 330-5 384-5 390-5
stat.h: 362-5
stdio.h: 34-5
unistd.h: 176-5 191-5
unistd.h: 149-5 171-5 178-5 185-5 192-6 192-37 192-68 200-5 240-5 268-5 273-5 327-5 343-6 343-37 343-68 351-5 359-5 359-35 365-5 369-5 375-5 391-6 391-37 391-68 411-5 504-5 523-5 622-5 637-5
wchar.h: 168-5 193-5 212-5

I depend on these macros:

__DARWIN_C_LEVEL __DARWIN_C_FULL

__DARWIN_EXTSN [References: 5] Defined? True

#define __DARWIN_EXTSN(sym) __asm("_" __STRING(sym) __DARWIN_SUF_EXTSN)

defined @ /usr/include/sys/cdefs.h#527

/ usr/ include/ stdio.h: 240-63 300-33 317-41
stdlib.h: 210-60
unistd.h: 453-31

I depend on these macros:

__DARWIN_EXTSN __DARWIN_SUF_EXTSN
__STRING

__DARWIN_EXTSN_C [References: 2] Defined? True

#define __DARWIN_EXTSN_C(sym) __asm("_" __STRING(sym) __DARWIN_SUF_EXTSN __DARWIN_SUF_NON_CANCELABLE) \

defined @ /usr/include/sys/cdefs.h#528

/ usr/ include/ sys/ _select.h: 42-3
select.h: 118-3

I depend on these macros:

__DARWIN_EXTSN_C __DARWIN_SUF_EXTSN
__DARWIN_SUF_NON_CANCELABLE
__STRING

__DARWIN_FD_SETSIZE [References: 1] Defined? True

#define __DARWIN_FD_SETSIZE 1024

defined @ /usr/include/sys/_types/_fd_def.h#39

/ usr/ include/ sys/ _types/ _fd_def.h: 47-21

These macros depend on me:

__DARWIN_FD_SETSIZE FD_SETSIZE _PyIsSelectable_fd

__DARWIN_INODE64 [References: 7] Defined? True

#define __DARWIN_INODE64(sym) __asm("_" __STRING(sym) __DARWIN_SUF_64_BIT_INO_T)

defined @ /usr/include/sys/cdefs.h#519

/ usr/ include/ sys/ stat.h: 354-31 355-40 358-39 364-52 376-46 379-55 382-54

I depend on these macros:

__DARWIN_INODE64 __DARWIN_SUF_64_BIT_INO_T
__STRING

__DARWIN_LITTLE_ENDIAN [References: 7] Defined? True

#define __DARWIN_LITTLE_ENDIAN 1234

defined @ /usr/include/i386/endian.h#85

/ usr/ include/ sys/ _endian.h: 108-7
wait.h: 200-5 200-28 206-5 219-5 219-28 224-5

These macros depend on me:

__DARWIN_LITTLE_ENDIAN LITTLE_ENDIAN
__DARWIN_BYTE_ORDER BYTE_ORDER

__DARWIN_NBBY [References: 3] Defined? True

#define __DARWIN_NBBY 8

defined @ /usr/include/sys/_types/_fd_def.h#41

/ usr/ include/ sys/ _types/ _fd_def.h: 47-21 55-41 55-98

These macros depend on me:

__DARWIN_NBBY __DARWIN_NFDBITS __DARWIN_FD_CLR FD_CLR
__DARWIN_FD_SET FD_SET

__DARWIN_NFDBITS [References: 3] Defined? True

#define __DARWIN_NFDBITS (sizeof(__int32_t) * __DARWIN_NBBY)

defined @ /usr/include/sys/_types/_fd_def.h#42

/ usr/ include/ sys/ _types/ _fd_def.h: 47-21 55-41 55-98

I depend on these macros:

__DARWIN_NFDBITS __DARWIN_NBBY

These macros depend on me:

__DARWIN_NFDBITS __DARWIN_FD_CLR FD_CLR
__DARWIN_FD_SET FD_SET

__DARWIN_NON_CANCELABLE [References: 67] Defined? True

#define __DARWIN_NON_CANCELABLE 0

defined @ /usr/include/sys/cdefs.h#464

/ usr/ include/ sys/ _select.h: 44-29
cdefs.h: 497-7 463-14
select.h: 120-29

__DARWIN_NO_LONG_LONG [References: 14] Defined? True

#define __DARWIN_NO_LONG_LONG (defined(__STRICT_ANSI__) && (__STDC_VERSION__-0 < 199901L) \
&& !defined(__GNUG__))

defined @ /usr/include/sys/cdefs.h#633

/ usr/ include/ math.h: 499-7
stdlib.h: 92-6 134-6 147-6 167-6 173-6 309-6
wchar.h: 178-6

__DARWIN_NULL [References: 422] Defined? True

#define __DARWIN_NULL ((void *)0)

defined @ /usr/include/sys/_types.h#52

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ clinic/ dictobject.c.h: 20-30
dictobject.c: 431-38 444-20 539-19 541-20 560-9 561-9 578-5 581-9 587-19 590-20 609-14 610-19 615-21 624-17 625-16 626-27 705-24 707-23 715-9 718-28 728-31 734-36 752-28 755-27 764-9 766-28 778-31 783-36 810-5 822-24 824-23 832-9 835-28 848-28 851-27 860-9 864-28 886-5 899-24 901-23 905-5 909-24 920-28 922-27 926-9 929-28 954-5 966-24 968-23 973-5 976-24 986-28 988-27 993-9 996-28 1045-9 1047-47 1049-17 1050-17 1057-46 1059-17 1060-17 1064-5 1080-5 1081-5 1082-5 1095-5 1120-26 1130-5 1135-9 1136-37 1158-13 1173-5 1176-22 1187-5 1222-5 1223-5 1224-5 1232-5 1271-24 1279-21 1285-22 1287-33 1296-29 1301-22 1304-31 1328-16 1329-10 1334-20 1339-24 1345-18 1346-23 1349-20 1353-31 1386-21 1387-16 1388-31 1411-16 1418-20 1428-19 1428-50 1432-67 1436-20 1439-67 1442-20 1461-16 1464-63 1466-16 1485-16 1492-20 1496-63 1498-16 1507-15 1508-16 1531-20 1535-71 1537-16 1538-44 1542-73 1544-16 1605-5 1606-19 1613-18 1653-44 1660-9 1696-44 1703-9 1743-22 1746-13 1780-39 1791-48 1830-49 1852-16 1856-16 1857-44 1863-16 1867-9 1869-20 1876-5 1877-19 1884-18 1902-16 1908-20 1922-34 1923-14 1924-16 1936-24 1942-28 1955-24 1961-28 1969-15 1971-16 1975-43 1982-43 1998-12 2011-19 2014-17 2020-22 2036-21 2036-36 2042-56 2077-18 2088-18 2095-9 2096-9 2110-5 2111-5 2112-12 2133-20 2135-63 2137-16 2138-44 2142-13 2144-28 2146-57 2151-24 2154-16 2164-14 2188-14 2189-16 2208-27 2232-14 2233-16 2254-22 2281-14 2282-16 2285-21 2287-20 2312-22 2347-21 2353-21 2354-9 2360-32 2374-12 2395-5 2397-5 2400-15 2407-16 2409-21 2417-21 2439-51 2457-5 2458-5 2479-14 2479-47 2516-26 2522-69 2556-21 2566-21 2570-60 2581-26 2635-14 2637-16 2640-9 2644-21 2645-26 2648-27 2650-20 2658-13 2666-17 2667-16 2671-12 2677-15 2687-15 2689-16 2697-15 2699-16 2707-15 2709-16 2734-21 2745-70 2746-24 2749-25 2778-20 2811-20 2813-63 2815-16 2816-44 2826-21 2832-16 2838-20 2840-63 2842-16 2843-44 2862-16 2869-20 2872-26 2874-20 2879-16 2881-9 2882-37 2885-20 2896-24 2905-9 2909-13 2921-29 2923-9 2926-9 2946-16 2949-5 2963-29 2966-16 2988-16 2989-16 2994-16 3000-20 3008-41 3021-18 3022-20 3041-40 3048-30 3177-6 3177-25 3195-63 3198-48 3209-63 3212-48 3235-5 3237-17 3238-16 3243-9 3248-23 3250-16 3327-15 3329-16 3341-15 3343-16 3355-15 3366-15 3378-15 3389-15 3412-15 3413-16 3421-30 3423-20 3427-25 3435-5 3436-5 3452-24 3470-6 3470-25 3481-14 3482-16 3489-16 3497-39 3507-48 3521-19 3523-12 3566-14 3567-16 3574-16 3581-39 3591-48 3605-19 3607-12 3650-14 3651-16 3658-16 3665-39 3676-48 3701-23 3702-20 3709-19 3711-12 3756-16 3760-5 3777-17 3778-24 3784-5 3786-24 3789-16 3803-5 3818-24 3827-17 3829-16 3836-16 3839-15 3840-16 3863-17 3867-21 3888-5 3890-5 3897-16 3900-16 3935-16 3948-16 3949-16 3961-24 3970-24 3991-5 3993-19 3994-16 3996-81 3997-16 3999-16 4011-5 4013-19 4014-16 4016-83 4017-16 4019-16 4031-5 4033-19 4034-16 4036-70 4037-16 4039-16 4051-5 4053-19 4054-16 4056-91 4057-16 4059-16 4089-22 4104-20 4114-15 4115-16 4117-40 4122-20 4132-16 4142-6 4142-25 4189-24 4200-24 4207-18 4232-6 4232-25 4279-24 4297-6 4297-25 4345-17 4358-20 4361-16 4364-17 4374-5 4386-5 4388-9 4390-21 4393-25 4397-22 4401-47 4402-35 4410-51 4430-39 4433-40 4439-21 4441-25 4445-22

These macros depend on me:

__DARWIN_NULL NULL PyCFunction_GET_SELF
PyCFunction_New
PyDescr_IsData
PyEval_CallObject
PyIndex_Check
PyIter_Check
PyMem_NEW new_values
PyMem_New
PyMem_RESIZE
PyMem_Resize
PyModuleDef_HEAD_INIT
PyObject_CheckBuffer
PyObject_DelAttr
PyObject_DelAttrString
PyObject_IS_GC _PyObject_GC_MAY_BE_TRACKED MAINTAIN_TRACKING
PyRun_AnyFile
PyRun_AnyFileEx
PyRun_File
PyRun_FileEx
PyRun_InteractiveLoop
PyRun_InteractiveOne
PyRun_SimpleFile
PyRun_SimpleFileEx
PyRun_SimpleString
PyRun_String
Py_CLEAR
Py_CompileString
Py_GETENV
Py_XDECREF Py_XSETREF
Py_XINCREF
_PyDict_HasSplitTable
_PyObject_CallNoArg
_PyObject_FastCall _PyObject_CallArg1
_PyObject_CallNoArg
_PyObject_GC_UNTRACK
_Py_static_string_init _Py_static_string _Py_IDENTIFIER

__DARWIN_ONLY_64_BIT_INO_T [References: 130] Defined? True

#define __DARWIN_ONLY_64_BIT_INO_T 0

defined @ /usr/include/sys/cdefs.h#377

/ usr/ include/ sys/ cdefs.h: 438-9 443-9 478-9 655-5
stat.h: 219-6 385-6

__DARWIN_ONLY_UNIX_CONFORMANCE [References: 127] Defined? True

#define __DARWIN_ONLY_UNIX_CONFORMANCE 0

defined @ /usr/include/sys/cdefs.h#403

/ usr/ include/ sys/ cdefs.h: 408-9 471-7 671-5 399-14

__DARWIN_ONLY_VERS_1050 [References: 96] Defined? True

#define __DARWIN_ONLY_VERS_1050 0

defined @ /usr/include/sys/cdefs.h#379

/ usr/ include/ sys/ cdefs.h: 454-9 488-9 663-5

__DARWIN_OS_INLINE [References: 4] Defined? True

#define __DARWIN_OS_INLINE static __inline__

defined @ /usr/include/libkern/i386/_OSByteOrder.h#38

/ usr/ include/ libkern/ _OSByteOrder.h: 84-14
i386/ _OSByteOrder.h: 44-1 53-1 91-1

__DARWIN_STRUCT_STAT64 [References: 1] Defined? True

#define __DARWIN_STRUCT_STAT64 { dev_t st_dev; mode_t st_mode; nlink_t st_nlink; \
__darwin_ino64_t st_ino; uid_t st_uid; gid_t st_gid; dev_t st_rdev; \
__DARWIN_STRUCT_STAT64_TIMES off_t st_size; blkcnt_t st_blocks; blksize_t st_blksize; \
__uint32_t st_flags; __uint32_t st_gen; __int32_t st_lspare; __int64_t st_qspare[2]; \
}

defined @ /usr/include/sys/stat.h#158

/ usr/ include/ sys/ stat.h: 182-13

I depend on these macros:

__DARWIN_STRUCT_STAT64 __DARWIN_STRUCT_STAT64_TIMES

__DARWIN_STRUCT_STAT64_TIMES [References: 1] Defined? True

#define __DARWIN_STRUCT_STAT64_TIMES struct timespec st_atimespec; struct timespec \
st_mtimespec; struct timespec st_ctimespec; struct timespec st_birthtimespec;

defined @ /usr/include/sys/stat.h#128

/ usr/ include/ sys/ stat.h: 182-13

These macros depend on me:

__DARWIN_STRUCT_STAT64_TIMES __DARWIN_STRUCT_STAT64

__DARWIN_SUF_1050 [References: 1] Defined? True

#define __DARWIN_SUF_1050 "$1050"

defined @ /usr/include/sys/cdefs.h#491

/ usr/ include/ stdlib.h: 267-23

These macros depend on me:

__DARWIN_SUF_1050 __DARWIN_1050
__DARWIN_1050ALIAS
__DARWIN_1050ALIAS_C
__DARWIN_1050ALIAS_I
__DARWIN_1050INODE64

__DARWIN_SUF_64_BIT_INO_T [References: 7] Defined? True

#define __DARWIN_SUF_64_BIT_INO_T "$INODE64"

defined @ /usr/include/sys/cdefs.h#481

/ usr/ include/ sys/ stat.h: 354-31 355-40 358-39 364-52 376-46 379-55 382-54

These macros depend on me:

__DARWIN_SUF_64_BIT_INO_T __DARWIN_1050ALIAS_I
__DARWIN_1050INODE64
__DARWIN_ALIAS_I
__DARWIN_INODE64

__DARWIN_SUF_EXTSN [References: 7] Defined? True

#define __DARWIN_SUF_EXTSN "$DARWIN_EXTSN"

defined @ /usr/include/sys/cdefs.h#510

/ usr/ include/ stdio.h: 240-63 300-33 317-41
stdlib.h: 210-60
sys/ _select.h: 42-3
select.h: 118-3
unistd.h: 453-31

These macros depend on me:

__DARWIN_SUF_EXTSN __DARWIN_EXTSN
__DARWIN_EXTSN_C

__DARWIN_SUF_NON_CANCELABLE [References: 18] Defined? True

#define __DARWIN_SUF_NON_CANCELABLE

defined @ /usr/include/sys/cdefs.h#500

/ usr/ include/ stdlib.h: 177-27
sys/ _select.h: 42-3
select.h: 118-3
termios.h: 337-18
wait.h: 248-19 249-34 251-46
time.h: 140-59
unistd.h: 436-17 467-18 471-36 480-23 495-43 572-29 576-44 578-51 604-25 608-17

These macros depend on me:

__DARWIN_SUF_NON_CANCELABLE __DARWIN_1050ALIAS_C
__DARWIN_ALIAS_C
__DARWIN_EXTSN_C
__DARWIN_NOCANCEL

__DARWIN_SUF_UNIX03 [References: 50] Defined? True

#define __DARWIN_SUF_UNIX03 "$UNIX2003"

defined @ /usr/include/sys/cdefs.h#474

/ usr/ include/ stdio.h: 246-56 249-37 254-76 391-43
stdlib.h: 162-39 163-38 177-27 206-21 216-46 218-28 231-29
string.h: 81-21
sys/ resource.h: 387-37 393-43
stat.h: 352-33 353-25
termios.h: 337-18
wait.h: 248-19 249-34 251-46
time.h: 101-22 107-21 113-28 114-99 115-90 140-59
unistd.h: 436-17 467-18 471-36 480-23 488-37 495-43 506-38 508-49 549-28 570-41 572-29 574-16 576-44 578-51 591-22 596-29 598-29 604-25 608-17 695-28 700-29 729-63 730-63
wchar.h: 131-36

These macros depend on me:

__DARWIN_SUF_UNIX03 __DARWIN_1050ALIAS
__DARWIN_1050ALIAS_C
__DARWIN_1050ALIAS_I
__DARWIN_ALIAS
__DARWIN_ALIAS_C
__DARWIN_ALIAS_I

__DARWIN_UNIX03 [References: 211] Defined? True

#define __DARWIN_UNIX03 1

defined @ /usr/include/sys/cdefs.h#419

/ usr/ include/ assert.h: 91-5
i386/ _mcontext.h: 36-5 74-5
mach/ i386/ _structs.h: 41-5 87-5 145-5 189-5 208-5 230-5 400-5 420-5 452-5 507-5 749-5 769-5
stdlib.h: 191-5 209-6 217-5 224-5 230-5
sys/ _types/ _sigaltstack.h: 31-5
_ucontext.h: 29-5
cdefs.h: 445-131 456-129 470-5 679-5 407-14
errno.h: 145-6 249-5
signal.h: 125-30
syslimits.h: 105-5
termios.h: 162-39
wait.h: 143-5 169-5 239-7
time.h: 87-5 100-5 130-6
unistd.h: 487-5 548-5 590-5 694-5

__DARWIN_VERS_1050 [References: 63] Defined? True

#define __DARWIN_VERS_1050 1

defined @ /usr/include/sys/cdefs.h#459

/ usr/ include/ sys/ cdefs.h: 487-7 453-14

__DARWIN_WCHAR_MAX [References: 12] Defined? True

#define __DARWIN_WCHAR_MAX 0x7fffffff

defined @ /usr/include/_types.h#50

/ usr/ include/ _types.h: 53-5

__DARWIN_WCTYPE_TOP_inline [References: 14] Defined? True

#define __DARWIN_WCTYPE_TOP_inline __header_inline

defined @ /usr/include/_wctype.h#54

/ usr/ include/ _wctype.h: 65-1 71-1 77-1 83-1 89-1 95-1 101-1 107-1 113-1 119-1 125-1 131-1 137-1 143-1

I depend on these macros:

__DARWIN_WCTYPE_TOP_inline __header_inline

__DARWIN_howmany [References: 1] Defined? True

#define __DARWIN_howmany(x,y) ((((x) % (y)) == 0) ? ((x) / (y)) : (((x) / (y)) + 1))

defined @ /usr/include/sys/_types/_fd_def.h#43

/ usr/ include/ sys/ _types/ _fd_def.h: 47-21

__DECONST [References: 31] Defined? True

#define __DECONST(type,var) __CAST_AWAY_QUALIFIER(var, const, type)

defined @ /usr/include/sys/cdefs.h#327

/ usr/ include/ sys/ cdefs.h: 327-1

I depend on these macros:

__DECONST __CAST_AWAY_QUALIFIER
const

__DEQUALIFY [References: 31] Defined? True

#define __DEQUALIFY(type,var) __CAST_AWAY_QUALIFIER(var, const volatile, type)

defined @ /usr/include/sys/cdefs.h#335

/ usr/ include/ sys/ cdefs.h: 335-1

I depend on these macros:

__DEQUALIFY __CAST_AWAY_QUALIFIER
const
volatile

__DEVOLATILE [References: 31] Defined? True

#define __DEVOLATILE(type,var) __CAST_AWAY_QUALIFIER(var, volatile, type)

defined @ /usr/include/sys/cdefs.h#331

/ usr/ include/ sys/ cdefs.h: 331-1

I depend on these macros:

__DEVOLATILE __CAST_AWAY_QUALIFIER
volatile

__END_DECLS [References: 51] Defined? True

#define __END_DECLS

defined @ /usr/include/sys/cdefs.h#75

/ usr/ include/ _wctype.h: 173-1
alloca.h: 33-1
assert.h: 80-1
ctype.h: 132-1 149-1 190-1
inttypes.h: 279-1
math.h: 776-1
runetype.h: 113-1
stdio.h: 159-1 281-1 305-1 321-1 340-1 392-1 416-1 426-1 443-1 474-1
stdlib.h: 323-1
string.h: 92-1 105-1 119-1 135-1 146-1 169-1
strings.h: 80-1 90-1
sys/ _types/ _fd_def.h: 49-1
errno.h: 82-1
resource.h: 394-1
select.h: 131-1
signal.h: 391-1
stat.h: 396-1
stdio.h: 41-1
termios.h: 346-1
time.h: 204-1
unistd.h: 187-1 211-1
wait.h: 257-1
termios.h: 33-1
time.h: 142-1
unistd.h: 496-1 512-1 612-1 630-1 751-1
wchar.h: 159-1 184-1 205-1 217-1

__EXTENSIONS__ [References: 3] Defined? True

#define __EXTENSIONS__ 1

defined @ /Users/paulross/dev/Python-3.6.2/pyconfig.h#1364

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1364-1

__FBSDID [References: 31] Defined? True

#define __FBSDID(s)

defined @ /usr/include/sys/cdefs.h#323

/ usr/ include/ sys/ cdefs.h: 323-1

__GNUC__ [References: 563] Defined? True

#define __GNUC__ 4

defined @ Unnamed Pre-include#5

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyatomic.h: 110-13
pymacro.h: 55-14 55-63 55-107 93-1
pyport.h: 494-13 494-28 494-61 696-15 696-28 696-50 706-13 706-26
usr/ include/ _types.h: 29-5 29-21
_wctype.h: 63-45
alloca.h: 35-13 35-26
assert.h: 61-1
ctype.h: 125-45
i386/ _types.h: 37-1 97-6
libkern/ _OSByteOrder.h: 63-13
math.h: 56-13 148-14
secure/ _stdio.h: 41-55 51-56 60-56 69-57
_string.h: 62-54 68-55 74-54 80-54 87-54 93-71 93-88 116-55 122-54 129-55
stdio.h: 347-13 490-14
string.h: 184-14
sys/ _types.h: 82-13 82-27 82-67
_types/ _fd_def.h: 62-5 62-21
cdefs.h: 80-14 80-27 123-1 133-1 179-12 179-27 179-47 244-118 249-15 251-15 261-1 279-15 279-30 279-48

__IOS_AVAILABLE [References: 17] Defined? True

#define __IOS_AVAILABLE(_vers)

defined @ /usr/include/Availability.h#268

/ usr/ include/ Availability.h: 268-3

__IOS_DEPRECATED [References: 17] Defined? True

#define __IOS_DEPRECATED(_start,_dep,_msg)

defined @ /usr/include/Availability.h#272

/ usr/ include/ Availability.h: 272-3

__IOS_PROHIBITED [References: 17] Defined? True

#define __IOS_PROHIBITED

defined @ /usr/include/Availability.h#264

/ usr/ include/ Availability.h: 264-3

__IOS_UNAVAILABLE [References: 17] Defined? True

#define __IOS_UNAVAILABLE

defined @ /usr/include/Availability.h#260

/ usr/ include/ Availability.h: 260-3

__IPHONE_2_0 [References: 20] Defined? True

#define __IPHONE_2_0 20000

defined @ /usr/include/Availability.h#138

/ usr/ include/ AvailabilityInternal.h: 86-44 2127-47
inttypes.h: 234-1 244-1 249-1 255-1 262-1 268-1
stdlib.h: 177-52 267-45
strings.h: 85-17 87-15 88-17
sys/ resource.h: 385-30 391-35
stat.h: 377-40 378-34
time.h: 191-51
unistd.h: 700-29

__IPHONE_2_1 [References: 25] Defined? True

#define __IPHONE_2_1 20100

defined @ /usr/include/Availability.h#139

/ usr/ include/ AvailabilityInternal.h: 2139-47 2148-48 2169-48 2201-48 2248-48 2314-48 2403-48 2519-48 2666-48 2848-48 3069-48 3333-48 3644-48 4006-48 4423-48 4899-48 5438-48 6044-48 6721-48 7473-48 8304-48 9218-48 10219-48 11311-48 12498-48

__IPHONE_2_2 [References: 1] Defined? True

#define __IPHONE_2_2 20200

defined @ /usr/include/Availability.h#140

/ usr/ include/ AvailabilityInternal.h: 2160-47

__IPHONE_3_0 [References: 8] Defined? True

#define __IPHONE_3_0 30000

defined @ /usr/include/Availability.h#141

/ usr/ include/ AvailabilityInternal.h: 2192-47
stdlib.h: 156-47
string.h: 156-56 157-56 158-57
unistd.h: 727-56 728-56 741-51

__IPHONE_3_1 [References: 4] Defined? True

#define __IPHONE_3_1 30100

defined @ /usr/include/Availability.h#142

/ usr/ include/ AvailabilityInternal.h: 2239-47
math.h: 577-38 578-39 579-50

__IPHONE_3_2 [References: 17] Defined? True

#define __IPHONE_3_2 30200

defined @ /usr/include/Availability.h#143

/ usr/ include/ AvailabilityInternal.h: 2305-47
math.h: 687-26 688-26 689-31 690-26 691-26 692-31
stdio.h: 221-85 240-63 300-33 317-41
stdlib.h: 288-43 294-52
unistd.h: 419-85 453-31

__IPHONE_4_0 [References: 1] Defined? True

#define __IPHONE_4_0 40000

defined @ /usr/include/Availability.h#144

/ usr/ include/ AvailabilityInternal.h: 2394-47

__IPHONE_4_1 [References: 1] Defined? True

#define __IPHONE_4_1 40100

defined @ /usr/include/Availability.h#145

/ usr/ include/ AvailabilityInternal.h: 2510-47

__IPHONE_4_2 [References: 1] Defined? True

#define __IPHONE_4_2 40200

defined @ /usr/include/Availability.h#146

/ usr/ include/ AvailabilityInternal.h: 2657-47

__IPHONE_4_3 [References: 18] Defined? True

#define __IPHONE_4_3 40300

defined @ /usr/include/Availability.h#147

/ usr/ include/ AvailabilityInternal.h: 2839-47
stdio.h: 439-67 440-72 441-83 442-77
stdlib.h: 245-57 248-49
string.h: 131-48 132-37 133-40 155-58
wchar.h: 197-67 198-76 199-34 200-54 201-65 202-49 214-47

__IPHONE_5_0 [References: 2] Defined? True

#define __IPHONE_5_0 50000

defined @ /usr/include/Availability.h#148

/ usr/ include/ AvailabilityInternal.h: 3060-47
unistd.h: 674-48

__IPHONE_5_1 [References: 1] Defined? True

#define __IPHONE_5_1 50100

defined @ /usr/include/Availability.h#149

/ usr/ include/ AvailabilityInternal.h: 3324-47

__IPHONE_6_0 [References: 3] Defined? True

#define __IPHONE_6_0 60000

defined @ /usr/include/Availability.h#150

/ usr/ include/ AvailabilityInternal.h: 3635-47
unistd.h: 746-31 747-39

__IPHONE_6_1 [References: 1] Defined? True

#define __IPHONE_6_1 60100

defined @ /usr/include/Availability.h#151

/ usr/ include/ AvailabilityInternal.h: 3997-47

__IPHONE_7_0 [References: 13] Defined? True

#define __IPHONE_7_0 70000

defined @ /usr/include/Availability.h#152

/ usr/ include/ AvailabilityInternal.h: 4414-47
gethostuuid.h: 36-86
math.h: 597-30 598-31 614-30 615-31 616-30 617-31 618-30 619-31
string.h: 145-49
strings.h: 86-23 89-23

__IPHONE_7_1 [References: 1] Defined? True

#define __IPHONE_7_1 70100

defined @ /usr/include/Availability.h#153

/ usr/ include/ AvailabilityInternal.h: 4890-47

__IPHONE_8_0 [References: 14] Defined? True

#define __IPHONE_8_0 80000

defined @ /usr/include/Availability.h#154

/ usr/ include/ AvailabilityInternal.h: 5429-47
stdlib.h: 177-52
sys/ stat.h: 363-46 364-78 365-40
stdio.h: 39-52
unistd.h: 185-60 203-44 204-52 205-55 206-55 207-48 208-38 209-77

__IPHONE_8_1 [References: 1] Defined? True

#define __IPHONE_8_1 80100

defined @ /usr/include/Availability.h#155

/ usr/ include/ AvailabilityInternal.h: 6035-47

__IPHONE_8_2 [References: 1] Defined? True

#define __IPHONE_8_2 80200

defined @ /usr/include/Availability.h#156

/ usr/ include/ AvailabilityInternal.h: 6712-47

__IPHONE_8_3 [References: 1] Defined? True

#define __IPHONE_8_3 80300

defined @ /usr/include/Availability.h#157

/ usr/ include/ AvailabilityInternal.h: 7464-47

__IPHONE_8_4 [References: 1] Defined? True

#define __IPHONE_8_4 80400

defined @ /usr/include/Availability.h#158

/ usr/ include/ AvailabilityInternal.h: 8295-47

__IPHONE_9_0 [References: 1] Defined? True

#define __IPHONE_9_0 90000

defined @ /usr/include/Availability.h#159

/ usr/ include/ AvailabilityInternal.h: 9209-47

__IPHONE_9_1 [References: 1] Defined? True

#define __IPHONE_9_1 90100

defined @ /usr/include/Availability.h#160

/ usr/ include/ AvailabilityInternal.h: 10210-47

__IPHONE_9_2 [References: 1] Defined? True

#define __IPHONE_9_2 90200

defined @ /usr/include/Availability.h#161

/ usr/ include/ AvailabilityInternal.h: 11302-47

__IPHONE_9_3 [References: 1] Defined? True

#define __IPHONE_9_3 90300

defined @ /usr/include/Availability.h#162

/ usr/ include/ AvailabilityInternal.h: 12489-47

__MAC_10_0 [References: 20] Defined? True

#define __MAC_10_0 1000

defined @ /usr/include/Availability.h#119

/ usr/ include/ AvailabilityInternal.h: 14880-46
math.h: 565-27 566-27 567-33 569-26 687-26 688-26 689-31 690-26 691-26 692-31 751-33 753-34 755-36 757-27 759-29 761-35 772-40
stdlib.h: 177-52 267-45

__MAC_10_1 [References: 2] Defined? True

#define __MAC_10_1 1010

defined @ /usr/include/Availability.h#120

/ usr/ include/ AvailabilityInternal.h: 14873-46 14888-48

__MAC_10_10 [References: 14] Defined? True

#define __MAC_10_10 101000

defined @ /usr/include/Availability.h#129

/ usr/ include/ AvailabilityInternal.h: 14810-46 15131-48
sys/ stat.h: 363-46 364-78 365-40
stdio.h: 39-52
unistd.h: 185-60 203-44 204-52 205-55 206-55 207-48 208-38 209-77

__MAC_10_10_2 [References: 2] Defined? True

#define __MAC_10_10_2 101002

defined @ /usr/include/Availability.h#130

/ usr/ include/ AvailabilityInternal.h: 14803-46 15178-48

__MAC_10_10_3 [References: 2] Defined? True

#define __MAC_10_10_3 101003

defined @ /usr/include/Availability.h#131

/ usr/ include/ AvailabilityInternal.h: 14796-46 15229-48

__MAC_10_11 [References: 2] Defined? True

#define __MAC_10_11 101100

defined @ /usr/include/Availability.h#132

/ usr/ include/ AvailabilityInternal.h: 14789-46 15284-48

__MAC_10_11_2 [References: 2] Defined? True

#define __MAC_10_11_2 101102

defined @ /usr/include/Availability.h#133

/ usr/ include/ AvailabilityInternal.h: 14782-46 15343-48

__MAC_10_11_3 [References: 2] Defined? True

#define __MAC_10_11_3 101103

defined @ /usr/include/Availability.h#134

/ usr/ include/ AvailabilityInternal.h: 14775-46 15406-48

__MAC_10_11_4 [References: 2] Defined? True

#define __MAC_10_11_4 101104

defined @ /usr/include/Availability.h#135

/ usr/ include/ AvailabilityInternal.h: 14768-46 15473-48

__MAC_10_2 [References: 2] Defined? True

#define __MAC_10_2 1020

defined @ /usr/include/Availability.h#121

/ usr/ include/ AvailabilityInternal.h: 14866-46 14899-48

__MAC_10_3 [References: 2] Defined? True

#define __MAC_10_3 1030

defined @ /usr/include/Availability.h#122

/ usr/ include/ AvailabilityInternal.h: 14859-46 14914-48

__MAC_10_4 [References: 9] Defined? True

#define __MAC_10_4 1040

defined @ /usr/include/Availability.h#123

/ usr/ include/ AvailabilityInternal.h: 14852-46 14933-48
inttypes.h: 234-1 244-1 249-1 255-1 262-1 268-1
sys/ stat.h: 383-26

__MAC_10_5 [References: 15] Defined? True

#define __MAC_10_5 1050

defined @ /usr/include/Availability.h#124

/ usr/ include/ AvailabilityInternal.h: 14845-46 14956-48
gethostuuid.h: 39-50
stdlib.h: 267-45
string.h: 156-56 157-56 158-57
strings.h: 85-17 87-15 88-17
sys/ resource.h: 385-30 391-35
stat.h: 377-40 378-34
time.h: 191-51

__MAC_10_6 [References: 21] Defined? True

#define __MAC_10_6 1060

defined @ /usr/include/Availability.h#125

/ usr/ include/ AvailabilityInternal.h: 14838-46 14983-48
math.h: 577-38 578-39 579-50
stdio.h: 223-85 240-63 300-33 317-41
stdlib.h: 156-47 288-43 294-52
sys/ stat.h: 383-26
unistd.h: 421-85 453-31 700-29 727-56 728-56 741-51

__MAC_10_7 [References: 19] Defined? True

#define __MAC_10_7 1070

defined @ /usr/include/Availability.h#126

/ usr/ include/ AvailabilityInternal.h: 14831-46 15014-48
stdio.h: 439-67 440-72 441-83 442-77
stdlib.h: 245-57 248-49
string.h: 131-48 132-37 133-40 155-58
wchar.h: 197-67 198-76 199-34 200-54 201-65 202-49 214-47

__MAC_10_8 [References: 5] Defined? True

#define __MAC_10_8 1080

defined @ /usr/include/Availability.h#127

/ usr/ include/ AvailabilityInternal.h: 14824-46 15049-48
unistd.h: 674-48 746-31 747-39

__MAC_10_9 [References: 23] Defined? True

#define __MAC_10_9 1090

defined @ /usr/include/Availability.h#128

/ usr/ include/ AvailabilityInternal.h: 14817-46 15088-48
math.h: 565-27 566-27 567-33 597-30 598-31 614-30 615-31 616-30 617-31 618-30 619-31 751-33 753-34 755-36 757-27 759-29 761-35 772-40
string.h: 145-49
strings.h: 86-23 89-23

__OSX_AVAILABLE [References: 17] Defined? True

#define __OSX_AVAILABLE(_vers)

defined @ /usr/include/Availability.h#241

/ usr/ include/ Availability.h: 241-3

__OSX_AVAILABLE_BUT_DEPRECATED [References: 11] Defined? True

#define __OSX_AVAILABLE_BUT_DEPRECATED(_osxIntro,_osxDep,_iosIntro,_iosDep)

defined @ /usr/include/Availability.h#190

/ usr/ include/ math.h: 565-27 566-27 567-33 751-33 753-34 755-36 757-27 759-29 761-35 772-40
sys/ stat.h: 383-26

__OSX_AVAILABLE_BUT_DEPRECATED_MSG [References: 2] Defined? True

#define __OSX_AVAILABLE_BUT_DEPRECATED_MSG(_osxIntro,_osxDep,_iosIntro,_iosDep,_msg)

defined @ /usr/include/Availability.h#191

/ usr/ include/ stdlib.h: 177-52 267-45

__OSX_AVAILABLE_STARTING [References: 77] Defined? True

#define __OSX_AVAILABLE_STARTING(_osx,_ios)

defined @ /usr/include/Availability.h#189

/ usr/ include/ gethostuuid.h: 39-50
inttypes.h: 234-1 244-1 249-1 255-1 262-1 268-1
math.h: 569-26 577-38 578-39 579-50 597-30 598-31 614-30 615-31 616-30 617-31 618-30 619-31 687-26 688-26 689-31 690-26 691-26 692-31
stdio.h: 439-67 440-72 441-83 442-77
stdlib.h: 156-47 245-57 248-49 288-43 294-52
string.h: 131-48 132-37 133-40 145-49 155-58 156-56 157-56 158-57
strings.h: 85-17 86-23 87-15 88-17 89-23
sys/ resource.h: 385-30 391-35
stat.h: 363-46 364-78 365-40 377-40 378-34
stdio.h: 39-52
time.h: 191-51
unistd.h: 185-60 203-44 204-52 205-55 206-55 207-48 208-38 209-77
unistd.h: 674-48 727-56 728-56 741-51 746-31 747-39
wchar.h: 197-67 198-76 199-34 200-54 201-65 202-49 214-47

__OSX_DEPRECATED [References: 17] Defined? True

#define __OSX_DEPRECATED(_start,_dep,_msg)

defined @ /usr/include/Availability.h#245

/ usr/ include/ Availability.h: 245-3

__OSX_UNAVAILABLE [References: 17] Defined? True

#define __OSX_UNAVAILABLE

defined @ /usr/include/Availability.h#237

/ usr/ include/ Availability.h: 237-3

__POSIX_C_DEPRECATED [References: 10] Defined? True

#define __POSIX_C_DEPRECATED(ver) ___POSIX_C_DEPRECATED_STARTING_##ver

defined @ /usr/include/sys/cdefs.h#601

/ usr/ include/ strings.h: 70-47 71-43 72-29 73-32 74-33
unistd.h: 539-27 560-26 561-32 562-29 567-21

__PROJECT_VERSION [References: 31] Defined? True

#define __PROJECT_VERSION(s) __IDSTRING(project_version,s)

defined @ /usr/include/sys/cdefs.h#318

/ usr/ include/ sys/ cdefs.h: 318-1

I depend on these macros:

__PROJECT_VERSION __IDSTRING __used
const

__PTHREAD_ATTR_SIZE__ [References: 1] Defined? True

#define __PTHREAD_ATTR_SIZE__ 36

defined @ /usr/include/sys/_pthread/_pthread_types.h#47

/ usr/ include/ sys/ _pthread/ _pthread_types.h: 65-16

__PTHREAD_CONDATTR_SIZE__ [References: 1] Defined? True

#define __PTHREAD_CONDATTR_SIZE__ 4

defined @ /usr/include/sys/_pthread/_pthread_types.h#50

/ usr/ include/ sys/ _pthread/ _pthread_types.h: 75-16

__PTHREAD_COND_SIZE__ [References: 1] Defined? True

#define __PTHREAD_COND_SIZE__ 24

defined @ /usr/include/sys/_pthread/_pthread_types.h#51

/ usr/ include/ sys/ _pthread/ _pthread_types.h: 70-16

__PTHREAD_MUTEXATTR_SIZE__ [References: 1] Defined? True

#define __PTHREAD_MUTEXATTR_SIZE__ 8

defined @ /usr/include/sys/_pthread/_pthread_types.h#48

/ usr/ include/ sys/ _pthread/ _pthread_types.h: 85-16

__PTHREAD_MUTEX_SIZE__ [References: 1] Defined? True

#define __PTHREAD_MUTEX_SIZE__ 40

defined @ /usr/include/sys/_pthread/_pthread_types.h#49

/ usr/ include/ sys/ _pthread/ _pthread_types.h: 80-16

__PTHREAD_ONCE_SIZE__ [References: 1] Defined? True

#define __PTHREAD_ONCE_SIZE__ 4

defined @ /usr/include/sys/_pthread/_pthread_types.h#52

/ usr/ include/ sys/ _pthread/ _pthread_types.h: 90-16

__PTHREAD_RWLOCKATTR_SIZE__ [References: 1] Defined? True

#define __PTHREAD_RWLOCKATTR_SIZE__ 12

defined @ /usr/include/sys/_pthread/_pthread_types.h#54

/ usr/ include/ sys/ _pthread/ _pthread_types.h: 100-16

__PTHREAD_RWLOCK_SIZE__ [References: 1] Defined? True

#define __PTHREAD_RWLOCK_SIZE__ 124

defined @ /usr/include/sys/_pthread/_pthread_types.h#53

/ usr/ include/ sys/ _pthread/ _pthread_types.h: 95-16

__PTHREAD_SIZE__ [References: 1] Defined? True

#define __PTHREAD_SIZE__ 4088

defined @ /usr/include/sys/_pthread/_pthread_types.h#46

/ usr/ include/ sys/ _pthread/ _pthread_types.h: 106-16

__RCSID [References: 31] Defined? True

#define __RCSID(s) __IDSTRING(rcsid,s)

defined @ /usr/include/sys/cdefs.h#310

/ usr/ include/ sys/ cdefs.h: 310-1

I depend on these macros:

__RCSID __IDSTRING __used
const

__SCCSID [References: 31] Defined? True

#define __SCCSID(s) __IDSTRING(sccsid,s)

defined @ /usr/include/sys/cdefs.h#314

/ usr/ include/ sys/ cdefs.h: 314-1

I depend on these macros:

__SCCSID __IDSTRING __used
const

__STDC_WANT_LIB_EXT1__ [References: 41] Defined? True

#define __STDC_WANT_LIB_EXT1__ 1

defined @ /usr/include/sys/cdefs.h#625

/ usr/ include/ stdint.h: 158-13 158-40
string.h: 140-13 140-40
sys/ cdefs.h: 624-14
errno.h: 75-13 75-40

__STRING [References: 65] Defined? True

#define __STRING(x) "x"

defined @ /usr/include/sys/cdefs.h#130

/ usr/ include/ stdio.h: 240-63 246-56 249-37 254-76 300-33 317-41 391-43
stdlib.h: 162-39 163-38 177-27 206-21 210-60 216-46 218-28 231-29 267-23
string.h: 81-21
sys/ _select.h: 42-3
resource.h: 387-37 393-43
select.h: 118-3
stat.h: 352-33 353-25 354-31 355-40 358-39 364-52 376-46 379-55 382-54
termios.h: 337-18
wait.h: 248-19 249-34 251-46
time.h: 101-22 107-21 113-28 114-99 115-90 140-59
unistd.h: 436-17 453-31 467-18 471-36 480-23 488-37 495-43 506-38 508-49 549-28 570-41 572-29 574-16 576-44 578-51 591-22 596-29 598-29 604-25 608-17 695-28 700-29 729-63 730-63
wchar.h: 131-36

These macros depend on me:

__STRING __DARWIN_1050
__DARWIN_1050ALIAS
__DARWIN_1050ALIAS_C
__DARWIN_1050ALIAS_I
__DARWIN_1050INODE64
__DARWIN_ALIAS
__DARWIN_ALIAS_C
__DARWIN_ALIAS_I
__DARWIN_EXTSN
__DARWIN_EXTSN_C
__DARWIN_INODE64
__DARWIN_NOCANCEL

__SYS_APPLEAPIOPTS_H__ [References: 3] Defined? True

#define __SYS_APPLEAPIOPTS_H__

defined @ /usr/include/sys/appleapiopts.h#30

/ usr/ include/ sys/ appleapiopts.h: 30-1

__TVOS_AVAILABLE [References: 17] Defined? True

#define __TVOS_AVAILABLE(_vers)

defined @ /usr/include/Availability.h#295

/ usr/ include/ Availability.h: 295-3

__TVOS_DEPRECATED [References: 17] Defined? True

#define __TVOS_DEPRECATED(_start,_dep,_msg)

defined @ /usr/include/Availability.h#299

/ usr/ include/ Availability.h: 299-3

__TVOS_PROHIBITED [References: 35] Defined? True

#define __TVOS_PROHIBITED

defined @ /usr/include/Availability.h#291

/ usr/ include/ Availability.h: 291-3
stdlib.h: 177-188 267-186
unistd.h: 440-66 441-67 442-67 443-63 444-80 445-64 446-40 536-35 585-35 605-41 648-83 650-79 708-45 731-78 732-127 739-141

__TVOS_UNAVAILABLE [References: 17] Defined? True

#define __TVOS_UNAVAILABLE

defined @ /usr/include/Availability.h#287

/ usr/ include/ Availability.h: 287-3

__TYPES_H_ [References: 11] Defined? True

#define __TYPES_H_

defined @ /usr/include/_types.h#25

/ usr/ include/ _types.h: 25-1

__WATCHOS_AVAILABLE [References: 17] Defined? True

#define __WATCHOS_AVAILABLE(_vers)

defined @ /usr/include/Availability.h#322

/ usr/ include/ Availability.h: 322-3

__WATCHOS_DEPRECATED [References: 17] Defined? True

#define __WATCHOS_DEPRECATED(_start,_dep,_msg)

defined @ /usr/include/Availability.h#326

/ usr/ include/ Availability.h: 326-3

__WATCHOS_PROHIBITED [References: 35] Defined? True

#define __WATCHOS_PROHIBITED

defined @ /usr/include/Availability.h#318

/ usr/ include/ Availability.h: 318-3
stdlib.h: 177-167 267-165
unistd.h: 440-45 441-46 442-46 443-42 444-59 445-43 446-19 536-14 585-14 605-20 648-62 650-58 708-24 731-57 732-106 739-120

__WATCHOS_UNAVAILABLE [References: 17] Defined? True

#define __WATCHOS_UNAVAILABLE

defined @ /usr/include/Availability.h#314

/ usr/ include/ Availability.h: 314-3

__WORDSIZE [References: 8] Defined? True

#define __WORDSIZE 32

defined @ /usr/include/stdint.h#12

/ usr/ include/ stdint.h: 123-5 131-5 144-5 152-5

__XNU_PRIVATE_EXTERN [References: 31] Defined? True

#define __XNU_PRIVATE_EXTERN __attribute__((visibility("hidden")))

defined @ /usr/include/sys/cdefs.h#698

/ usr/ include/ sys/ cdefs.h: 698-1

___POSIX_C_DEPRECATED_STARTING_199506L [References: 4] Defined? True

#define ___POSIX_C_DEPRECATED_STARTING_199506L

defined @ /usr/include/sys/_posix_availability.h#59

/ usr/ include/ unistd.h: 539-27 560-26 561-32 562-29

___POSIX_C_DEPRECATED_STARTING_200112L [References: 6] Defined? True

#define ___POSIX_C_DEPRECATED_STARTING_200112L

defined @ /usr/include/sys/_posix_availability.h#65

/ usr/ include/ strings.h: 70-47 71-43 72-29 73-32 74-33
unistd.h: 567-21

__darwin_obsz0 [References: 2] Defined? True

#define __darwin_obsz0(object) __builtin_object_size (object, 0)

defined @ /usr/include/secure/_common.h#38

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 549-5 550-5

These macros depend on me:

__darwin_obsz0 memcpy Py_MEMCPY
Py_UNICODE_COPY
memmove
memset

__dead [References: 31] Defined? True

#define __dead

defined @ /usr/include/sys/cdefs.h#198

/ usr/ include/ sys/ cdefs.h: 198-1

__dead2 [References: 6] Defined? True

#define __dead2 __attribute__((noreturn))

defined @ /usr/include/sys/cdefs.h#155

/ usr/ include/ assert.h: 76-66
stdlib.h: 128-19 142-17 182-17
unistd.h: 429-18 645-18

__deprecated [References: 2] Defined? True

#define __deprecated __attribute__((deprecated))

defined @ /usr/include/sys/cdefs.h#176

/ usr/ include/ unistd.h: 536-1 585-1

__deprecated_msg [References: 2] Defined? True

#define __deprecated_msg(_msg) __attribute__((deprecated))

defined @ /usr/include/sys/cdefs.h#182

/ usr/ include/ stdio.h: 274-1 389-1

__has_attribute [References: 108] Defined? True

#define __has_attribute(x) 0

defined @ Unnamed Pre-include#3

/ usr/ include/ Availability.h: 228-13 229-7 250-13 251-7
AvailabilityInternal.h: 91-17 92-13 13788-17 13789-13
sys/ cdefs.h: 98-1

__has_builtin [References: 49] Defined? True

#define __has_builtin(x) 0

defined @ /usr/include/sys/cdefs.h#89

/ usr/ include/ secure/ _stdio.h: 36-1 41-5 51-5 60-5 69-5
_string.h: 38-1 55-5 62-5 68-5 74-5 80-5 87-5 93-5 102-5 108-5 116-5 122-5 129-5
sys/ cdefs.h: 89-1

__has_extension [References: 96] Defined? True

#define __has_extension(x) 0

defined @ Unnamed Pre-include#2

/ usr/ include/ sys/ cdefs.h: 101-1 178-5 185-5

__has_feature [References: 690] Defined? True

#define __has_feature(x) 0

defined @ Unnamed Pre-include#1

/ usr/ include/ Availability.h: 195-13 196-7 210-13 211-7 277-13 278-7 304-13 305-7
AvailabilityInternal.h: 66-5 66-9 91-45 96-17 102-17 108-17 114-17 120-17 126-17 132-17 138-17 144-17 150-17 156-17 162-17 168-17 174-17 180-17 186-17 192-17 198-17 204-17 210-17 216-17 222-17 228-17 234-17 240-17 249-17 255-17 261-17 267-17 273-17 279-17 285-17 291-17 297-17 303-17 309-17 315-17 321-17 327-17 333-17 339-17 345-17 351-17 357-17 363-17 369-17 375-17 381-17 387-17 396-17 402-17 408-17 414-17 420-17 426-17 432-17 438-17 444-17 450-17 456-17 462-17 468-17 474-17 480-17 486-17 492-17 498-17 504-17 510-17 516-17 522-17 528-17 537-17 543-17 549-17 555-17 561-17 567-17 573-17 579-17 585-17 591-17 597-17 603-17 609-17 615-17 621-17 627-17 633-17 639-17 645-17 651-17 657-17 663-17 672-17 678-17 684-17 690-17 696-17 702-17 708-17 714-17 720-17 726-17 732-17 738-17 744-17 750-17 756-17 762-17 768-17 774-17 780-17 786-17 792-17 801-17 807-17 813-17 819-17 825-17 831-17 837-17 843-17 849-17 855-17 861-17 867-17 873-17 879-17 885-17 891-17 897-17 903-17 909-17 915-17 924-17 930-17 936-17 942-17 948-17 954-17 960-17 966-17 972-17 978-17 984-17 990-17 996-17 1002-17 1008-17 1014-17 1020-17 1026-17 1032-17 1041-17 1047-17 1053-17 1059-17 1065-17 1071-17 1077-17 1083-17 1089-17 1095-17 1101-17 1107-17 1113-17 1119-17 1125-17 1131-17 1137-17 1143-17 1152-17 1158-17 1164-17 1170-17 1176-17 1182-17 1188-17 1194-17 1200-17 1206-17 1212-17 1218-17 1224-17 1230-17 1236-17 1242-17 1248-17 1257-17 1263-17 1269-17 1275-17 1281-17 1287-17 1293-17 1299-17 1305-17 1311-17 1317-17 1323-17 1329-17 1335-17 1341-17 1347-17 1356-17 1362-17 1368-17 1374-17 1380-17 1386-17 1392-17 1398-17 1404-17 1410-17 1416-17 1422-17 1428-17 1434-17 1440-17 1449-17 1455-17 1461-17 1467-17 1473-17 1479-17 1485-17 1491-17 1497-17 1503-17 1509-17 1515-17 1521-17 1527-17 1536-17 1542-17 1548-17 1554-17 1560-17 1566-17 1572-17 1578-17 1584-17 1590-17 1596-17 1602-17 1608-17 1617-17 1623-17 1629-17 1635-17 1641-17 1647-17 1653-17 1659-17 1665-17 1671-17 1677-17 1683-17 1692-17 1698-17 1704-17 1710-17 1716-17 1722-17 1728-17 1734-17 1740-17 1746-17 1752-17 1761-17 1767-17 1773-17 1779-17 1785-17 1791-17 1797-17 1803-17 1809-17 1815-17 1824-17 1830-17 1836-17 1842-17 1848-17 1854-17 1860-17 1866-17 1872-17 1881-17 1887-17 1893-17 1899-17 1905-17 1911-17 1917-17 1923-17 1932-17 1938-17 1944-17 1950-17 1956-17 1962-17 1968-17 1977-17 1983-17 1989-17 1995-17 2001-17 2007-17 2016-17 2022-17 2028-17 2034-17 2040-17 2049-17 2055-17 2061-17 2067-17 2076-17 2082-17 2088-17 2097-17 2103-17 2112-17 13788-45 13793-17 13799-17 13805-17 13811-17 13817-17 13823-17 13829-17 13835-17 13841-17 13847-17 13853-17 13859-17 13865-17 13871-17 13877-17 13883-17 13889-17 13898-17 13904-17 13910-17 13916-17 13922-17 13928-17 13934-17 13940-17 13946-17 13952-17 13958-17 13964-17 13970-17 13976-17 13982-17 13988-17 13997-17 14003-17 14009-17 14015-17 14021-17 14027-17 14033-17 14039-17 14045-17 14051-17 14057-17 14063-17 14069-17 14075-17 14081-17 14090-17 14096-17 14102-17 14108-17 14114-17 14120-17 14126-17 14132-17 14138-17 14144-17 14150-17 14156-17 14162-17 14168-17 14177-17 14183-17 14189-17 14195-17 14201-17 14207-17 14213-17 14219-17 14225-17 14231-17 14237-17 14243-17 14249-17 14258-17 14264-17 14270-17 14276-17 14282-17 14288-17 14294-17 14300-17 14306-17 14312-17 14318-17 14324-17 14333-17 14339-17 14345-17 14351-17 14357-17 14363-17 14369-17 14375-17 14381-17 14387-17 14393-17 14402-17 14408-17 14414-17 14420-17 14426-17 14432-17 14438-17 14444-17 14450-17 14456-17 14465-17 14471-17 14477-17 14483-17 14489-17 14495-17 14501-17 14507-17 14513-17 14522-17 14528-17 14534-17 14540-17 14546-17 14552-17 14558-17 14564-17 14573-17 14579-17 14585-17 14591-17 14597-17 14603-17 14609-17 14618-17 14624-17 14630-17 14636-17 14642-17 14648-17 14657-17 14663-17 14669-17 14675-17 14681-17 14690-17 14696-17 14702-17 14708-17 14717-17 14723-17 14729-17 14738-17 14744-17 14753-17
sys/ cdefs.h: 95-1 216-6

__has_include [References: 36] Defined? True

#define __has_include(x) 0

defined @ Unnamed Pre-include#4

/ usr/ include/ sys/ cdefs.h: 92-1
unistd.h: 654-13 655-5

__header_always_inline [References: 38] Defined? True

#define __header_always_inline __header_inline __attribute__ ((__always_inline__))

defined @ /usr/include/sys/cdefs.h#261

/ usr/ include/ math.h: 188-1 189-1 190-1 191-1 192-1 193-1 194-1 195-1 196-1 197-1 198-1 199-1 200-1 201-1 202-1 204-1 207-1 210-1 213-1 216-1 219-1 222-1 225-1 228-1 231-1 236-1 242-1 257-1 260-1 263-1 604-1 605-1 645-1 646-1 661-1 666-1 671-1 676-1

I depend on these macros:

__header_always_inline __header_inline

__header_inline [References: 78] Defined? True

#define __header_inline extern __inline

defined @ /usr/include/sys/cdefs.h#252

/ usr/ include/ _wctype.h: 65-1 71-1 77-1 83-1 89-1 95-1 101-1 107-1 113-1 119-1 125-1 131-1 137-1 143-1
ctype.h: 134-1 152-1 163-1 193-1 211-1 217-1 223-1 229-1 236-1 242-1 248-1 254-1 260-1 266-1 272-1 279-1 285-1 291-1 297-1 304-1 310-1 316-1 322-1 328-1 334-1 340-1
math.h: 188-1 189-1 190-1 191-1 192-1 193-1 194-1 195-1 196-1 197-1 198-1 199-1 200-1 201-1 202-1 204-1 207-1 210-1 213-1 216-1 219-1 222-1 225-1 228-1 231-1 236-1 242-1 257-1 260-1 263-1 604-1 605-1 645-1 646-1 661-1 666-1 671-1 676-1

These macros depend on me:

__header_inline __DARWIN_CTYPE_TOP_inline
__DARWIN_CTYPE_inline
__DARWIN_WCTYPE_TOP_inline
__header_always_inline

__printflike [References: 12] Defined? True

#define __printflike(fmtarg,firstvararg) __attribute__((__format__ (__printf__, fmtarg, \
firstvararg)))

defined @ /usr/include/sys/cdefs.h#298

/ usr/ include/ stdio.h: 244-63 259-43 269-63 278-68 279-48 280-68 421-72 424-77 439-48 440-53 455-65 462-70

__pure [References: 1] Defined? True

#define __pure

defined @ /usr/include/sys/cdefs.h#199

/ usr/ include/ wchar.h: 202-42

__pure2 [References: 5] Defined? True

#define __pure2 __attribute__((const))

defined @ /usr/include/sys/cdefs.h#156

/ usr/ include/ stdlib.h: 129-15 141-22 145-18 146-26
unistd.h: 561-24

I depend on these macros:

__pure2 const

__restrict [References: 194] Defined? True

#define __restrict

defined @ /usr/include/sys/cdefs.h#207

/ usr/ include/ inttypes.h: 251-24 252-12 257-24 258-12 264-27 265-15 270-27 271-15
secure/ _stdio.h: 42-34 43-19 52-35 53-20 61-35 62-20 70-36 71-21
stdio.h: 237-21 238-20 240-26 240-51 244-21 244-46 246-25 246-44 247-22 247-57 248-28 248-53 249-25 250-20 250-45 254-29 254-64 259-26 266-25 267-21 267-40 268-21 268-40 269-21 269-46 270-26 270-51 278-22 278-47 279-27 280-22 280-47 421-22 421-55 422-21 422-46 423-26 424-23 424-56 425-27 425-52 439-31 440-32 441-26 441-47 441-71 442-25 442-46 442-65 455-23 455-48 462-24 462-49
stdlib.h: 154-28 154-54 155-23 155-48 178-25 178-53 185-30 185-47 187-30 187-47 210-29 210-48
string.h: 168-25 168-44
sys/ _select.h: 39-27 39-48 40-12 40-41
select.h: 114-28 114-49 115-12 115-48 116-20
time.h: 196-35 196-54 200-45 201-22
time.h: 114-24 114-57 114-87 115-29 115-54 115-78 123-35 123-54 125-36 125-60 126-39 126-63
unistd.h: 600-28 600-47 626-32 626-51
wchar.h: 99-27 99-51 101-28 101-47 103-21 103-49 104-20 104-48 107-28 107-60 108-26 108-51 109-18 111-28 111-54 112-18 115-24 115-60 116-29 116-57 118-22 118-50 120-25 120-61 122-30 123-23 123-56 124-27 124-55 128-27 128-55 130-27 130-63 131-24 133-28 133-56 135-28 135-57 138-25 138-54 139-18 141-33 141-61 142-26 142-54 144-31 144-54 145-27 145-55 146-17 147-30 147-53 149-27 149-50 152-28 152-56 155-29 156-28 170-21 170-49 172-30 172-58 174-29 175-30 175-53 177-26 177-49 180-26 180-49 182-27 182-50 195-30 195-56 196-33 197-27 197-55 198-28 198-56 203-27 203-56 204-33 214-25

__scanflike [References: 7] Defined? True

#define __scanflike(fmtarg,firstvararg) __attribute__((__format__ (__scanf__, fmtarg, \
firstvararg)))

defined @ /usr/include/sys/cdefs.h#300

/ usr/ include/ stdio.h: 250-62 266-42 270-68 338-47 422-67 423-47 425-73

__x86_64__ [References: 47] Defined? True

#define __x86_64__ 1

defined @ Unnamed Pre-include#6

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymacconfig.h: 28-38
usr/ include/ libkern/ _OSByteOrder.h: 65-34 82-34
i386/ _OSByteOrder.h: 90-15
machine/ _mcontext.h: 28-36
_types.h: 31-35
endian.h: 34-35
limits.h: 5-35
signal.h: 31-35
types.h: 34-35
math.h: 87-36 128-36 241-33
sys/ cdefs.h: 705-55

assert [References: 144] Defined? True

#define assert(e) (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, \
#e) : (void)0)

defined @ /usr/include/assert.h#92

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 265-9 338-5 348-5 352-9 357-9 368-9 451-5 452-5 453-5 455-5 457-5 461-9 512-5 513-5 578-5 581-9 582-9 597-5 657-5 715-9 764-9 796-5 810-5 832-9 860-9 870-5 886-5 897-5 905-5 906-5 918-9 926-9 935-5 954-5 971-5 973-5 991-9 993-9 1002-5 1011-5 1050-17 1064-5 1080-5 1081-5 1082-5 1095-5 1129-5 1158-13 1168-9 1169-9 1173-5 1179-9 1187-5 1188-5 1192-5 1222-5 1223-5 1224-5 1225-5 1232-5 1276-5 1311-9 1312-9 1332-9 1341-9 1383-5 1563-5 1564-5 1588-5 1589-5 1590-5 1605-5 1617-5 1625-5 1647-5 1648-5 1657-5 1665-9 1688-5 1700-5 1708-9 1751-8 1754-5 1843-5 1872-9 1876-5 1887-5 2021-9 2216-5 2260-5 2322-5 2395-5 2396-5 2397-5 2454-5 2462-12 2472-5 2599-5 2909-13 2919-9 2923-9 2924-9 2935-5 3011-5 3015-5 3016-5 3027-5 3235-5 3243-9 3252-5 3483-5 3568-5 3652-5 3772-13 3888-5 3889-5 3890-5 4386-5 4388-9
stringlib/ eq.h: 12-9 12-37 13-9 17-9 17-36 19-9 21-9 21-30 23-19 23-44 24-19 24-45

These macros depend on me:

assert PyByteArray_AS_STRING
PyByteArray_GET_SIZE
PyBytes_AS_STRING
PyBytes_GET_SIZE
PyUnicode_AS_UNICODE PyUnicode_AS_DATA
PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_GET_LENGTH
PyUnicode_GET_SIZE PyUnicode_GET_DATA_SIZE
PyUnicode_IS_ASCII PyUnicode_MAX_CHAR_VALUE
_PyUnicode_COMPACT_DATA PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR
PyUnicode_KIND PyUnicode_MAX_CHAR_VALUE
PyUnicode_READ_CHAR
PyUnicode_MAX_CHAR_VALUE
PyUnicode_READY
PyUnicode_READ_CHAR
PyUnicode_WRITE
Py_SAFE_DOWNCAST
_PyObject_GC_UNTRACK
_PyUnicodeWriter_PrepareKind
_PyUnicode_NONCOMPACT_DATA PyUnicode_DATA PyUnicode_1BYTE_DATA
PyUnicode_2BYTE_DATA
PyUnicode_4BYTE_DATA
PyUnicode_READ_CHAR

const [References: 802] Defined? True

#define const __const

defined @ /usr/include/sys/cdefs.h#148

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ abstract.h: 360-53 375-51 388-49 389-49 403-52 412-58 415-56 416-56 421-56 531-58 553-44 576-44 630-46 666-44 1132-58 1287-58 1332-53 1340-59 1362-1 1364-43 1368-41 1370-41
bytearrayobject.h: 44-54
bytesobject.h: 51-50 52-43 54-44 56-43 66-5 74-45 75-10 76-10 79-46 80-46 81-46 82-46 129-52 130-52 217-5
ceval.h: 18-44 20-42 21-42 86-40 120-1 121-1
code.h: 112-17 112-39
codecs.h: 50-8 54-8 66-8 81-8 82-8 97-8 98-8 116-8 117-8 122-8 123-8 128-8 129-8 137-8 142-8 159-8 165-8 171-8 172-8 178-8 179-8 185-8 187-8 193-8 195-8 206-39 211-44 234-1
compile.h: 13-59 36-5 48-5
dictobject.h: 156-59 160-52 164-52
dtoa.h: 7-34
fileobject.h: 11-43 11-57 12-38 12-52 13-38 16-36 25-1 27-1
fileutils.h: 10-5 14-5 57-5 61-5 65-5 66-5 69-5 70-5 74-5 83-5 88-5 93-5 100-5
floatobject.h: 108-37 109-37 110-37
import.h: 16-1 18-5 22-5 24-5 27-5 29-5 30-5 47-5 50-5 53-5 56-5 85-5 100-5 105-5 110-5 120-5 126-5 127-5 134-1
longobject.h: 95-42 99-42 141-5 204-40 205-30
methodobject.h: 55-5 59-5
modsupport.h: 24-47 30-41 31-46 33-51 34-43 36-51 39-47 40-38 41-45 44-35 45-37 47-40 51-5 52-5 52-18 53-5 54-5 75-48 76-53 77-56 77-70 83-51
moduleobject.h: 21-5 27-1 28-1 76-3 77-3
object.h: 144-5 348-5 381-5 444-5 513-54 513-68 514-64 514-78 530-59 531-52 532-52 578-22 716-39 1068-35
pycapsule.h: 30-5 33-60 37-1 41-54 47-54 52-5
pyctype.h: 13-1 26-1 27-1
pyerrors.h: 84-5 105-32 251-5 260-5 266-5 276-5 321-41 328-5 330-5 330-23 349-5 366-5 369-5 379-5 392-5 393-5 397-5 403-5 404-5 408-5 415-5 419-5 425-5 471-5 475-5 479-5 497-55 499-56
pyhash.h: 12-37 88-17 88-29 89-5 90-5 91-5
pylifecycle.h: 20-46 21-46 50-44 61-34 67-1 68-1 69-1 70-1 71-1 73-1 74-1
pymem.h: 22-40 111-37 112-34
pystrcmp.h: 8-33 8-47 9-32 9-46
pystrtod.h: 9-42 23-5 23-38 24-28 26-41
pythonrun.h: 27-41 28-44 31-5 36-5 41-5 49-5 53-5 54-5 59-5 66-5 67-5 69-5 70-5 77-5 79-5 80-5 92-60 95-68 96-68 99-66 103-42 108-5 122-5 123-5 128-5 134-5 135-5 139-5 171-50 174-67
pytime.h: 156-5
sysmodule.h: 10-40 11-33 19-32 21-36 23-36 25-37 26-37 29-38 33-35
traceback.h: 27-35 27-49 79-1
unicodeobject.h: 689-5 696-5 703-5 711-5 717-5 854-5 855-5 872-5 876-5 973-5 981-5 1010-5 1030-5 1167-1 1175-5 1177-5 1178-5 1190-5 1191-5 1203-5 1204-5 1212-5 1214-5 1215-5 1229-5 1230-5 1238-5 1239-5 1251-5 1252-5 1264-5 1266-5 1270-5 1272-5 1278-5 1282-5 1288-5 1295-5 1297-5 1301-5 1303-5 1314-5 1317-5 1319-5 1349-5 1351-5 1358-5 1360-5 1392-5 1394-5 1399-5 1430-5 1432-5 1439-5 1441-5 1477-5 1479-5 1484-5 1492-5 1494-5 1501-9 1503-9 1504-9 1516-5 1524-5 1526-5 1535-5 1546-5 1548-5 1559-5 1561-5 1571-5 1574-5 1576-5 1587-5 1589-5 1599-5 1602-5 1604-5 1626-5 1629-5 1639-5 1642-5 1647-5 1666-5 1669-5 1751-5 1791-5 1793-5 1799-5 1800-5 1809-5 1835-5 1846-5 1966-5 2067-5 2077-5 2142-5 2151-1 2181-5 2185-5 2261-5 2266-5 2269-21 2273-5 2277-5 2278-5 2282-5 2283-5 2288-5 2293-5
warnings.h: 13-5 18-5 26-5 40-5 41-5 43-5 49-26 50-26 51-26
Objects/ dictobject.c: 1365-5 2345-20 3337-35 3361-35 3384-35
usr/ include/ _wctype.h: 172-9
assert.h: 76-19 76-33 76-52
gethostuuid.h: 39-25
inttypes.h: 251-11 257-11 264-11 270-11
math.h: 529-19 530-19 531-25 662-5 667-5 672-5 677-5
runetype.h: 81-32 81-68
secure/ _stdio.h: 43-6 53-7 62-7 71-8
stdio.h: 136-24 240-13 240-38 244-33 246-12 248-15 248-40 250-32 252-22 254-16 258-14 259-13 262-11 263-13 264-14 264-28 266-12 269-33 270-13 270-38 278-34 279-14 280-34 300-19 317-13 317-27 338-24 391-15 391-29 421-42 422-33 423-13 424-43 425-14 425-39 439-18 440-19 455-35 458-24 458-38 462-36 463-13 463-27 469-15 471-34
stdlib.h: 129-15 131-14 132-11 133-12 136-9 138-15 138-29 139-22 139-36 141-22 144-14 145-18 146-26 153-12 154-41 155-35 158-14 158-28 162-16 163-15 164-14 166-11 169-11 172-11 175-12 177-13 178-37 183-12 189-32 210-16 216-13 216-27 218-14 222-16 231-15 256-23 258-32 260-16 260-30 262-22 263-14 264-22 265-23 272-1 276-14 276-28 282-14 282-28 288-14 288-28 294-22 294-36 300-22 300-36 301-16 301-45 303-19 304-17 304-46 311-10 313-11
string.h: 70-14 71-13 71-27 72-22 73-23 75-22 76-14 77-13 77-27 78-14 78-28 79-22 80-17 80-31 82-16 83-23 84-14 84-28 85-23 86-15 86-29 87-15 88-16 88-30 89-14 89-28 90-22 91-25 104-24 117-14 118-23 130-22 131-26 132-15 133-18 155-14 155-36 156-34 157-34 158-35 160-18 160-32 161-15 161-29 162-25 163-25 165-23 168-12
strings.h: 70-11 70-25 71-13 73-13 74-14 78-17 78-31 79-18 79-32
sys/ _types/ _fd_def.h: 53-27
resource.h: 393-20
select.h: 115-24 116-3
stat.h: 352-11 355-11 356-11 357-12 358-10 359-11 363-19 364-18 365-18 372-13 373-15 377-14 378-12 379-15 380-15 381-16 382-14
stdio.h: 39-19 39-38
termios.h: 331-21 332-21 336-25
time.h: 189-13 190-18 191-13 191-27 192-18 192-42 200-20 202-12 202-26
unistd.h: 203-20 204-19 205-17 205-36 206-25 207-15 207-34 208-19 209-24
time.h: 106-15 108-13 110-20 111-19 112-22 114-44 114-69 115-16 115-41 123-17 124-15 125-21 126-24 135-30 136-27 140-15
unistd.h: 430-13 433-12 434-12 440-12 440-26 441-13 441-27 442-13 442-27 443-12 443-33 444-13 444-34 444-50 445-13 445-34 463-11 463-25 465-16 473-12 493-13 495-21 508-25 508-35 538-11 539-13 542-13 542-27 561-24 562-15 570-13 578-22 600-15 602-15 626-19 629-14 629-28 646-17 647-11 650-13 650-27 650-48 653-19 663-17 668-17 669-35 669-49 670-18 670-42 670-56 673-12 674-16 682-25 682-39 682-53 683-28 683-42 683-56 686-13 689-14 689-33 689-47 690-20 691-21 693-18 695-14 699-15 700-15 703-25 705-25 707-13 710-15 711-17 715-32 729-17 730-17 731-18 731-30 739-15 740-12 747-20
wchar.h: 101-12 103-33 104-32 107-15 108-38 110-13 111-40 115-44 116-13 116-41 118-34 120-45 122-14 124-39 125-17 126-12 126-29 127-13 127-30 128-39 129-16 129-33 130-47 131-6 132-15 133-40 134-13 134-30 135-41 136-18 136-35 137-18 138-37 140-15 140-32 141-17 141-45 142-38 144-15 145-39 147-14 149-11 150-18 151-13 151-30 152-40 153-30 155-13 156-12 157-14 170-33 172-14 172-42 174-13 175-14 177-10 180-10 182-11 195-42 197-39 198-40 199-17 200-20 200-37 201-21 201-38 202-17 203-39 215-27 216-27

These macros depend on me:

const PyUnicode_AS_DATA
PyUnicode_READ
PyUnicode_READ_CHAR
__DECONST
__DEQUALIFY
__IDSTRING __COPYRIGHT
__PROJECT_VERSION
__RCSID
__SCCSID
__assert
__pure2

free_values [References: 5] Defined? True

#define free_values(values) PyMem_FREE(values)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#571

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 589-13 1307-13 1747-9 2016-13 2649-13

I depend on these macros:

free_values PyMem_FREE

inline [References: 3] Defined? True

#define inline __inline

defined @ /usr/include/sys/cdefs.h#149

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 314-8 343-8
stringlib/ eq.h: 6-1

These macros depend on me:

inline Py_LOCAL_INLINE

memset [References: 2] Defined? True

#define memset(dest,val,len) __builtin___memset_chk (dest, val, len, __darwin_obsz0 (dest)) \

defined @ /usr/include/secure/_string.h#76

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 549-5 550-5

I depend on these macros:

memset __darwin_obsz0

new_values [References: 3] Defined? True

#define new_values(size) PyMem_NEW(PyObject *, size)

defined @ /Users/paulross/dev/Python-3.6.2/Objects/dictobject.c#570

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 609-14 1345-18 2644-21

I depend on these macros:

new_values PyMem_NEW NULL __DARWIN_NULL
PY_SSIZE_T_MAX
PyMem_MALLOC

Macros Tested When Not Defined

AC_APPLE_UNIVERSAL_BUILD [References: 4]

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1403-13

COUNT_ALLOCS [References: 4]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ object.h: 428-5 741-1

DEBUG_PYDICT [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 447-5 465-5

DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754 [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 473-109

DOUBLE_IS_BIG_ENDIAN_IEEE754 [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 473-63

FD_CLR [References: 1]

/ usr/ include/ sys/ _types/ _fd_clr.h: 29-1

FD_COPY [References: 1]

/ usr/ include/ sys/ _types/ _fd_copy.h: 29-1

FD_ISSET [References: 1]

/ usr/ include/ sys/ _types/ _fd_isset.h: 29-1

FD_SET [References: 1]

/ usr/ include/ sys/ _types/ _fd_set.h: 29-1

FD_SETSIZE [References: 2]

/ usr/ include/ sys/ _types/ _fd_def.h: 37-1
_fd_setsize.h: 29-1

FD_ZERO [References: 1]

/ usr/ include/ sys/ _types/ _fd_zero.h: 29-1

HAVE_ALIGNED_REQUIRED [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyhash.h: 135-1

HAVE_CLOCK_GETTIME [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pytime.h: 131-13

HAVE_DECLSPEC_DLL [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 610-20

HAVE_GCC_ASM_FOR_MC68881 [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 436-1

HAVE_IEEEFP_H [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 191-1

HAVE_LIBUTIL_H [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 527-38

HAVE_LONG_LONG [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 42-1

HAVE_PTY_H [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 527-14

HAVE_STDDEF_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ Python.h: 41-1

HAVE_STD_ATOMIC [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyatomic.h: 9-13 22-13

HAVE_SYS_TERMIO_H [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 522-13

HAVE_USABLE_WCHAR_T [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ unicodeobject.h: 101-1

HAVE__GETPTY [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 515-1

ICC_NAN_STRICT [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 162-17

KERNEL [References: 5]

/ usr/ include/ i386/ endian.h: 91-13
sys/ _endian.h: 115-17 138-13
errno.h: 145-34 249-32

MB_CUR_MAX [References: 1]

/ usr/ include/ stdlib.h: 111-1

MB_CUR_MAX_L [References: 4]

/ usr/ include/ stdlib.h: 114-1 123-52

MS_WIN32 [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyerrors.h: 490-13

MS_WIN64 [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pythonrun.h: 184-32

MS_WINDOWS [References: 12]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ fileutils.h: 23-1 117-1
intrcheck.h: 16-1
pydebug.h: 28-1
pyerrors.h: 58-5 71-1 219-1 253-13 282-1
pylifecycle.h: 63-1
pystrcmp.h: 12-1
unicodeobject.h: 1675-1

NAMESPACEOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ namespaceobject.h: 5-1

NDEBUG [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 440-1
usr/ include/ assert.h: 56-1

NO_ANSI_KEYWORDS [References: 32]

/ usr/ include/ sys/ cdefs.h: 148-1

NULL [References: 1]

/ usr/ include/ sys/ _types/ _null.h: 29-1

PIC [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ os_defines.h: 120-55

PYCTYPE_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyctype.h: 3-1

PYLONG_BITS_IN_DIGIT [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 64-1

PYMACCONFIG_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymacconfig.h: 2-1

PYMALLOC_DEBUG [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ Python.h: 58-61

PY_LOCAL_AGGRESSIVE [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 167-13

PY_LONG_LONG [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 45-1

PY_NO_SHORT_FLOAT_REPR [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ dtoa.h: 3-1

PY_SSIZE_T_CLEAN [References: 6]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ abstract.h: 8-1
modsupport.h: 15-1 29-14 62-1
pyport.h: 100-1

PyAPI_DATA [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 646-1

PyAPI_FUNC [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 643-1

PyDict_MAXFREELIST [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dictobject.c: 249-1

PyMODINIT_FUNC [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 649-1

PyParser_SimpleParseString [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pythonrun.h: 87-1

Py_ABSTRACTOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ abstract.h: 2-1

Py_ATOMIC_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyatomic.h: 2-1

Py_BLTINMODULE_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ bltinmodule.h: 2-1

Py_BOOLOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ boolobject.h: 4-1

Py_BUILD_CORE [References: 7]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyatomic.h: 5-1
pyport.h: 612-1 744-1
pystate.h: 223-1

Py_BYTEARRAYOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ bytearrayobject.h: 4-1

Py_BYTESOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ bytesobject.h: 5-1

Py_CAPSULE_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pycapsule.h: 16-1

Py_CELLOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ cellobject.h: 4-1

Py_CEVAL_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ ceval.h: 2-1

Py_CLASSOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ classobject.h: 7-1

Py_CODECREGISTRY_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ codecs.h: 2-1

Py_CODE_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ code.h: 5-1

Py_COMPILE_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ compile.h: 2-1

Py_COMPLEXOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ complexobject.h: 4-1

Py_DESCROBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ descrobject.h: 3-1

Py_DICTOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ dictobject.h: 2-1

Py_DICT_COMMON_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Objects/ dict-common.h: 2-1

Py_ENABLE_SHARED [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 609-13

Py_ENUMOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ enumobject.h: 2-1

Py_ERRORS_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyerrors.h: 2-1

Py_EVAL_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ eval.h: 5-1

Py_FILEOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ fileobject.h: 4-1

Py_FILEUTILS_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ fileutils.h: 2-1

Py_FLOATOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ floatobject.h: 9-1

Py_FORCE_DOUBLE [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 72-1

Py_FUNCOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ funcobject.h: 5-1

Py_GENOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ genobject.h: 6-1

Py_HASH_ALGORITHM [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyhash.h: 134-1

Py_HASH_CUTOFF [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyhash.h: 110-1

Py_HASH_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyhash.h: 3-1

Py_HUGE_VAL [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 150-1

Py_IMPORT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ import.h: 5-1

Py_INTRCHECK_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ intrcheck.h: 3-1

Py_IS_FINITE [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 133-1

Py_IS_INFINITY [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 118-1

Py_IS_NAN [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 98-1

Py_ITEROBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ iterobject.h: 2-1

Py_LIMITED_API [References: 340]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ abstract.h: 11-1 278-5 401-6 419-6 440-6 505-6 607-1 755-14 937-14 1184-1 1358-1
bytearrayobject.h: 23-1 51-1
bytesobject.h: 31-1 64-1 78-1 87-1 95-1 115-1 141-1
cellobject.h: 3-1
ceval.h: 24-1 45-1 127-1 183-1 192-1 197-1 218-1
classobject.h: 6-1
code.h: 4-1 126-1 147-1
codecs.h: 49-1 102-1 228-14 234-1
compile.h: 5-1
complexobject.h: 10-1 33-1 45-1 52-1 58-1
descrobject.h: 20-1 82-1 93-1
dictobject.h: 18-1 72-1 77-1 84-1 89-1 98-1 111-1 138-1 158-1 162-1 167-1
dtoa.h: 2-1
eval.h: 21-1
fileobject.h: 19-1 26-14 36-1
fileutils.h: 8-14 20-1
floatobject.h: 15-1 51-1 55-1
funcobject.h: 4-1 62-1
genobject.h: 5-1 51-1
import.h: 11-1 32-14 41-14 62-14 79-14 89-1 125-1
intrcheck.h: 13-1
listobject.h: 23-1 64-1 72-1
longintrepr.h: 2-1
longobject.h: 30-1 71-1 81-1 97-1 103-1 208-1
memoryobject.h: 10-1 17-1 24-14 29-1 40-1
methodobject.h: 32-1 43-1 89-1 103-1
modsupport.h: 24-1 29-44 44-1 50-1 81-14 154-1 161-14 168-1 177-1
moduleobject.h: 15-14 24-14 31-1 37-14 58-14 69-1
namespaceobject.h: 11-1
object.h: 64-13 122-1 181-1 240-1 322-1 344-1 452-14 455-14 460-1 504-1 513-1 519-1 537-1 545-1 550-14 561-1 566-1 577-1 670-1 775-1 856-1 899-1 935-1 1037-1 1067-1
objimpl.h: 98-14 105-1 112-1 207-1 235-1 252-1 331-1
odictobject.h: 12-1 26-14
osmodule.h: 10-14
pyarena.h: 5-1
pyctype.h: 2-1
pydebug.h: 2-1
pyerrors.h: 10-1 80-1 90-14 107-34 130-1 152-14 167-14 177-14 196-14 245-14 253-37 263-14 271-1 287-1 294-14 304-1 310-14 314-14 335-1 361-1 373-1 382-1 402-1 414-1
pyhash.h: 10-1 54-1 87-1
pylifecycle.h: 17-1 27-1 40-1 48-1 73-1 79-1 92-1 121-1
pymath.h: 71-1 82-1
pymem.h: 15-1 104-14 111-1 164-1
pystate.h: 22-1 68-1 82-1 173-1 175-14 182-1 187-1 193-1 198-1 208-1 278-1 302-1 308-1 318-1
pystrtod.h: 22-1
pythonrun.h: 21-1 27-1 94-14 103-1 117-1 138-1 149-1 171-1 176-1
pytime.h: 2-1
setobject.h: 11-1
sliceobject.h: 22-1 36-1 47-14 49-1
structseq.h: 25-1 35-1
sysmodule.h: 13-1 37-1
traceback.h: 14-1 26-1 35-1 87-1
tupleobject.h: 25-1 49-1 53-1 58-1 67-1
typeslots.h: 82-14
unicodeobject.h: 92-1 129-1 197-1 373-1 586-1 600-1 607-1 631-1 652-1 688-1 707-1 721-14 729-1 737-14 761-1 772-1 778-14 793-14 814-1 881-1 997-1 1013-1 1066-1 1134-1 1161-1 1211-1 1277-1 1312-1 1391-1 1476-1 1498-1 1515-1 1534-1 1545-1 1569-1 1597-1 1638-1 1665-1 1690-14 1705-1 1712-14 1747-1 1762-1 1774-1 1781-14 1978-1 2008-14 2049-1 2071-1 2123-1 2135-1 2151-1 2308-35 2319-1
warnings.h: 8-1 21-14 30-1 47-1 56-1
weakrefobject.h: 16-1 65-1

Py_LISTOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ listobject.h: 17-1

Py_LL [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 720-1

Py_LONGINTREPR_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ longintrepr.h: 3-1

Py_LONGOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ longobject.h: 2-1

Py_MATH_E [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 55-1

Py_MATH_El [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 51-1

Py_MATH_PI [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 47-1

Py_MATH_PIl [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 44-1

Py_MATH_TAU [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 60-1

Py_MEMORYOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ memoryobject.h: 4-1

Py_METHODOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ methodobject.h: 5-1

Py_MODSUPPORT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ modsupport.h: 3-1

Py_MODULEOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ moduleobject.h: 5-1

Py_NAN [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 158-14

Py_NO_NAN [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 158-34

Py_OBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ object.h: 2-1

Py_OBJIMPL_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ objimpl.h: 6-1

Py_ODICTOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ odictobject.h: 2-1

Py_OSMODULE_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ osmodule.h: 5-1

Py_PYARENA_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyarena.h: 6-1

Py_PYCONFIG_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 6-1

Py_PYDEBUG_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pydebug.h: 3-1

Py_PYFPE_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyfpe.h: 2-1

Py_PYLIFECYCLE_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pylifecycle.h: 5-1

Py_PYMACRO_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymacro.h: 2-1

Py_PYMATH_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 2-1

Py_PYMEM_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymem.h: 6-1

Py_PYPORT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 2-1

Py_PYSTATE_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pystate.h: 6-1

Py_PYTHONRUN_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pythonrun.h: 5-1

Py_PYTHON_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ Python.h: 2-1

Py_PYTIME_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pytime.h: 3-1

Py_RANGEOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ rangeobject.h: 5-1

Py_REF_DEBUG [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ object.h: 60-40

Py_SETOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ setobject.h: 4-1

Py_SLICEOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ sliceobject.h: 2-1

Py_STRCMP_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pystrcmp.h: 2-1

Py_STRTOD_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pystrtod.h: 2-1

Py_STRUCTSEQ_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ structseq.h: 5-1

Py_SYSMODULE_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ sysmodule.h: 5-1

Py_TRACEBACK_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ traceback.h: 3-1

Py_TRACE_REFS [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ object.h: 55-35

Py_TUPLEOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ tupleobject.h: 5-1

Py_ULL [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 724-1

Py_UNICODEOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ unicodeobject.h: 2-1

Py_WARNINGS_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ warnings.h: 2-1

Py_WEAKREFOBJECT_H [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ weakrefobject.h: 4-1

SEEK_CUR [References: 1]

/ usr/ include/ stdio.h: 210-1

SEEK_END [References: 1]

/ usr/ include/ stdio.h: 213-1

SEEK_SET [References: 1]

/ usr/ include/ stdio.h: 207-1

SIGNED_RIGHT_SHIFT_ZERO_FILLS [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 281-1

SOLARIS [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 510-1

STACKLESS [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ object.h: 636-1

S_IFMT [References: 1]

/ usr/ include/ sys/ _types/ _s_ifmt.h: 34-1

TTYDEFCHARS [References: 1]

/ usr/ include/ sys/ ttydefaults.h: 118-1

USE_ASCII [References: 8]

/ usr/ include/ ctype.h: 141-1 156-2 167-2 175-1

USE_STACKCHECK [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ ceval.h: 90-1
pythonrun.h: 190-1

WANT_SIGFPE_HANDLER [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyfpe.h: 129-1

WCHAR_MAX [References: 1]

/ usr/ include/ stdint.h: 163-1

WCHAR_MIN [References: 1]

/ usr/ include/ stdint.h: 175-1

WEOF [References: 1]

/ usr/ include/ _wctype.h: 50-1

WIN32 [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pythonrun.h: 184-13

WORDS_BIGENDIAN [References: 7]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ code.h: 13-1
pyport.h: 736-1
pyconfig.h: 1409-1

X87_DOUBLE_ROUNDING [References: 3]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 73-1
pyport.h: 482-13

_ALLOCA_H_ [References: 1]

/ usr/ include/ alloca.h: 25-1

_ALL_SOURCE [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1348-1

_ANSI_SOURCE [References: 69]

/ usr/ include/ ctype.h: 303-14 368-14
i386/ limits.h: 45-14 88-14
signal.h: 39-1
types.h: 95-14
stdio.h: 201-1
stdlib.h: 64-14 75-14 122-14 182-1 237-14
sys/ cdefs.h: 612-15
signal.h: 78-14 125-13 144-1
syslimits.h: 70-14
wait.h: 251-1
time.h: 96-1 119-1 128-14 139-14

_ASSERT_H_ [References: 1]

/ usr/ include/ assert.h: 103-1

_BLKCNT_T [References: 1]

/ usr/ include/ sys/ _types/ _blkcnt_t.h: 29-1

_BLKSIZE_T [References: 1]

/ usr/ include/ sys/ _types/ _blksize_t.h: 29-1

_BSD_I386__TYPES_H_ [References: 1]

/ usr/ include/ i386/ _types.h: 29-1

_BSD_MACHINE_ENDIAN_H_ [References: 1]

/ usr/ include/ machine/ endian.h: 32-1

_BSD_MACHINE_SIGNAL_H_ [References: 1]

/ usr/ include/ machine/ signal.h: 29-1

_BSD_MACHINE_TYPES_H_ [References: 1]

/ usr/ include/ machine/ types.h: 32-1

_BSD_MACHINE__TYPES_H_ [References: 1]

/ usr/ include/ machine/ _types.h: 29-1

_C99_SOURCE [References: 3]

/ usr/ include/ stdio.h: 419-44
wchar.h: 168-44

_CDEFS_H_ [References: 1]

/ usr/ include/ sys/ cdefs.h: 68-1

_CLOCK_T [References: 1]

/ usr/ include/ sys/ _types/ _clock_t.h: 29-1

_CTYPE_H_ [References: 1]

/ usr/ include/ ctype.h: 67-1

_CT_RUNE_T [References: 1]

/ usr/ include/ sys/ _types/ _ct_rune_t.h: 30-1

_CXXCONFIG [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 38-1

_DARWIN_BETTER_REALPATH [References: 2]

/ usr/ include/ stdlib.h: 209-92

_DARWIN_NO_64_BIT_INODE [References: 64]

/ usr/ include/ sys/ cdefs.h: 433-17 437-17

_DARWIN_UNLIMITED_GETGROUPS [References: 4]

/ usr/ include/ unistd.h: 419-1 452-13

_DARWIN_UNLIMITED_SELECT [References: 4]

/ usr/ include/ sys/ _select.h: 41-42
select.h: 117-42

_DARWIN_UNLIMITED_STREAMS [References: 8]

/ usr/ include/ stdio.h: 221-1 239-13 299-13 316-13

_DARWIN_USE_64_BIT_INODE [References: 32]

/ usr/ include/ sys/ cdefs.h: 432-17

_DEV_T [References: 1]

/ usr/ include/ sys/ _types/ _dev_t.h: 29-1

_DONT_USE_CTYPE_INLINE_ [References: 3]

/ usr/ include/ _wctype.h: 62-14
ctype.h: 124-14

_DTRACE_CXA_RUNTIME_H [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ os_defines.h: 59-1

_ERRNO_T [References: 1]

/ usr/ include/ sys/ _types/ _errno_t.h: 29-1

_EXTERNALIZE_CTYPE_INLINES_ [References: 2]

/ usr/ include/ ctype.h: 208-1

_FD_SET [References: 1]

/ usr/ include/ sys/ _types/ _fd_def.h: 29-1

_FILESEC_T [References: 1]

/ usr/ include/ sys/ _types/ _filesec_t.h: 29-1

_FORTIFY_SOURCE [References: 1]

/ usr/ include/ _types.h: 61-1

_GID_T [References: 1]

/ usr/ include/ sys/ _types/ _gid_t.h: 29-1

_GLIBCXX_CPU_DEFINES [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ cpu_defines.h: 36-1

_GLIBCXX_CSTDARG [References: 1]

/ usr/ include/ c++/ 4.2.1/ cstdarg: 46-1

_GLIBCXX_DEBUG [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 60-1

_GLIBCXX_EXTERN_TEMPLATE [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 179-1

_GLIBCXX_HAVE_FINITEF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1088-52

_GLIBCXX_HAVE_FINITEL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1093-52

_GLIBCXX_HAVE_FPCLASS [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1118-52

_GLIBCXX_HAVE_ISINFF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1153-51

_GLIBCXX_HAVE_ISINFL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1158-51

_GLIBCXX_HAVE_ISNANF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1168-51

_GLIBCXX_HAVE_ISNANL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1173-51

_GLIBCXX_HAVE_QFPCLASS [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1233-53

_GLIBCXX_HAVE_SINCOS [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1238-51

_GLIBCXX_HAVE_SINCOSF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1243-52

_GLIBCXX_HAVE_SINCOSL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1248-52

_GLIBCXX_HAVE__ACOSF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 983-14

_GLIBCXX_HAVE__ACOSL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 988-14

_GLIBCXX_HAVE__ASINF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 993-14

_GLIBCXX_HAVE__ASINL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 998-14

_GLIBCXX_HAVE__ATAN2F [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1003-14

_GLIBCXX_HAVE__ATAN2L [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1008-14

_GLIBCXX_HAVE__ATANF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1013-14

_GLIBCXX_HAVE__ATANL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1018-14

_GLIBCXX_HAVE__CEILF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1023-14

_GLIBCXX_HAVE__CEILL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1028-14

_GLIBCXX_HAVE__COPYSIGN [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1033-14

_GLIBCXX_HAVE__COPYSIGNL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1038-14

_GLIBCXX_HAVE__COSF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1043-14

_GLIBCXX_HAVE__COSHF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1048-14

_GLIBCXX_HAVE__COSHL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1053-14

_GLIBCXX_HAVE__COSL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1058-14

_GLIBCXX_HAVE__EXPF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1063-14

_GLIBCXX_HAVE__EXPL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1068-14

_GLIBCXX_HAVE__FABSF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1073-14

_GLIBCXX_HAVE__FABSL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1078-14

_GLIBCXX_HAVE__FINITE [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1083-14

_GLIBCXX_HAVE__FINITEF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1088-14

_GLIBCXX_HAVE__FINITEL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1093-14

_GLIBCXX_HAVE__FLOORF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1098-14

_GLIBCXX_HAVE__FLOORL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1103-14

_GLIBCXX_HAVE__FMODF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1108-14

_GLIBCXX_HAVE__FMODL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1113-14

_GLIBCXX_HAVE__FPCLASS [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1118-14

_GLIBCXX_HAVE__FREXPF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1123-14

_GLIBCXX_HAVE__FREXPL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1128-14

_GLIBCXX_HAVE__HYPOT [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1133-14

_GLIBCXX_HAVE__HYPOTF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1138-14

_GLIBCXX_HAVE__HYPOTL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1143-14

_GLIBCXX_HAVE__ISINF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1148-14

_GLIBCXX_HAVE__ISINFF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1153-14

_GLIBCXX_HAVE__ISINFL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1158-14

_GLIBCXX_HAVE__ISNAN [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1163-14

_GLIBCXX_HAVE__ISNANF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1168-14

_GLIBCXX_HAVE__ISNANL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1173-14

_GLIBCXX_HAVE__LDEXPF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1178-14

_GLIBCXX_HAVE__LDEXPL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1183-14

_GLIBCXX_HAVE__LOG10F [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1188-14

_GLIBCXX_HAVE__LOG10L [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1193-14

_GLIBCXX_HAVE__LOGF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1198-14

_GLIBCXX_HAVE__LOGL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1203-14

_GLIBCXX_HAVE__MODF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1208-14

_GLIBCXX_HAVE__MODFF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1213-14

_GLIBCXX_HAVE__MODFL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1218-14

_GLIBCXX_HAVE__POWF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1223-14

_GLIBCXX_HAVE__POWL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1228-14

_GLIBCXX_HAVE__QFPCLASS [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1233-14

_GLIBCXX_HAVE__SINCOS [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1238-14

_GLIBCXX_HAVE__SINCOSF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1243-14

_GLIBCXX_HAVE__SINCOSL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1248-14

_GLIBCXX_HAVE__SINF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1253-14

_GLIBCXX_HAVE__SINHF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1258-14

_GLIBCXX_HAVE__SINHL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1263-14

_GLIBCXX_HAVE__SINL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1268-14

_GLIBCXX_HAVE__SQRTF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1273-14

_GLIBCXX_HAVE__SQRTL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1278-14

_GLIBCXX_HAVE__STRTOF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1283-14

_GLIBCXX_HAVE__STRTOLD [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1288-14

_GLIBCXX_HAVE__TANF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1293-14

_GLIBCXX_HAVE__TANHF [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1298-14

_GLIBCXX_HAVE__TANHL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1303-14

_GLIBCXX_HAVE__TANL [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 1308-14

_GLIBCXX_LONG_DOUBLE_COMPAT [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 154-13

_GLIBCXX_OS_DEFINES [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ os_defines.h: 32-1

_GLIBCXX_VISIBILITY_DEFAULT [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ os_defines.h: 48-1

_GNU_SOURCE [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1352-1

_HAVE_BSDI [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ unicodeobject.h: 109-1

_I386_LIMITS_H_ [References: 1]

/ usr/ include/ i386/ limits.h: 37-1

_I386_SIGNAL_H_ [References: 1]

/ usr/ include/ i386/ signal.h: 34-1

_I386__ENDIAN_H_ [References: 1]

/ usr/ include/ i386/ endian.h: 67-1

_I386__LIMITS_H_ [References: 1]

/ usr/ include/ i386/ _limits.h: 23-1

_ID_T [References: 1]

/ usr/ include/ sys/ _types/ _id_t.h: 29-1

_INO64_T [References: 1]

/ usr/ include/ sys/ _types/ _ino64_t.h: 29-1

_INO_T [References: 1]

/ usr/ include/ sys/ _types/ _ino_t.h: 29-1

_INT16_T [References: 1]

/ usr/ include/ sys/ _types/ _int16_t.h: 29-1

_INT32_T [References: 1]

/ usr/ include/ sys/ _types/ _int32_t.h: 29-1

_INT64_T [References: 1]

/ usr/ include/ sys/ _types/ _int64_t.h: 29-1

_INT8_T [References: 1]

/ usr/ include/ sys/ _types/ _int8_t.h: 29-1

_INTMAX_T [References: 1]

/ usr/ include/ _types/ _intmax_t.h: 30-1

_INTPTR_T [References: 1]

/ usr/ include/ sys/ _types/ _intptr_t.h: 29-1

_INTTYPES_H_ [References: 1]

/ usr/ include/ inttypes.h: 31-14

_LIMITS_H_ [References: 1]

/ usr/ include/ limits.h: 61-1

_MACHTYPES_H_ [References: 1]

/ usr/ include/ i386/ types.h: 67-1

_MACH_I386__STRUCTS_H_ [References: 1]

/ usr/ include/ mach/ i386/ _structs.h: 33-1

_MBSTATE_T [References: 1]

/ usr/ include/ sys/ _types/ _mbstate_t.h: 30-1

_MCONTEXT_T [References: 1]

/ usr/ include/ i386/ _mcontext.h: 113-1

_MODE_T [References: 1]

/ usr/ include/ sys/ _types/ _mode_t.h: 29-1

_MSC_VER [References: 9]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 31-1 166-21
pyport.h: 166-13 412-13 748-13
pythonrun.h: 184-53

_NLINK_T [References: 1]

/ usr/ include/ sys/ _types/ _nlink_t.h: 29-1

_NONSTD_SOURCE [References: 98]

/ usr/ include/ ctype.h: 94-1
sys/ cdefs.h: 409-17 416-17 614-74

_NOT_AVAILABLE [References: 1]

/ usr/ include/ sys/ unistd.h: 76-1

_OFF_T [References: 1]

/ usr/ include/ sys/ _types/ _off_t.h: 29-1

_OS__OSBYTEORDERI386_H [References: 1]

/ usr/ include/ libkern/ i386/ _OSByteOrder.h: 30-1

_OS__OSBYTEORDER_H [References: 1]

/ usr/ include/ libkern/ _OSByteOrder.h: 30-1

_PID_T [References: 1]

/ usr/ include/ sys/ _types/ _pid_t.h: 29-1

_POSIX_C_SOURCE [References: 371]

/ usr/ include/ ctype.h: 303-41 368-41
i386/ endian.h: 91-34
limits.h: 45-41 97-15
types.h: 95-41
limits.h: 141-14
mach/ i386/ _structs.h: 99-14 105-14 226-14
runetype.h: 44-14
stdio.h: 273-14 383-14 388-14
stdlib.h: 66-15 75-41 122-41 209-34 237-41
strings.h: 69-14
sys/ _endian.h: 115-38 138-34
_posix_availability.h: 32-43 38-43 44-43 50-43 56-43 62-43 68-43
_types/ _s_ifmt.h: 43-14 68-14
cdefs.h: 415-72 565-13 571-13 578-45 581-47 584-47 594-40 614-15
select.h: 106-14
signal.h: 78-41 90-15 111-16 118-16 205-14 218-14 231-14 238-14 250-14 305-14 330-14 343-14 372-14
stat.h: 90-14 101-14 194-14 217-14 230-14 256-14 296-14 368-14
syslimits.h: 76-14 85-14
termios.h: 78-14 82-14 86-14 93-14 98-14 104-14 112-14 131-14 141-14 175-14 202-14 216-14 235-14 242-14 248-14 252-14 256-14 284-14 307-14 342-14 349-14 364-14
time.h: 79-14 116-14 182-14 188-14
unistd.h: 94-14 124-14 131-14 152-14
wait.h: 128-13 155-15 177-15 253-16
time.h: 128-41
unistd.h: 534-14 535-14 559-14 566-14 581-14 584-14

_POSIX_PTHREAD_SEMANTICS [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1356-1

_POSIX_SOURCE [References: 32]

/ usr/ include/ sys/ cdefs.h: 594-13

_POSIX_VDISABLE [References: 1]

/ usr/ include/ sys/ _types/ _posix_vdisable.h: 29-1

_PTHREAD_ATTR_T [References: 1]

/ usr/ include/ sys/ _pthread/ _pthread_attr_t.h: 29-1

_PY_PORT_CTYPE_UTF8_ISSUE [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 559-1

_RSIZE_T [References: 1]

/ usr/ include/ sys/ _types/ _rsize_t.h: 29-1

_RUNETYPE_H_ [References: 1]

/ usr/ include/ runetype.h: 40-1

_RUNE_T [References: 1]

/ usr/ include/ sys/ _types/ _rune_t.h: 29-1

_SECURE__COMMON_H_ [References: 1]

/ usr/ include/ secure/ _common.h: 25-1

_SECURE__STDIO_H_ [References: 1]

/ usr/ include/ secure/ _stdio.h: 29-1

_SECURE__STRING_H_ [References: 1]

/ usr/ include/ secure/ _string.h: 29-1

_SGI_MP_SOURCE [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ Python.h: 21-56

_SIGSET_T [References: 1]

/ usr/ include/ sys/ _types/ _sigset_t.h: 29-1

_SIZE_T [References: 1]

/ usr/ include/ sys/ _types/ _size_t.h: 29-1

_SSIZE_T [References: 1]

/ usr/ include/ sys/ _types/ _ssize_t.h: 29-1

_STDINT_H_ [References: 1]

/ usr/ include/ stdint.h: 7-1

_STDIO_H_ [References: 1]

/ usr/ include/ stdio.h: 62-1

_STDLIB_H_ [References: 1]

/ usr/ include/ stdlib.h: 59-1

_STRINGS_H_ [References: 1]

/ usr/ include/ strings.h: 59-1

_STRING_H_ [References: 1]

/ usr/ include/ string.h: 59-1

_STRUCT_MCONTEXT32 [References: 1]

/ usr/ include/ i386/ _mcontext.h: 36-1

_STRUCT_MCONTEXT64 [References: 1]

/ usr/ include/ i386/ _mcontext.h: 74-1

_STRUCT_SIGALTSTACK [References: 1]

/ usr/ include/ sys/ _types/ _sigaltstack.h: 31-1

_STRUCT_TIMESPEC [References: 1]

/ usr/ include/ sys/ _types/ _timespec.h: 29-1

_STRUCT_TIMEVAL [References: 1]

/ usr/ include/ sys/ _types/ _timeval.h: 29-1

_STRUCT_TIMEVAL64 [References: 1]

/ usr/ include/ sys/ _types/ _timeval64.h: 30-1

_STRUCT_UCONTEXT [References: 1]

/ usr/ include/ sys/ _types/ _ucontext.h: 29-1

_SUSECONDS_T [References: 1]

/ usr/ include/ sys/ _types/ _suseconds_t.h: 29-1

_SYS_ERRNO_H_ [References: 1]

/ usr/ include/ sys/ errno.h: 70-1

_SYS_IOCCOM_H_ [References: 1]

/ usr/ include/ sys/ ioccom.h: 65-1

_SYS_IOCTL_COMPAT_H_ [References: 1]

/ usr/ include/ sys/ termios.h: 162-14

_SYS_RESOURCE_H_ [References: 1]

/ usr/ include/ sys/ resource.h: 65-1

_SYS_SELECT_H_ [References: 1]

/ usr/ include/ sys/ select.h: 64-1

_SYS_SIGNAL_H_ [References: 1]

/ usr/ include/ sys/ signal.h: 70-1

_SYS_STAT_H_ [References: 1]

/ usr/ include/ sys/ stat.h: 71-1

_SYS_STDIO_H_ [References: 1]

/ usr/ include/ sys/ stdio.h: 30-1

_SYS_SYSLIMITS_H_ [References: 1]

/ usr/ include/ sys/ syslimits.h: 66-1

_SYS_TERMIOS_H_ [References: 1]

/ usr/ include/ sys/ termios.h: 65-1

_SYS_TIME_H_ [References: 1]

/ usr/ include/ sys/ time.h: 65-1

_SYS_TTYCOM_H_ [References: 1]

/ usr/ include/ sys/ ttycom.h: 70-1

_SYS_TTYDEFAULTS_H_ [References: 1]

/ usr/ include/ sys/ ttydefaults.h: 73-1

_SYS_UNISTD_H_ [References: 1]

/ usr/ include/ sys/ unistd.h: 65-1

_SYS_WAIT_H_ [References: 1]

/ usr/ include/ sys/ wait.h: 65-1

_SYS__ENDIAN_H_ [References: 1]

/ usr/ include/ sys/ _endian.h: 91-1

_SYS__PTHREAD_TYPES_H_ [References: 1]

/ usr/ include/ sys/ _pthread/ _pthread_types.h: 30-1

_SYS__SELECT_H_ [References: 1]

/ usr/ include/ sys/ _select.h: 37-1

_SYS__TYPES_H_ [References: 1]

/ usr/ include/ sys/ _types.h: 30-1

_TANDEM_SOURCE [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1360-1

_TIME_H_ [References: 1]

/ usr/ include/ time.h: 64-1

_TIME_T [References: 1]

/ usr/ include/ sys/ _types/ _time_t.h: 29-1

_TR1_CSTDARG [References: 1]

/ usr/ include/ c++/ 4.2.1/ tr1/ cstdarg: 35-1

_TR1_STDARG_H [References: 1]

/ usr/ include/ c++/ 4.2.1/ tr1/ stdarg.h: 35-1

_UID_T [References: 1]

/ usr/ include/ sys/ _types/ _uid_t.h: 29-1

_UINT16_T [References: 1]

/ usr/ include/ _types/ _uint16_t.h: 30-1

_UINT32_T [References: 1]

/ usr/ include/ _types/ _uint32_t.h: 30-1

_UINT64_T [References: 1]

/ usr/ include/ _types/ _uint64_t.h: 30-1

_UINT8_T [References: 1]

/ usr/ include/ _types/ _uint8_t.h: 30-1

_UINTMAX_T [References: 1]

/ usr/ include/ _types/ _uintmax_t.h: 30-1

_UINTPTR_T [References: 1]

/ usr/ include/ sys/ _types/ _uintptr_t.h: 29-1

_UNISTD_H_ [References: 1]

/ usr/ include/ unistd.h: 69-1

_USECONDS_T [References: 1]

/ usr/ include/ sys/ _types/ _useconds_t.h: 29-1

_USE_CTYPE_INLINE_ [References: 3]

/ usr/ include/ _wctype.h: 63-14
ctype.h: 125-14

_USE_EXTENDED_LOCALES_ [References: 20]

/ usr/ include/ _wctype.h: 176-1
ctype.h: 384-1
inttypes.h: 282-1
stdio.h: 487-1
stdlib.h: 107-1 112-1 123-16 326-1
string.h: 181-1
time.h: 145-1
wchar.h: 227-1

_UUID_T [References: 1]

/ usr/ include/ sys/ _types/ _uuid_t.h: 29-1

_VA_LIST_T [References: 1]

/ usr/ include/ sys/ _types/ _va_list.h: 30-1

_WCHAR_H_ [References: 1]

/ usr/ include/ wchar.h: 68-1

_WCHAR_T [References: 1]

/ usr/ include/ sys/ _types/ _wchar_t.h: 32-1

_WCTYPE_T [References: 1]

/ usr/ include/ _types/ _wctype_t.h: 30-1

_WIN64 [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 412-35

_WINT_T [References: 1]

/ usr/ include/ sys/ _types/ _wint_t.h: 30-1

_XOPEN_SOURCE [References: 66]

/ usr/ include/ i386/ limits.h: 97-44
sys/ _types/ _ucontext.h: 43-2
cdefs.h: 415-46 578-1

__ANDROID__ [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 764-1

__APPLE_API_EVOLVING [References: 1]

/ usr/ include/ sys/ appleapiopts.h: 44-1

__APPLE_API_OBSOLETE [References: 1]

/ usr/ include/ sys/ appleapiopts.h: 56-1

__APPLE_API_PRIVATE [References: 1]

/ usr/ include/ sys/ appleapiopts.h: 52-1

__APPLE_API_STABLE [References: 1]

/ usr/ include/ sys/ appleapiopts.h: 38-1

__APPLE_API_STANDARD [References: 1]

/ usr/ include/ sys/ appleapiopts.h: 34-1

__APPLE_API_STRICT_CONFORMANCE [References: 4]

/ usr/ include/ sys/ appleapiopts.h: 43-1

__APPLE_API_UNSTABLE [References: 1]

/ usr/ include/ sys/ appleapiopts.h: 48-1

__APPLE__ [References: 6]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymacconfig.h: 11-13
pyport.h: 138-48 554-13
usr/ include/ c++/ 4.2.1/ bits/ os_defines.h: 120-13

__ARM_VFPV4__ [References: 1]

/ usr/ include/ math.h: 81-34

__ASSEMBLER__ [References: 1]

/ usr/ include/ i386/ types.h: 70-1

__AVAILABILITY_INTERNAL__ [References: 1]

/ usr/ include/ AvailabilityInternal.h: 31-1

__AVAILABILITY_INTERNAL__IPHONE_2_0 [References: 1]

/ usr/ include/ AvailabilityInternal.h: 2126-9

__AVAILABILITY_INTERNAL__MAC_10_0 [References: 1]

/ usr/ include/ AvailabilityInternal.h: 14767-9

__AVAILABILITY__ [References: 1]

/ usr/ include/ Availability.h: 25-1

__BIG_ENDIAN__ [References: 5]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymacconfig.h: 77-1
pyconfig.h: 1404-14

__BLOCKS__ [References: 10]

/ usr/ include/ stdlib.h: 250-1 278-1 284-1 290-1 296-1

__CAST_AWAY_QUALIFIER [References: 1]

/ usr/ include/ sys/ cdefs.h: 690-1

__CHAR_UNSIGNED__ [References: 4]

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1473-1

__COPYRIGHT [References: 1]

/ usr/ include/ sys/ cdefs.h: 306-1

__CTERMID_DEFINED [References: 1]

/ usr/ include/ stdio.h: 294-1

__CYGWIN__ [References: 8]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 604-13 609-42 616-36 627-37

__DARWIN_64_BIT_INO_T [References: 1]

/ usr/ include/ sys/ cdefs.h: 431-14

__DARWIN_NON_CANCELABLE [References: 1]

/ usr/ include/ sys/ cdefs.h: 463-14

__DARWIN_ONLY_UNIX_CONFORMANCE [References: 1]

/ usr/ include/ sys/ cdefs.h: 399-14

__DARWIN_OS_INLINE [References: 1]

/ usr/ include/ libkern/ i386/ _OSByteOrder.h: 32-14

__DARWIN_UNIX03 [References: 1]

/ usr/ include/ sys/ cdefs.h: 407-14

__DARWIN_VERS_1050 [References: 1]

/ usr/ include/ sys/ cdefs.h: 453-14

__DARWIN_WCTYPE_TOP_inline [References: 1]

/ usr/ include/ _wctype.h: 54-1

__DECONST [References: 1]

/ usr/ include/ sys/ cdefs.h: 327-1

__DEQUALIFY [References: 1]

/ usr/ include/ sys/ cdefs.h: 335-1

__DEVOLATILE [References: 1]

/ usr/ include/ sys/ cdefs.h: 331-1

__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ [References: 58]

/ usr/ include/ AvailabilityInternal.h: 37-9
sys/ _symbol_aliasing.h: 32-13 38-13 44-13 50-13 56-13 62-13 68-13 74-13 80-13 86-13 92-13 98-13 104-13 110-13 116-13 122-13 128-13 134-13 140-13 146-13 152-13 158-13 164-13 170-13 176-13
cdefs.h: 535-13

__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ [References: 192]

/ usr/ include/ AvailabilityInternal.h: 13780-15
_types.h: 61-15
assert.h: 77-13 82-13
sys/ _symbol_aliasing.h: 182-13 188-13 194-13 200-13 206-13 212-13 218-13 224-13 230-13 236-13 242-13 248-13 254-13 260-13 266-13 272-13 278-13
cdefs.h: 413-17 423-17 445-19 456-17 537-15

__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ [References: 1]

/ usr/ include/ AvailabilityInternal.h: 44-9

__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ [References: 1]

/ usr/ include/ AvailabilityInternal.h: 54-9

__EXTENSIONS__ [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1364-1

__FAST_MATH__ [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 195-1

__FBSDID [References: 1]

/ usr/ include/ sys/ cdefs.h: 323-1

__FMA__ [References: 1]

/ usr/ include/ math.h: 87-59

__FreeBSD__ [References: 5]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 210-13
pyport.h: 316-13 545-1

__GETHOSTUUID_H [References: 1]

/ usr/ include/ gethostuuid.h: 30-1

__GNUC_GNU_INLINE__ [References: 32]

/ usr/ include/ sys/ cdefs.h: 244-79

__GNUC_LIBSTD__ [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ os_defines.h: 107-1

__GNUC_MAJOR__ [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyerrors.h: 95-40

__GNUC_STDC_INLINE__ [References: 32]

/ usr/ include/ sys/ cdefs.h: 249-36

__GNUG__ [References: 26]

/ usr/ include/ c++/ 4.2.1/ bits/ os_defines.h: 207-1
math.h: 499-28
stdlib.h: 92-27 134-27 147-27 167-27 173-27 309-27
sys/ _types.h: 43-1
wchar.h: 178-27

__I386_MCONTEXT_H_ [References: 1]

/ usr/ include/ i386/ _mcontext.h: 30-1

__INTEL_COMPILER [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 159-14

__INTMAX_TYPE__ [References: 1]

/ usr/ include/ _types/ _intmax_t.h: 32-1

__IOS_AVAILABLE [References: 1]

/ usr/ include/ Availability.h: 268-3

__IOS_DEPRECATED [References: 1]

/ usr/ include/ Availability.h: 272-3

__IOS_PROHIBITED [References: 1]

/ usr/ include/ Availability.h: 264-3

__IOS_UNAVAILABLE [References: 1]

/ usr/ include/ Availability.h: 260-3

__IPHONE_OS_VERSION_MAX_ALLOWED [References: 1]

/ usr/ include/ AvailabilityInternal.h: 83-9

__IPHONE_OS_VERSION_MIN_REQUIRED [References: 29]

/ usr/ include/ Availability.h: 175-5
AvailabilityInternal.h: 36-5 81-5
gethostuuid.h: 36-13
math.h: 127-14 148-70 621-105
secure/ _string.h: 128-16
stdio.h: 221-13
unistd.h: 419-13

__KEYMGR_H [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ os_defines.h: 147-1

__LONG_DOUBLE_128__ [References: 1]

/ usr/ include/ c++/ 4.2.1/ bits/ c++config.h: 154-52

__LP64__ [References: 75]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymacconfig.h: 28-17 34-1 39-1 63-17
usr/ include/ _types.h: 42-1
_types/ _intmax_t.h: 35-1
_uintmax_t.h: 35-1
i386/ _mcontext.h: 114-13
_types.h: 85-15
limits.h: 75-1 90-1
stdint.h: 200-1
sys/ _pthread/ _pthread_types.h: 35-13
_select.h: 44-15
_types.h: 46-1
cdefs.h: 400-15
select.h: 120-15
unistd.h: 719-1

__MAC_OS_X_VERSION_MAX_ALLOWED [References: 1]

/ usr/ include/ AvailabilityInternal.h: 13785-9

__MAC_OS_X_VERSION_MIN_REQUIRED [References: 24]

/ usr/ include/ Availability.h: 181-15
math.h: 126-14 621-14
stdio.h: 223-15
unistd.h: 421-15

__MATH_H__ [References: 1]

/ usr/ include/ math.h: 24-1

__MATH_LONG_DOUBLE_CONSTANTS [References: 1]

/ usr/ include/ math.h: 718-13

__MATH__ [References: 1]

/ usr/ include/ math.h: 27-1

__MWERKS__ [References: 4]

/ usr/ include/ libkern/ _OSByteOrder.h: 87-16
i386/ _OSByteOrder.h: 35-16
sys/ select.h: 114-1

__OSX_AVAILABLE [References: 1]

/ usr/ include/ Availability.h: 241-3

__OSX_DEPRECATED [References: 1]

/ usr/ include/ Availability.h: 245-3

__OSX_UNAVAILABLE [References: 1]

/ usr/ include/ Availability.h: 237-3

__OpenBSD__ [References: 3]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 210-37
pyport.h: 316-37

__PROJECT_VERSION [References: 1]

/ usr/ include/ sys/ cdefs.h: 318-1

__PTRDIFF_TYPE__ [References: 2]

/ usr/ include/ i386/ _types.h: 83-13

__RCSID [References: 1]

/ usr/ include/ sys/ cdefs.h: 310-1

__SCCSID [References: 1]

/ usr/ include/ sys/ cdefs.h: 314-1

__SCO_VERSION__ [References: 4]

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1517-34

__SIZE_TYPE__ [References: 2]

/ usr/ include/ i386/ _types.h: 91-13

__STDC_VERSION__ [References: 3]

/ usr/ include/ assert.h: 106-13
libkern/ _OSByteOrder.h: 85-14
i386/ _OSByteOrder.h: 33-14

__STDC_WANT_LIB_EXT1__ [References: 1]

/ usr/ include/ sys/ cdefs.h: 624-14

__STDC__ [References: 35]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymath.h: 32-1
usr/ include/ stdio.h: 347-34
sys/ cdefs.h: 111-13

__STRICT_ANSI__ [References: 47]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymacro.h: 55-36
usr/ include/ math.h: 499-28
stdlib.h: 92-27 134-27 147-27 167-27 173-27 309-27
sys/ cdefs.h: 624-50
wchar.h: 178-27

__SUNPRO_C [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 716-1

__SYS_APPLEAPIOPTS_H__ [References: 1]

/ usr/ include/ sys/ appleapiopts.h: 30-1

__TERMIOS_H__ [References: 1]

/ usr/ include/ termios.h: 24-1

__TVOS_AVAILABLE [References: 1]

/ usr/ include/ Availability.h: 295-3

__TVOS_DEPRECATED [References: 1]

/ usr/ include/ Availability.h: 299-3

__TVOS_PROHIBITED [References: 1]

/ usr/ include/ Availability.h: 291-3

__TVOS_UNAVAILABLE [References: 1]

/ usr/ include/ Availability.h: 287-3

__TV_OS_VERSION_MIN_REQUIRED [References: 1]

/ usr/ include/ AvailabilityInternal.h: 43-5

__TYPES_H_ [References: 1]

/ usr/ include/ _types.h: 25-1

__UINTMAX_TYPE__ [References: 1]

/ usr/ include/ _types/ _uintmax_t.h: 32-1

__USLC__ [References: 4]

/ Users/ paulross/ dev/ Python-3.6.2/ pyconfig.h: 1517-13

__WATCHOS_AVAILABLE [References: 1]

/ usr/ include/ Availability.h: 322-3

__WATCHOS_DEPRECATED [References: 1]

/ usr/ include/ Availability.h: 326-3

__WATCHOS_PROHIBITED [References: 1]

/ usr/ include/ Availability.h: 318-3

__WATCHOS_UNAVAILABLE [References: 1]

/ usr/ include/ Availability.h: 314-3

__WATCH_OS_VERSION_MIN_REQUIRED [References: 1]

/ usr/ include/ AvailabilityInternal.h: 53-5

__WCHAR_MAX__ [References: 18]

/ usr/ include/ _types.h: 48-1
inttypes.h: 275-38
stdint.h: 164-1
stdlib.h: 320-38
wchar.h: 222-38

__WCHAR_TYPE__ [References: 2]

/ usr/ include/ i386/ _types.h: 103-13

__WCTYPE_H_ [References: 1]

/ usr/ include/ _wctype.h: 40-1

__WINT_TYPE__ [References: 2]

/ usr/ include/ i386/ _types.h: 111-13

__XNU_PRIVATE_EXTERN [References: 1]

/ usr/ include/ sys/ cdefs.h: 698-1

__amd64 [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyatomic.h: 110-56

__apple_build_version__ [References: 2]

/ usr/ include/ secure/ _string.h: 44-15 45-16

__arm64__ [References: 1]

/ usr/ include/ math.h: 81-13

__arm__ [References: 1]

/ usr/ include/ math.h: 148-158

__clang__ [References: 66]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyerrors.h: 95-13
usr/ include/ secure/ _string.h: 43-13
sys/ cdefs.h: 244-139 273-13

__cplusplus [References: 308]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ abstract.h: 4-1 1375-1
bltinmodule.h: 4-1 12-1
boolobject.h: 6-1 32-1
bytearrayobject.h: 6-1 60-1
bytesobject.h: 7-1 222-1
cellobject.h: 6-1 26-1
ceval.h: 4-1 233-1
classobject.h: 9-1 55-1
code.h: 7-1 154-1
codecs.h: 4-1 238-1
compile.h: 8-1 62-1
complexobject.h: 6-1 67-1
descrobject.h: 5-1 104-1
dictobject.h: 4-1 175-1
dtoa.h: 4-1 16-1
enumobject.h: 7-1 14-1
eval.h: 7-1 25-1
fileobject.h: 6-1 48-1
fileutils.h: 5-1 125-1
floatobject.h: 11-1 128-1
funcobject.h: 7-1 100-1
genobject.h: 8-1 101-1
import.h: 7-1 138-1
intrcheck.h: 5-1 22-1
iterobject.h: 5-1 22-1
listobject.h: 19-1 79-1
longintrepr.h: 5-1 96-1
longobject.h: 4-1 213-1
memoryobject.h: 6-1 70-1
methodobject.h: 7-1 108-1
modsupport.h: 5-1 181-1
moduleobject.h: 7-1 87-1
namespaceobject.h: 7-1 17-1
object.h: 4-1 1075-1
objimpl.h: 11-1 368-1
odictobject.h: 4-1 44-1
osmodule.h: 7-1 15-1
pyarena.h: 9-1 60-1
pycapsule.h: 18-1 57-1
pydebug.h: 5-1 37-1
pyerrors.h: 4-1 503-1
pyfpe.h: 4-1 174-1
pyhash.h: 5-1 142-1
pylifecycle.h: 7-1 127-1
pymem.h: 11-1 230-1
pyport.h: 256-1 560-4 632-36 649-20 690-1
pystate.h: 8-1 322-1
pystrcmp.h: 5-1 20-1
pystrtod.h: 5-1 42-1
pythonrun.h: 7-1 195-1
pytime.h: 13-1 196-1
rangeobject.h: 7-1 25-1
setobject.h: 6-1 106-1
sliceobject.h: 4-1 63-1
structseq.h: 7-1 47-1
sysmodule.h: 7-1 41-1
traceback.h: 5-1 117-1
tupleobject.h: 7-1 71-1
unicodeobject.h: 190-1 2330-1
warnings.h: 4-1 60-1
weakrefobject.h: 6-1 84-1
pyconfig.h: 1488-1
usr/ include/ _wctype.h: 63-66
assert.h: 44-1 63-1 106-1
c++/ 4.2.1/ bits/ os_defines.h: 67-1 98-1 150-1 253-1
ctype.h: 125-66
inttypes.h: 275-14
libkern/ _OSByteOrder.h: 87-39
i386/ _OSByteOrder.h: 35-39
math.h: 763-14
stdio.h: 419-68 490-60
stdlib.h: 320-14
string.h: 184-60
sys/ _types.h: 42-1
_types/ _wchar_t.h: 31-1
cdefs.h: 70-13 111-34 119-13 244-13
signal.h: 125-57
wchar.h: 168-68 222-14

__dead [References: 1]

/ usr/ include/ sys/ cdefs.h: 198-1

__has_builtin [References: 1]

/ usr/ include/ sys/ cdefs.h: 89-1

__hpux [References: 4]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 316-62 522-44

__i386__ [References: 48]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyatomic.h: 110-35
pymacconfig.h: 84-1
usr/ include/ libkern/ _OSByteOrder.h: 65-13 82-13
i386/ _OSByteOrder.h: 77-15
machine/ _mcontext.h: 28-14
_types.h: 31-14
endian.h: 34-14
limits.h: 5-14
signal.h: 31-14
types.h: 34-14
math.h: 87-16 128-16 241-13
sys/ cdefs.h: 704-53

__ia64 [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pyport.h: 316-81

__llvm__ [References: 2]

/ usr/ include/ libkern/ i386/ _OSByteOrder.h: 59-13 67-13

__nonnull [References: 32]

/ usr/ include/ sys/ cdefs.h: 221-1

__null_unspecified [References: 32]

/ usr/ include/ sys/ cdefs.h: 224-1

__nullable [References: 32]

/ usr/ include/ sys/ cdefs.h: 218-1

__ppc__ [References: 2]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ pymacconfig.h: 50-1
usr/ include/ c++/ 4.2.1/ bits/ os_defines.h: 120-35

__sgi [References: 1]

/ Users/ paulross/ dev/ Python-3.6.2/ Include/ Python.h: 21-13

__sys_cdefs_arch_unknown__ [References: 64]

/ usr/ include/ sys/ cdefs.h: 704-14 705-16

_undef__has_builtin [References: 2]

/ usr/ include/ secure/ _stdio.h: 81-1
_string.h: 137-1

lint [References: 3]

/ usr/ include/ stdio.h: 395-1
sys/ _endian.h: 99-13

va_end [References: 1]

/ usr/ include/ c++/ 4.2.1/ cstdarg: 55-1

Return to Index