Searched refs:crcTable (Results 1 – 3 of 3) sorted by relevance
14 private static final long[] crcTable = new long[256]; field in CRC6419 for (int b = 0; b < crcTable.length; ++b) {28 crcTable[b] = r;41 crc = crcTable[(buf[off++] ^ (int)crc) & 0xFF] ^ (crc >>> 8); in update()
19 static final int[] crcTable = new int[256]; field in CRC32Hash32 crcTable[i] = r;
69 int temp = crcTable[buf[off] & 0xFF] ^ (buf[off + 1] & 0xFF); in calcHashes()75 temp ^= crcTable[buf[off + 3] & 0xFF] << 5; in calcHashes()