Home
last modified time | relevance | path

Searched refs:poly (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dcrc32.c110 unsigned long poly; /* polynomial exclusive-or pattern */ in make_crc_table() local
122 poly = 0UL; in make_crc_table()
124 poly |= 1UL << (31 - p[n]); in make_crc_table()
130 c = c & 1 ? poly ^ (c >> 1) : c >> 1; in make_crc_table()
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
Dcrc32.c92 z_crc_t poly; /* polynomial exclusive-or pattern */ in make_crc_table() local
104 poly = 0; in make_crc_table()
106 poly |= (z_crc_t)1 << (31 - p[n]); in make_crc_table()
112 c = c & 1 ? poly ^ (c >> 1) : c >> 1; in make_crc_table()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dcrc32.c94 z_crc_t poly; /* polynomial exclusive-or pattern */ in make_crc_table() local
106 poly = 0; in make_crc_table()
108 poly |= (z_crc_t)1 << (31 - p[n]); in make_crc_table()
114 c = c & 1 ? poly ^ (c >> 1) : c >> 1; in make_crc_table()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
Dmakeunicodedata.py970 for size, poly in SIZES:
972 poly = size + poly
1007 incr = incr ^ poly
1020 self.poly = poly
1027 file.write("#define %s_poly %d\n" % (self.name, self.poly))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dzipfile.py423 poly = 0xedb88320
429 crc = ((crc >> 1) & 0x7FFFFFFF) ^ poly
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dzipfile.py440 poly = 0xedb88320
446 crc = ((crc >> 1) & 0x7FFFFFFF) ^ poly