Coverage Report

Created: 2025-07-18 06:31

/rust/registry/src/index.crates.io-6f17d22bba15001f/crc32fast-1.5.0/src/combine.rs
Line
Count
Source (jump to first uncovered line)
1
const POLY: u32 = 0xedb88320;
2
3
static X2N_TABLE: [u32; 32] = [
4
    0x00800000, 0x00008000, 0xedb88320, 0xb1e6b092, 0xa06a2517, 0xed627dae, 0x88d14467, 0xd7bbfe6a,
5
    0xec447f11, 0x8e7ea170, 0x6427800e, 0x4d47bae0, 0x09fe548f, 0x83852d0f, 0x30362f1a, 0x7b5a9cc3,
6
    0x31fec169, 0x9fec022a, 0x6c8dedc4, 0x15d6874d, 0x5fde7a4e, 0xbad90e37, 0x2e4e5eef, 0x4eaba214,
7
    0xa8a472c0, 0x429a969e, 0x148d302a, 0xc40ba6d0, 0xc4e22c3c, 0x40000000, 0x20000000, 0x08000000,
8
];
9
10
// Calculates a(x) multiplied by b(x) modulo p(x), where p(x) is the CRC polynomial,
11
// reflected. For speed, this requires that a not be zero.
12
0
fn multiply(a: u32, mut b: u32) -> u32 {
13
0
    let mut p = 0u32;
14
15
0
    for i in 0..32 {
16
0
        p ^= b & ((a >> (31 - i)) & 1).wrapping_neg();
17
0
        b = (b >> 1) ^ ((b & 1).wrapping_neg() & POLY);
18
0
    }
19
20
0
    p
21
0
}
22
23
0
pub(crate) fn combine(crc1: u32, crc2: u32, len2: u64) -> u32 {
24
0
    // Special case: If the length of the second chunk is zero, return the hash
25
0
    // of the first chunk.
26
0
    if len2 == 0 {
27
0
        return crc1;
28
0
    }
29
0
30
0
    // We are padding the first checksum with len2-amount of zeroes. For efficiency,
31
0
    // this is done in powers-of-two via a lookup table rather than one by one.
32
0
    let mut p = crc1;
33
0
    let n = 64 - len2.leading_zeros();
34
0
    for i in 0..n {
35
0
        if (len2 >> i & 1) != 0 {
36
0
            p = multiply(X2N_TABLE[(i & 0x1F) as usize], p);
37
0
        }
38
    }
39
40
0
    p ^ crc2
41
0
}
42
43
#[test]
44
fn golden() {
45
    assert_eq!(combine(0x0, 0x1, 0x0), 0x0);
46
    assert_eq!(combine(0xc401f8c9, 0x00000000, 0x0), 0xc401f8c9);
47
    assert_eq!(combine(0x7cba3d5e, 0xe7466d39, 0xb), 0x76365c4f);
48
    assert_eq!(combine(0x576c62d6, 0x123256e1, 0x47), 0x579a636);
49
    assert_eq!(combine(0x4f626f9a, 0x9e5ccbf5, 0xa59d), 0x98d43168);
50
    assert_eq!(combine(0xa09b8a88, 0x815b0f48, 0x40f39511), 0xd7a5f79);
51
    assert_eq!(
52
        combine(0x7f6a4306, 0xbc929646, 0x828cde72b3e25301),
53
        0xef922dda
54
    );
55
}