Home
last modified time | relevance | path

Searched refs:ZLIB_VERSION (Results 1 – 12 of 12) sorted by relevance

/f-stack/freebsd/contrib/zlib/
H A Dzlib.h40 #define ZLIB_VERSION "1.2.11" macro
1784 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream))
1786 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream))
1789 (strategy), ZLIB_VERSION, (int)sizeof(z_stream))
1791 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \
1795 ZLIB_VERSION, (int)sizeof(z_stream))
1798 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream))
1800 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream))
1803 (strategy), ZLIB_VERSION, (int)sizeof(z_stream))
1805 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \
[all …]
H A Dzutil.c29 return ZLIB_VERSION; in zlibVersion()
H A DFAQ104 ZLIB_VERSION symbol defined in zlib.h .
174 You need to change the ZLIB_VERSION and ZLIB_VERNUM #defines in zlib.h. In
176 identification string should be appended to ZLIB_VERSION. Version numbers
180 ZLIB_VERSION to something like "1.2.3.f-zachary-mods-v3". You can also
191 ZLIB_VERSION and ZLIB_VERNUM and note the origin and nature of the changes
H A Dinfback.c37 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
H A Dinflate.c204 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
H A Ddeflate.c256 static const char my_version[] = ZLIB_VERSION;
/f-stack/freebsd/contrib/zstd/zlibWrapper/examples/
H A Dexample_original.c569 static const char* myVersion = ZLIB_VERSION;
575 } else if (strcmp(zlibVersion(), ZLIB_VERSION) != 0) {
580 ZLIB_VERSION, ZLIB_VERNUM, zlibCompileFlags());
H A Dexample.c577 static const char* myVersion = ZLIB_VERSION;
583 } else if (strcmp(zlibVersion(), ZLIB_VERSION) != 0) {
588 ZLIB_VERSION, ZLIB_VERNUM, zlibCompileFlags());
H A Dzwrapbench.c640 DISPLAY("benchmarking zlib %s\n", ZLIB_VERSION); in BMK_benchCLevel()
648 DISPLAY("benchmarking zlib %s (zlib not reusing a context)\n", ZLIB_VERSION); in BMK_benchCLevel()
656 DISPLAY("benchmarking zlib %s (using zlibWrapper)\n", ZLIB_VERSION); in BMK_benchCLevel()
664 DISPLAY("benchmarking zlib %s (zlibWrapper not reusing a context)\n", ZLIB_VERSION); in BMK_benchCLevel()
H A Dfitblk.c158 printf("zlib version %s\n", ZLIB_VERSION); in main()
/f-stack/freebsd/contrib/zlib/test/
H A Dexample.c552 static const char* myVersion = ZLIB_VERSION;
558 } else if (strcmp(zlibVersion(), ZLIB_VERSION) != 0) {
563 ZLIB_VERSION, ZLIB_VERNUM, zlibCompileFlags());
H A Dinfcover.c376 ret = inflateInit_(&strm, ZLIB_VERSION - 1, (int)sizeof(z_stream)); in cover_support()