Lines Matching defs:crc
42 * CRC-32 version 2.0.0 by Craig Bruce, 2006-04-29.
44 * This program generates the CRC-32 values for the files named in the
45 * command-line arguments. These are the same CRC-32 values used by GZIP,
51 * Based on the byte-oriented implementation "File Verification Using CRC"
57 * v1.0.3: replaced CRC constant table by generator function.
64 * Crc32_ComputeBuf () - computes the CRC-32 value of a memory buffer
66 * Computes or accumulates the CRC-32 value for a memory buffer.
67 * The 'inCrc32' gives a previously accumulated CRC-32 value to allow
68 * a CRC to be generated for multiple sequential buffer-fuls of data.
71 * inCrc32 - accumulated CRC-32 value, must be 0 on first call
72 * buf - buffer to compute CRC-32 value for
75 * crc32 - computed CRC-32 value
895 uint32_t crc = call_test_function (test_function, i, 0);
897 printf ("%d: %08X\n", i, crc);
898 checksum += crc;