Searched refs:crc_rem (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_cache.c1700 unsigned int crc_rem = i << 24; local
1703 if (crc_rem & 0x80000000)
1704 crc_rem = (crc_rem << 1) ^ crc32_polynomial;
1706 crc_rem = (crc_rem << 1);
1708 crc32tab[i] = crc_rem;

Completed in 17 milliseconds