Searched refs:cachedCRC (Results 1 – 1 of 1) sorted by relevance
33 static int cachedCRC; field in CalculateCRC3274 cachedCRC = lastcrc; in computeCRC32()77 temp1 = cachedCRC >>> 8; in computeCRC32()79 temp2 = CRCTable[(cachedCRC ^s) & 0xFF]; in computeCRC32()80 cachedCRC = temp1 ^ temp2; in computeCRC32()82 return cachedCRC; in computeCRC32()86 return new BigInteger(new Integer(cachedCRC).toString()).toByteArray(); in toBytes()