Lines Matching defs:data
1 /* crc32.c -- compute the CRC-32 of a data stream
306 information needed to generate CRCs on data a byte at a time for all
672 Return the CRC of the W bytes in the word_t data, taking the
673 least-significant byte of the word as the first byte of data, without any pre
676 local z_crc_t crc_word(z_word_t data) {
679 data = (data >> 8) ^ crc_table[data & 0xff];
680 return (z_crc_t)data;
683 local z_word_t crc_word_big(z_word_t data) {
686 data = (data << 8) ^
687 crc_big_table[(data >> ((W - 1) << 3)) & 0xff];
688 return data;