HomeSort by relevance Sort by last modified time
    Searched refs:crctable (Results 1 - 11 of 11) sorted by null

  /external/bzip2/
Makefile 32 crctable.o \
121 crctable.o: crctable.c
122 $(CC) $(CFLAGS) -c crctable.c
147 $(DISTNAME)/crctable.c \
  /device/linaro/hikey/installer/hikey/
hisi-idt.py 21 crctable = [ variable in class:bootdownload
92 crc = ((crc << 8) | ord(char)) ^ self.crctable[(crc >> 8) & 0xff]
94 crc = ((crc << 8) | 0) ^ self.crctable[(crc >> 8) & 0xff]
  /external/python/cpython3/Lib/
zipfile.py 540 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()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
zipfile.py 451 crctable = _GenerateCRCTable() variable in class:_ZipDecrypter
455 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
zipfile.py 434 crctable = _GenerateCRCTable() variable in class:_ZipDecrypter
438 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]
    [all...]
  /external/chromium-trace/catapult/third_party/zipfile/
zipfile_2_7_13.py 451 crctable = _GenerateCRCTable() variable in class:_ZipDecrypter
455 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]
    [all...]
  /external/python/cpython2/Lib/
zipfile.py 451 crctable = _GenerateCRCTable() variable in class:_ZipDecrypter
455 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
zipfile.py 451 crctable = _GenerateCRCTable() variable in class:_ZipDecrypter
455 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
zipfile.py 451 crctable = _GenerateCRCTable() variable in class:_ZipDecrypter
455 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py 451 crctable = _GenerateCRCTable() variable in class:_ZipDecrypter
455 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py 451 crctable = _GenerateCRCTable() variable in class:_ZipDecrypter
455 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff]
    [all...]

Completed in 360 milliseconds