Lines Matching refs:hash
2443 } hash;
2444 hash.x = _Py_KeyedHash((uint64_t)key, source->buf, source->len);
2448 for (size_t i = 0; i < sizeof(hash.data)/2; i++) {
2449 char tmp = hash.data[i];
2450 hash.data[i] = hash.data[sizeof(hash.data) - i - 1];
2451 hash.data[sizeof(hash.data) - i - 1] = tmp;
2454 return PyBytes_FromStringAndSize(hash.data, sizeof(hash.data));