Lines Matching refs:u32
241 void InitializeContext(u32 context = CRC32_STANDARD_INIT);
250 u32 GetHash();
263 static u32 Calculate(const void* input, size_t length, u32 context = CRC32_STANDARD_INIT);
267 static const u32 CRC32_STANDARD_POLY = 0xedb88320; // ビット反転するものは生成多項式も反転
270 static const u32 CRC32_STANDARD_INIT = 0xffffffff;
273 typedef u32 Context;
278 u32 table[CRC_TABLE_SIZE];
290 void InitializeTable(u32 poly);
308 void InitializeContext(u32 context = CRC32_POSIX_INIT);
317 u32 GetHash();
330 static u32 Calculate(const void* input, size_t length, u32 context = CRC32_POSIX_INIT);
334 static const u32 CRC32_POSIX_POLY = 0x04c11db7;
337 static const u32 CRC32_POSIX_INIT = 0;
340 typedef u32 Context;
345 u32 table[CRC_TABLE_SIZE];
357 void InitializeTable(u32 poly);