HomeSort by relevance Sort by last modified time
    Searched defs:crc_32_tab (Results 1 - 2 of 2) sorted by null

  /external/liblzf/
crc32.h 6 static const u32 crc_32_tab[] = variable
62 #define crc32(crc,byte) (crc_32_tab[(u8)(crc) ^ (u8)(byte)] ^ ((crc) >> 8))
  /external/liblzf/cs/
CLZF.cs 50 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 187 milliseconds