Lines Matching defs:crc32
1 /* crc32.c -- compute the CRC-32 of a data stream
15 one thread to use crc32().
17 MAKECRCH can be #defined to write out crc32.h. A main() routine is also
40 crc32.h would need to be regenerated, if the maximum N value is increased.
300 The crc32.h header file contains tables for both 32-bit and 64-bit
306 # error Need a 64-bit integer type in order to generate crc32.h.
313 out = fopen("crc32.h", "w");
316 /* write out little-endian CRC table to crc32.h */
318 "/* crc32.h -- tables for rapid CRC calculation\n"
319 " * Generated automatically by crc32.c\n */\n"
327 /* write out big-endian CRC table for 64-bit z_word_t to crc32.h */
340 /* write out big-endian CRC table for 32-bit z_word_t to crc32.h */
362 /* write out braid tables for 64-bit z_word_t to crc32.h */
388 /* write out braid tables for 32-bit z_word_t to crc32.h */
419 /* write out zeros operator table to crc32.h */
527 #include "crc32.h"
576 * This function can be used by asm versions of crc32(), and to force the
593 * -march=armv8-a+crc, or -march=native if the compile machine has the crc32
1052 unsigned long ZEXPORT crc32(unsigned long crc, const unsigned char FAR *buf,