Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Dbytesobject.h7 Py_hash_t ob_shash; member
/third_party/python/Objects/
Dbytesobject.c75 op->ob_shash = -1; in bytes_create_empty_string_singleton()
131 op->ob_shash = -1; in _PyBytes_FromSize()
207 op->ob_shash = -1; in PyBytes_FromString()
1471 op->ob_shash = -1; in bytes_repeat()
1587 if (a->ob_shash == -1) { in bytes_hash()
1589 a->ob_shash = _Py_HashBytes(a->ob_sval, Py_SIZE(a)); in bytes_hash()
1591 return a->ob_shash; in bytes_hash()
2873 ((PyBytesObject *)pnew)->ob_shash = in bytes_subtype_new()
2874 ((PyBytesObject *)tmp)->ob_shash; in bytes_subtype_new()
3056 sv->ob_shash = -1; /* invalidate cached hash value */ in _PyBytes_Resize()