Searched defs:crc_32_tab (Results 1 - 2 of 2) sorted by relevance

/external/liblzf/
H A Dcrc32.h6 static const u32 crc_32_tab[] = variable
62 #define crc32(crc,byte) (crc_32_tab[(u8)(crc) ^ (u8)(byte)] ^ ((crc) >> 8))
/external/liblzf/cs/
H A DCLZF.cs50 UInt32 []crc_32_tab = new UInt32[256] field in class:LZF.NET.CLZF
108 return crc_32_tab[(OldCRC & 0xff) ^ NewData] ^ (OldCRC >> 8);

Completed in 647 milliseconds