Go to the source code of this file.
Classes | |
| struct | SDLTest_Crc32Context |
Macros | |
| #define | CrcUint32 unsigned int |
| #define | CrcUint8 unsigned char |
| #define | CRC32_POLY 0xEDB88320 /* Perl String::CRC32 compatible */ |
Functions | |
| int | SDLTest_Crc32Init (SDLTest_Crc32Context *crcContext) |
| int | SDLTest_crc32Calc (SDLTest_Crc32Context *crcContext, CrcUint8 *inBuf, CrcUint32 inLen, CrcUint32 *crc32) |
| int | SDLTest_Crc32CalcStart (SDLTest_Crc32Context *crcContext, CrcUint32 *crc32) |
| int | SDLTest_Crc32CalcEnd (SDLTest_Crc32Context *crcContext, CrcUint32 *crc32) |
| int | SDLTest_Crc32CalcBuffer (SDLTest_Crc32Context *crcContext, CrcUint8 *inBuf, CrcUint32 inLen, CrcUint32 *crc32) |
| int | SDLTest_Crc32Done (SDLTest_Crc32Context *crcContext) |
Include file for SDL test framework.
This code is a part of the SDL2_test library, not the main SDL library.
| int SDLTest_crc32Calc | ( | SDLTest_Crc32Context * | crcContext, |
| CrcUint8 * | inBuf, | ||
| CrcUint32 | inLen, | ||
| CrcUint32 * | crc32 | ||
| ) |
/brief calculate a crc32 from a data block
/param crcContext pointer to context variable /param inBuf input buffer to checksum /param inLen length of input buffer /param crc32 pointer to Uint32 to store the final CRC into
/returns 0 for OK, -1 on error
| int SDLTest_Crc32Done | ( | SDLTest_Crc32Context * | crcContext | ) |
/brief clean up CRC context
/param crcContext pointer to context variable
/returns 0 for OK, -1 on error
| int SDLTest_Crc32Init | ( | SDLTest_Crc32Context * | crcContext | ) |
/brief Initialize the CRC context
Note: The function initializes the crc table required for all crc calculations.
/param crcContext pointer to context variable
/returns 0 for OK, -1 on error
1.8.5