diff options
Diffstat (limited to 'src/buildtool/storage/file_chunker.cpp')
-rw-r--r-- | src/buildtool/storage/file_chunker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/storage/file_chunker.cpp b/src/buildtool/storage/file_chunker.cpp index 8e747900..b94f487a 100644 --- a/src/buildtool/storage/file_chunker.cpp +++ b/src/buildtool/storage/file_chunker.cpp @@ -23,8 +23,8 @@ namespace { // Mask values taken from algorithm 2 of the paper // https://ieeexplore.ieee.org/document/9055082. -constexpr std::uint64_t kMaskS{0x0000d9f003530000ULL}; // 15 '1' bits -constexpr std::uint64_t kMaskL{0x0000d90003530000ULL}; // 11 '1' bits +constexpr std::uint64_t kMaskS{0x4444d9f003530000ULL}; // 19 '1' bits +constexpr std::uint64_t kMaskL{0x4444d90003530000ULL}; // 15 '1' bits // Predefined array of 256 random 64-bit integers, needs to be initialized. constexpr std::uint32_t kRandomTableSize{256}; |