#include "Toshi/TSingleton.h"
#include "Toshi/TEvent.h"
#include "Thread/TMutex.h"
#include <utility>
Go to the source code of this file.
◆ CRC32POLY
#define CRC32POLY ( 0xEDB88320L ) /* Generator polynomial number */ |
◆ CRC32POST
◆ crc32upd
#define crc32upd |
( |
| crctab, |
|
|
| crc, |
|
|
| c ) |
Value: ( ( crctab )[ ( (
TINT)( crc ) ^ ( c ) ) & 0xff ] ^ ( ( crc ) >> 8 ) )
Definition at line 176 of file TUtil.h.
176#define crc32upd( crctab, crc, c ) \
177 ( ( crctab )[ ( (TINT)( crc ) ^ ( c ) ) & 0xff ] ^ ( ( crc ) >> 8 ) )
◆ CRC_TABSIZE
#define CRC_TABSIZE ( 256 ) /* Normal 256-entry table */ |