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