updateCrc static method

int updateCrc(
  1. int value,
  2. int crc
)

Implementation

static int updateCrc(int value, int crc) {
  return ((crc << 8) ^ _bz2Crc32Table[(crc >> 24) & 0xff ^ (value & 0xff)]) &
      0xffffffff;
}