Home | History | Annotate | Download | only in SDL2

Lines Matching refs:crc32

32  Implements CRC32 calculations (default output is Perl String::CRC32 compatible).
60 #define CRC32_POLY 0xEDB88320 /* Perl String::CRC32 compatible */
64 * Data structure for CRC32 (checksum) computation
86 * /brief calculate a crc32 from a data block
91 * /param crc32 pointer to Uint32 to store the final CRC into
96 int SDLTest_crc32Calc(SDLTest_Crc32Context * crcContext, CrcUint8 *inBuf, CrcUint32 inLen, CrcUint32 *crc32);
99 int SDLTest_Crc32CalcStart(SDLTest_Crc32Context * crcContext, CrcUint32 *crc32);
100 int SDLTest_Crc32CalcEnd(SDLTest_Crc32Context * crcContext, CrcUint32 *crc32);
101 int SDLTest_Crc32CalcBuffer(SDLTest_Crc32Context * crcContext, CrcUint8 *inBuf, CrcUint32 inLen, CrcUint32 *crc32);