Home
last modified time | relevance | path

Searched refs:crctable (Results 1 – 9 of 9) sorted by relevance

/external/bzip2/
DMakefile-libbz2_so31 crctable.o \
50 crctable.o: crctable.c
51 $(CC) $(CFLAGS) -c crctable.c
DMakefile32 crctable.o \
121 crctable.o: crctable.c
122 $(CC) $(CFLAGS) -c crctable.c
147 $(DISTNAME)/crctable.c \
DAndroid.bp37 "crctable.c",
Dmakefile.msc11 crctable.obj \
Dlibbz2.dsp111 SOURCE=.\crctable.c
/external/toybox/lib/
Ddeflate.c21 unsigned crctable[256], crc; member
417 unsigned crc, *crc_table = dd->crctable; in gzip_crc()
440 crc_init(dd->crctable, 1); in gzip_fd()
469 crc_init(dd->crctable, 1); in gunzip_fd()
/external/chromium-trace/catapult/third_party/zipfile/
Dzipfile_2_7_13.py451 crctable = _GenerateCRCTable() variable in _ZipDecrypter
455 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]
/external/python/cpython2/Lib/
Dzipfile.py451 crctable = _GenerateCRCTable() variable in _ZipDecrypter
455 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]
/external/python/cpython3/Lib/
Dzipfile.py562 crctable = _crctable
566 return (crc >> 8) ^ crctable[(crc ^ ch) & 0xFF]