Home
last modified time | relevance | path

Searched refs:DO_CRC (Results 1 – 1 of 1) sorted by relevance

/linux-2.6.39/lib/
Dcrc32.c54 # define DO_CRC(x) crc = tab[0][(crc ^ (x)) & 255] ^ (crc >> 8) in crc32_body() macro
60 # define DO_CRC(x) crc = tab[0][((crc >> 24) ^ (x)) & 255] ^ (crc << 8) in crc32_body()
72 DO_CRC(*buf++); in crc32_body()
88 DO_CRC(*++p); /* use pre increment for speed */ in crc32_body()
92 #undef DO_CRC in crc32_body()