Home
last modified time | relevance | path

Searched refs:adler32 (Results 1 – 23 of 23) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_zlib.py28 self.assertEqual(zlib.adler32(""), zlib.adler32("", 1))
29 self.assertTrue(zlib.adler32("abc", 0xffffffff))
32 self.assertEqual(zlib.adler32("", 0), 0)
33 self.assertEqual(zlib.adler32("", 1), 1)
34 self.assertEqual(zlib.adler32("", 432), 432)
44 self.assertEqual32(zlib.adler32("penguin", 0), 0x0bcf02f6)
45 self.assertEqual32(zlib.adler32("penguin", 1), 0x0bd602f7)
48 self.assertEqual(zlib.adler32("penguin"),zlib.adler32("penguin",1))
56 self.assertEqual(zlib.adler32(foo+foo), -721416943)
57 self.assertEqual(zlib.adler32('spam'), 72286642)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
DMakefile49 OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
141 adler32.o: zlib.h zconf.h
DMakefile.in49 OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
141 adler32.o: zlib.h zconf.h
Dmake_vms.com69 $ CALL MAKE adler32.OBJ "CC ''CCOPT' adler32" -
70 adler32.c zlib.h zconf.h
279 OBJS = adler32.obj, compress.obj, crc32.obj, gzio.obj, uncompr.obj, infback.obj\
306 adler32.obj : adler32.c zutil.h zlib.h zconf.h
DINDEX25 adler32.c
Dinflate.c378 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
380 # define UPDATE(check, buf, len) adler32(check, buf, len)
629 strm->adler = state->check = adler32(0L, Z_NULL, 0);
771 strm->adler = state->check = adler32(0L, Z_NULL, 0);
1185 id = adler32(0L, Z_NULL, 0);
1186 id = adler32(id, dictionary, dictLength);
Dadler32.c57 uLong ZEXPORT adler32(adler, buf, len) in adler32() function
Dzconf.h41 # define adler32 z_adler32 macro
Dzconf.in.h41 # define adler32 z_adler32 macro
Ddeflate.c332 strm->adler = adler32(strm->adler, dictionary, dictLength);
383 adler32(0L, Z_NULL, 0);
648 strm->adler = adler32(0L, Z_NULL, 0);
969 strm->adler = adler32(strm->adler, strm->next_in, len);
Dzlib.h1260 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
DChangeLog71 - Make adler32() much faster for small len
143 - Fix error in NO_DIVIDE option of adler32.c
147 - Add experimental NO_DIVIDE #define in adler32.c
658 - speed up adler32 for modern machines without auto-increment
755 - avoid various warnings in gzio.c, example.c, infblock.c, adler32.c, zutil.c
843 - added adler32 and crc32
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dadler32.c65 uLong ZEXPORT adler32(adler, buf, len) in adler32() function
Dinflate.c434 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
436 # define UPDATE(check, buf, len) adler32(check, buf, len)
682 strm->adler = state->check = adler32(0L, Z_NULL, 0);
824 strm->adler = state->check = adler32(0L, Z_NULL, 0);
1308 dictid = adler32(0L, Z_NULL, 0);
1309 dictid = adler32(dictid, dictionary, dictLength);
DINDEX39 adler32.c
Dzconf.h29 # define adler32 z_adler32 macro
Ddeflate.c343 strm->adler = adler32(strm->adler, dictionary, dictLength);
418 adler32(0L, Z_NULL, 0);
761 strm->adler = adler32(0L, Z_NULL, 0);
1090 strm->adler = adler32(strm->adler, buf, len);
Dzlib.h1569 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
DChangeLog244 - Make NO_DIVIDE option in adler32.c much faster (thanks to John Reiser)
688 - Make adler32() much faster for small len
760 - Fix error in NO_DIVIDE option of adler32.c
764 - Add experimental NO_DIVIDE #define in adler32.c
1275 - speed up adler32 for modern machines without auto-increment
1372 - avoid various warnings in gzio.c, example.c, infblock.c, adler32.c, zutil.c
1460 - added adler32 and crc32
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/
DPython2710.inf237 Modules/zlib/adler32.c #
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/
DPythonCore.inf237 Python-$(PYTHON_VERSION)/Modules/zlib/adler32.c #
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dzlibmodule.c960 signed_val = adler32(adler32val, buf, len); in PyZlib_adler32()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dzlibmodule.c925 signed_val = adler32(adler32val, buf, len); in PyZlib_adler32()