////////////////////////////////////////////////////////////////////////////////
// This Source Code Form is subject to the terms of the Mozilla Public /
// License, v. 2.0. If a copy of the MPL was not distributed with this /
// file, You can obtain one at https://mozilla.org/MPL/2.0/. /
// /
////////////////////////////////////////////////////////////////////////////////
pub
pub
pub
pub
pub
// optimization: we only have to reserve LONG_OFFSET_MAX + 1 bytes
// but since it costs less instructions to do modulo by a power of two
// we'll use the next largest power of two
const HASH_CHAIN_BUFFER_SIZE: usize = 1 << 18;