Lines Matching defs:data
1 /* crc32.c -- compute the CRC-32 of a data stream
313 information needed to generate CRCs on data a byte at a time for all
679 Return the CRC of the W bytes in the word_t data, taking the
680 least-significant byte of the word as the first byte of data, without any pre
683 local z_crc_t crc_word(z_word_t data) {
686 data = (data >> 8) ^ crc_table[data & 0xff];
687 return (z_crc_t)data;
690 local z_word_t crc_word_big(z_word_t data) {
693 data = (data << 8) ^
694 crc_big_table[(data >> ((W - 1) << 3)) & 0xff];
695 return data;
725 /* check remaining data */
729 /* Fall into the default crc32 for the remaining data. */
737 /* check remaining data */
741 /* Fall into the default crc32 for the remaining data. */
751 /* Check remaining data. */
756 /* Fall through for the remaining data. */
1108 /* Check remaining data. */
1113 /* Fall through for the remaining data. */