Searched refs:byteTable (Results 1 – 1 of 1) sorted by relevance
69 private static final int[] byteTable; field in CRC32C106 byteTable = byteTables[0];108 byteTable = new int[byteTable0.length];109 System.arraycopy(byteTable0, 0, byteTable, 0, byteTable0.length); in System.arraycopy() argument135 crc = (crc >>> 8) ^ byteTable[(crc ^ (b & 0xFF)) & 0xFF]; in update()225 crc = (crc >>> 8) ^ byteTable[(crc ^ b[off]) & 0xFF]; in updateBytes()280 crc = (crc >>> 8) ^ byteTable[(crc ^ b[off]) & 0xFF]; in updateBytes()300 ^ byteTable[(crc ^ UNSAFE.getByte(address + off)) & 0xFF]; in updateDirectByteBuffer()343 ^ byteTable[(crc ^ UNSAFE.getByte(address + off)) & 0xFF]; in updateDirectByteBuffer()