Searched refs:crctable (Results 1 - 4 of 4) sorted by relevance

/external/bzip2/
H A DMakefile32 crctable.o \
121 crctable.o: crctable.c
122 $(CC) $(CFLAGS) -c crctable.c
147 $(DISTNAME)/crctable.c \
/external/python/cpython3/Lib/
H A Dzipfile.py540 crctable = None variable in class:_ZipDecrypter
544 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ch) & 0xff]
547 if _ZipDecrypter.crctable is None:
548 _ZipDecrypter.crctable = _ZipDecrypter._GenerateCRCTable()
/external/chromium-trace/catapult/third_party/zipfile/
H A Dzipfile_2_7_13.py451 crctable = _GenerateCRCTable() variable in class:_ZipDecrypter
455 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]
/external/python/cpython2/Lib/
H A Dzipfile.py451 crctable = _GenerateCRCTable() variable in class:_ZipDecrypter
455 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]

Completed in 161 milliseconds