Searched refs:CRC32_TABLE (Results 1 – 2 of 2) sorted by relevance
1 use table::CRC32_TABLE;38 crc = CRC32_TABLE[0x0][buf[0xf] as usize] in update_fast_16()39 ^ CRC32_TABLE[0x1][buf[0xe] as usize] in update_fast_16()40 ^ CRC32_TABLE[0x2][buf[0xd] as usize] in update_fast_16()41 ^ CRC32_TABLE[0x3][buf[0xc] as usize] in update_fast_16()42 ^ CRC32_TABLE[0x4][buf[0xb] as usize] in update_fast_16()43 ^ CRC32_TABLE[0x5][buf[0xa] as usize] in update_fast_16()44 ^ CRC32_TABLE[0x6][buf[0x9] as usize] in update_fast_16()45 ^ CRC32_TABLE[0x7][buf[0x8] as usize] in update_fast_16()46 ^ CRC32_TABLE[0x8][buf[0x7] as usize] in update_fast_16()[all …]
1 pub const CRC32_TABLE: [[u32; 256]; 16] = [ constant