(p: usize)
| 177 | |
| 178 | #[inline] |
| 179 | pub const fn hash_object_id(p: usize) -> PyHash { |
| 180 | fix_sentinel(hash_object_id_raw(p)) |
| 181 | } |
| 182 | |
| 183 | pub fn keyed_hash(key: u64, buf: &[u8]) -> u64 { |
| 184 | let mut hasher = SipHasher24::new_with_keys(key, 0); |
no test coverage detected