• Home
  • Raw
  • Download

Lines Matching refs:_PyUnicode_STATE

134 #define _PyUnicode_STATE(op)                            \  macro
1257 _PyUnicode_STATE(unicode).interned = 0; in _PyUnicode_New()
1258 _PyUnicode_STATE(unicode).kind = 0; in _PyUnicode_New()
1259 _PyUnicode_STATE(unicode).compact = 0; in _PyUnicode_New()
1260 _PyUnicode_STATE(unicode).ready = 0; in _PyUnicode_New()
1261 _PyUnicode_STATE(unicode).ascii = 0; in _PyUnicode_New()
1460 _PyUnicode_STATE(unicode).interned = 0; in PyUnicode_New()
1461 _PyUnicode_STATE(unicode).kind = kind; in PyUnicode_New()
1462 _PyUnicode_STATE(unicode).compact = 1; in PyUnicode_New()
1463 _PyUnicode_STATE(unicode).ready = 1; in PyUnicode_New()
1464 _PyUnicode_STATE(unicode).ascii = is_ascii; in PyUnicode_New()
1821 assert(_PyUnicode_STATE(unicode).interned == SSTATE_NOT_INTERNED); in _PyUnicode_Ready()
1839 _PyUnicode_STATE(unicode).kind = PyUnicode_1BYTE_KIND; in _PyUnicode_Ready()
1841 _PyUnicode_STATE(unicode).ascii = 1; in _PyUnicode_Ready()
1846 _PyUnicode_STATE(unicode).ascii = 0; in _PyUnicode_Ready()
1865 _PyUnicode_STATE(unicode).kind = PyUnicode_2BYTE_KIND; in _PyUnicode_Ready()
1881 _PyUnicode_STATE(unicode).kind = PyUnicode_2BYTE_KIND; in _PyUnicode_Ready()
1905 _PyUnicode_STATE(unicode).kind = PyUnicode_4BYTE_KIND; in _PyUnicode_Ready()
1909 _PyUnicode_STATE(unicode).ready = 1; in _PyUnicode_Ready()
1921 _PyUnicode_STATE(unicode).kind = PyUnicode_4BYTE_KIND; in _PyUnicode_Ready()
1925 _PyUnicode_STATE(unicode).ready = 1; in _PyUnicode_Ready()
15406 _PyUnicode_STATE(self).interned = 0; in unicode_subtype_new()
15407 _PyUnicode_STATE(self).kind = kind; in unicode_subtype_new()
15408 _PyUnicode_STATE(self).compact = 0; in unicode_subtype_new()
15409 _PyUnicode_STATE(self).ascii = _PyUnicode_STATE(unicode).ascii; in unicode_subtype_new()
15410 _PyUnicode_STATE(self).ready = 1; in unicode_subtype_new()
15625 _PyUnicode_STATE(s).interned = SSTATE_INTERNED_MORTAL; in PyUnicode_InternInPlace()
15634 _PyUnicode_STATE(*p).interned = SSTATE_INTERNED_IMMORTAL; in PyUnicode_InternImmortal()
15698 _PyUnicode_STATE(s).interned = SSTATE_NOT_INTERNED; in unicode_release_interned()