Home
last modified time | relevance | path

Searched refs:crc_32_tab (Results 1 – 5 of 5) sorted by relevance

/external/liblzf/
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/
DCLZF.cs50 UInt32 []crc_32_tab = new UInt32[256] field in LZF.NET.CLZF
108 return crc_32_tab[(OldCRC & 0xff) ^ NewData] ^ (OldCRC >> 8); in crc32()
/external/syslinux/memdisk/
Dunzip.c75 static ulg crc_32_tab[256]; variable
169 c = crc_32_tab[(c ^ ch) & 0xff] ^ (c >> 8); in flush_window()
Dinflate.c947 static ulg crc_32_tab[256]; variable
973 crc_32_tab[0] = 0; in makecrc()
982 crc_32_tab[i] = c; in makecrc()
/external/python/cpython2/Modules/
Dbinascii.c958 static unsigned int crc_32_tab[256] = { variable
1029 crc = crc_32_tab[(crc ^ *bin_data++) & 0xffU] ^ (crc >> 8); in binascii_crc32()