Home
last modified time | relevance | path

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

/device/linaro/hikey/installer/hikey/
Dhisi-idt.py21 crctable = [ variable in bootdownload
92 crc = ((crc << 8) | ord(char)) ^ self.crctable[(crc >> 8) & 0xff]
94 crc = ((crc << 8) | 0) ^ self.crctable[(crc >> 8) & 0xff]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dzipfile.py434 crctable = _GenerateCRCTable() variable in _ZipDecrypter
438 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dzipfile.py451 crctable = _GenerateCRCTable() variable in _ZipDecrypter
455 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]