Lines Matching refs:_PyUnicode_STATE
115 #define _PyUnicode_STATE(op) \ macro
1136 _PyUnicode_STATE(unicode).interned = 0; in _PyUnicode_New()
1137 _PyUnicode_STATE(unicode).kind = 0; in _PyUnicode_New()
1138 _PyUnicode_STATE(unicode).compact = 0; in _PyUnicode_New()
1139 _PyUnicode_STATE(unicode).ready = 0; in _PyUnicode_New()
1140 _PyUnicode_STATE(unicode).ascii = 0; in _PyUnicode_New()
1336 _PyUnicode_STATE(unicode).interned = 0; in PyUnicode_New()
1337 _PyUnicode_STATE(unicode).kind = kind; in PyUnicode_New()
1338 _PyUnicode_STATE(unicode).compact = 1; in PyUnicode_New()
1339 _PyUnicode_STATE(unicode).ready = 1; in PyUnicode_New()
1340 _PyUnicode_STATE(unicode).ascii = is_ascii; in PyUnicode_New()
1696 assert(_PyUnicode_STATE(unicode).interned == SSTATE_NOT_INTERNED); in _PyUnicode_Ready()
1714 _PyUnicode_STATE(unicode).kind = PyUnicode_1BYTE_KIND; in _PyUnicode_Ready()
1716 _PyUnicode_STATE(unicode).ascii = 1; in _PyUnicode_Ready()
1721 _PyUnicode_STATE(unicode).ascii = 0; in _PyUnicode_Ready()
1740 _PyUnicode_STATE(unicode).kind = PyUnicode_2BYTE_KIND; in _PyUnicode_Ready()
1756 _PyUnicode_STATE(unicode).kind = PyUnicode_2BYTE_KIND; in _PyUnicode_Ready()
1780 _PyUnicode_STATE(unicode).kind = PyUnicode_4BYTE_KIND; in _PyUnicode_Ready()
1784 _PyUnicode_STATE(unicode).ready = 1; in _PyUnicode_Ready()
1796 _PyUnicode_STATE(unicode).kind = PyUnicode_4BYTE_KIND; in _PyUnicode_Ready()
1800 _PyUnicode_STATE(unicode).ready = 1; in _PyUnicode_Ready()
15060 _PyUnicode_STATE(self).interned = 0; in unicode_subtype_new()
15061 _PyUnicode_STATE(self).kind = kind; in unicode_subtype_new()
15062 _PyUnicode_STATE(self).compact = 0; in unicode_subtype_new()
15063 _PyUnicode_STATE(self).ascii = _PyUnicode_STATE(unicode).ascii; in unicode_subtype_new()
15064 _PyUnicode_STATE(self).ready = 1; in unicode_subtype_new()
15287 _PyUnicode_STATE(s).interned = SSTATE_INTERNED_MORTAL; in PyUnicode_InternInPlace()
15295 _PyUnicode_STATE(*p).interned = SSTATE_INTERNED_IMMORTAL; in PyUnicode_InternImmortal()
15354 _PyUnicode_STATE(s).interned = SSTATE_NOT_INTERNED; in _Py_ReleaseInternedUnicodeStrings()