Home
last modified time | relevance | path

Searched refs:_PyUnicode_HASH (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/python/cpython3/Objects/
Dunicodeobject.c145 #define _PyUnicode_HASH(op) \ macro
1236 _PyUnicode_HASH(unicode) = -1; in _PyUnicode_New()
1437 _PyUnicode_HASH(unicode) = -1; in PyUnicode_New()
1984 if (_PyUnicode_HASH(unicode) != -1) in unicode_modifiable()
11307 assert(_PyUnicode_HASH(right_uni) != -1); in _PyUnicode_EqualToASCIIId()
11308 Py_hash_t hash = _PyUnicode_HASH(left); in _PyUnicode_EqualToASCIIId()
11309 if (hash != -1 && hash != _PyUnicode_HASH(right_uni)) { in _PyUnicode_EqualToASCIIId()
11832 if (_PyUnicode_HASH(self) != -1) in unicode_hash()
11833 return _PyUnicode_HASH(self); in unicode_hash()
11839 _PyUnicode_HASH(self) = x; in unicode_hash()
[all …]