HomeSort by: relevance | last modified time | path
    Searched refs:ZEXPORT (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/common/dist/zlib/contrib/minizip/
unzip.h 153 extern int ZEXPORT unzStringFileNameCompare(const char* fileName1,
166 extern unzFile ZEXPORT unzOpen(const char *path);
167 extern unzFile ZEXPORT unzOpen64(const void *path);
184 extern unzFile ZEXPORT unzOpen2(const char *path,
191 extern unzFile ZEXPORT unzOpen2_64(const void *path,
198 extern int ZEXPORT unzClose(unzFile file);
205 extern int ZEXPORT unzGetGlobalInfo(unzFile file,
208 extern int ZEXPORT unzGetGlobalInfo64(unzFile file,
216 extern int ZEXPORT unzGetGlobalComment(unzFile file,
229 extern int ZEXPORT unzGoToFirstFile(unzFile file)
    [all...]
mztools.h 25 extern int ZEXPORT unzRepair(const char* file,
zip.h 116 extern zipFile ZEXPORT zipOpen(const char *pathname, int append);
117 extern zipFile ZEXPORT zipOpen64(const void *pathname, int append);
137 extern zipFile ZEXPORT zipOpen2(const char *pathname,
142 extern zipFile ZEXPORT zipOpen2_64(const void *pathname,
147 extern zipFile ZEXPORT zipOpen3(const void *pathname,
152 extern int ZEXPORT zipOpenNewFileInZip(zipFile file,
163 extern int ZEXPORT zipOpenNewFileInZip64(zipFile file,
192 extern int ZEXPORT zipOpenNewFileInZip2(zipFile file,
205 extern int ZEXPORT zipOpenNewFileInZip2_64(zipFile file,
221 extern int ZEXPORT zipOpenNewFileInZip3(zipFile file
    [all...]
unzip.c 303 extern int ZEXPORT unzStringFileNameCompare (const char* fileName1,
672 extern unzFile ZEXPORT unzOpen2(const char *path,
684 extern unzFile ZEXPORT unzOpen2_64(const void *path,
698 extern unzFile ZEXPORT unzOpen(const char *path) {
702 extern unzFile ZEXPORT unzOpen64(const void *path) {
711 extern int ZEXPORT unzClose(unzFile file) {
730 extern int ZEXPORT unzGetGlobalInfo64(unzFile file, unz_global_info64* pglobal_info) {
739 extern int ZEXPORT unzGetGlobalInfo(unzFile file, unz_global_info* pglobal_info32) {
1009 extern int ZEXPORT unzGetCurrentFileInfo64(unzFile file,
1020 extern int ZEXPORT unzGetCurrentFileInfo(unzFile file
    [all...]
zip.c 816 extern zipFile ZEXPORT zipOpen3(const void *pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_32_def* pzlib_filefunc64_32_def) {
886 extern zipFile ZEXPORT zipOpen2(const char *pathname, int append, zipcharpc* globalcomment, zlib_filefunc_def* pzlib_filefunc32_def) {
897 extern zipFile ZEXPORT zipOpen2_64(const void *pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_def* pzlib_filefunc_def) {
912 extern zipFile ZEXPORT zipOpen(const char* pathname, int append) {
916 extern zipFile ZEXPORT zipOpen64(const void* pathname, int append) {
1016 extern int ZEXPORT zipOpenNewFileInZip4_64(zipFile file, const char* filename, const zip_fileinfo* zipfi,
1236 extern int ZEXPORT zipOpenNewFileInZip4(zipFile file, const char* filename, const zip_fileinfo* zipfi,
1251 extern int ZEXPORT zipOpenNewFileInZip3(zipFile file, const char* filename, const zip_fileinfo* zipfi,
1265 extern int ZEXPORT zipOpenNewFileInZip3_64(zipFile file, const char* filename, const zip_fileinfo* zipfi,
1279 extern int ZEXPORT zipOpenNewFileInZip2(zipFile file, const char* filename, const zip_fileinfo* zipfi
    [all...]
  /src/common/dist/zlib/
zlib.h 222 ZEXTERN const char * ZEXPORT zlibVersion(void);
230 ZEXTERN int ZEXPORT deflateInit(z_streamp strm, int level);
252 ZEXTERN int ZEXPORT deflate(z_streamp strm, int flush);
365 ZEXTERN int ZEXPORT deflateEnd(z_streamp strm);
380 ZEXTERN int ZEXPORT inflateInit(z_streamp strm);
403 ZEXTERN int ZEXPORT inflate(z_streamp strm, int flush);
523 ZEXTERN int ZEXPORT inflateEnd(z_streamp strm);
541 ZEXTERN int ZEXPORT deflateInit2(z_streamp strm,
613 ZEXTERN int ZEXPORT deflateSetDictionary(z_streamp strm,
657 ZEXTERN int ZEXPORT deflateGetDictionary(z_streamp strm
    [all...]
gzclose.c 11 int ZEXPORT gzclose(gzFile file) {
compress.c 24 int ZEXPORT compress2(Bytef *dest, uLongf *destLen, const Bytef *source,
65 int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source,
74 uLong ZEXPORT compressBound(uLong sourceLen) {
gzguts.h 141 ZEXTERN gzFile ZEXPORT gzopen64(const char *, const char *);
142 ZEXTERN z_off64_t ZEXPORT gzseek64(gzFile, z_off64_t, int);
143 ZEXTERN z_off64_t ZEXPORT gztell64(gzFile);
144 ZEXTERN z_off64_t ZEXPORT gzoffset64(gzFile);
gzlib.c 260 gzFile ZEXPORT gzopen(const char *path, const char *mode) {
265 gzFile ZEXPORT gzopen64(const char *path, const char *mode) {
270 gzFile ZEXPORT gzdopen(int fd, const char *mode) {
288 gzFile ZEXPORT gzopen_w(const wchar_t *path, const char *mode) {
294 int ZEXPORT gzbuffer(gzFile file, unsigned size) {
318 int ZEXPORT gzrewind(gzFile file) {
339 z_off64_t ZEXPORT gzseek64(gzFile file, z_off64_t offset, int whence) {
412 z_off_t ZEXPORT gzseek(gzFile file, z_off_t offset, int whence) {
420 z_off64_t ZEXPORT gztell64(gzFile file) {
435 z_off_t ZEXPORT gztell(gzFile file)
    [all...]
adler32.c 61 uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf, z_size_t len) {
128 uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) {
158 uLong ZEXPORT adler32_combine(uLong adler1, uLong adler2, z_off_t len2) {
162 uLong ZEXPORT adler32_combine64(uLong adler1, uLong adler2, z_off64_t len2) {
uncompr.c 29 int ZEXPORT uncompress2(Bytef *dest, uLongf *destLen, const Bytef *source,
84 int ZEXPORT uncompress(Bytef *dest, uLongf *destLen, const Bytef *source,
zutil.c 29 const char * ZEXPORT zlibVersion(void) {
33 uLong ZEXPORT zlibCompileFlags(void) {
133 const char * ZEXPORT zError(int err) {
zconf.h 365 # define ZEXPORT WINAPI
377 # define ZEXPORT __declspec(dllexport)
380 # define ZEXPORT __declspec(dllimport)
389 #ifndef ZEXPORT
390 # define ZEXPORT
crc32.c 551 const z_crc_t FAR * ZEXPORT get_crc_table(void) {
577 unsigned long ZEXPORT crc32_z(unsigned long crc, const unsigned char FAR *buf,
696 unsigned long ZEXPORT crc32_z(unsigned long crc, const unsigned char FAR *buf,
1017 unsigned long ZEXPORT crc32(unsigned long crc, const unsigned char FAR *buf,
1023 uLong ZEXPORT crc32_combine64(uLong crc1, uLong crc2, z_off64_t len2) {
1031 uLong ZEXPORT crc32_combine(uLong crc1, uLong crc2, z_off_t len2) {
1036 uLong ZEXPORT crc32_combine_gen64(z_off64_t len2) {
1044 uLong ZEXPORT crc32_combine_gen(z_off_t len2) {
1049 uLong ZEXPORT crc32_combine_op(uLong crc1, uLong crc2, uLong op) {
inflate.c 108 int ZEXPORT inflateResetKeep(z_streamp strm) {
132 int ZEXPORT inflateReset(z_streamp strm) {
143 int ZEXPORT inflateReset2(z_streamp strm, int windowBits) {
180 int ZEXPORT inflateInit2_(z_streamp strm, int windowBits,
220 int ZEXPORT inflateInit_(z_streamp strm, const char *version,
225 int ZEXPORT inflatePrime(z_streamp strm, int bits, int value) {
592 int ZEXPORT inflate(z_streamp strm, int flush) {
1275 int ZEXPORT inflateEnd(z_streamp strm) {
1287 int ZEXPORT inflateGetDictionary(z_streamp strm, Bytef *dictionary,
1307 int ZEXPORT inflateSetDictionary(z_streamp strm, const Bytef *dictionary
    [all...]
gzread.c 345 int ZEXPORT gzread(gzFile file, voidp buf, unsigned len) {
377 z_size_t ZEXPORT gzfread(voidp buf, z_size_t size, z_size_t nitems, gzFile file) {
408 int ZEXPORT gzgetc(gzFile file) {
433 int ZEXPORT gzgetc_(gzFile file) {
438 int ZEXPORT gzungetc(int c, gzFile file) {
499 char * ZEXPORT gzgets(gzFile file, char *buf, int len) {
559 int ZEXPORT gzdirect(gzFile file) {
577 int ZEXPORT gzclose_r(gzFile file) {
zutil.h 187 ZEXTERN uLong ZEXPORT adler32_combine64(uLong, uLong, z_off_t);
188 ZEXTERN uLong ZEXPORT crc32_combine64(uLong, uLong, z_off_t);
189 ZEXTERN uLong ZEXPORT crc32_combine_gen64(z_off_t);
gzwrite.c 239 int ZEXPORT gzwrite(gzFile file, voidpc buf, unsigned len) {
263 z_size_t ZEXPORT gzfwrite(voidpc buf, z_size_t size, z_size_t nitems,
289 int ZEXPORT gzputc(gzFile file, int c) {
334 int ZEXPORT gzputs(gzFile file, const char *s) {
530 int ZEXPORT gzflush(gzFile file, int flush) {
559 int ZEXPORT gzsetparams(gzFile file, int level, int strategy) {
597 int ZEXPORT gzclose_w(gzFile file) {
zconf.h.in 357 # define ZEXPORT WINAPI
369 # define ZEXPORT __declspec(dllexport)
372 # define ZEXPORT __declspec(dllimport)
381 #ifndef ZEXPORT
382 # define ZEXPORT
zconf.h.cmakein 359 # define ZEXPORT WINAPI
371 # define ZEXPORT __declspec(dllexport)
374 # define ZEXPORT __declspec(dllimport)
383 #ifndef ZEXPORT
384 # define ZEXPORT
deflate.c 373 int ZEXPORT deflateInit_(z_streamp strm, int level, const char *version,
381 int ZEXPORT deflateInit2_(z_streamp strm, int level, int method,
552 int ZEXPORT deflateSetDictionary(z_streamp strm, const Bytef *dictionary,
618 int ZEXPORT deflateGetDictionary(z_streamp strm, Bytef *dictionary,
637 int ZEXPORT deflateResetKeep(z_streamp strm) {
697 int ZEXPORT deflateReset(z_streamp strm) {
707 int ZEXPORT deflateSetHeader(z_streamp strm, gz_headerp head) {
715 int ZEXPORT deflatePending(z_streamp strm, unsigned *pending, int *bits) {
725 int ZEXPORT deflatePrime(z_streamp strm, int bits, int value) {
754 int ZEXPORT deflateParams(z_streamp strm, int level, int strategy)
    [all...]
  /src/common/dist/zlib/contrib/infback9/
infback9.h 23 ZEXTERN int ZEXPORT inflateBack9(z_stream FAR *strm,
26 ZEXTERN int ZEXPORT inflateBack9End(z_stream FAR *strm);
27 ZEXTERN int ZEXPORT inflateBack9Init_(z_stream FAR *strm,
infback9.c 19 int ZEXPORT inflateBack9Init_(z_stream FAR *strm, unsigned char FAR *window,
212 int ZEXPORT inflateBack9(z_stream FAR *strm, in_func in, void FAR *in_desc,
596 int ZEXPORT inflateBack9End(z_stream FAR *strm) {
  /src/sys/net/
zlib.h 216 # define ZEXPORT WINAPI
226 # define ZEXPORT __declspec(dllexport) WINAPI
230 # define ZEXPORT _export
245 #ifndef ZEXPORT
246 # define ZEXPORT
466 ZEXTERN const char * ZEXPORT zlibVersion(void);
474 ZEXTERN int ZEXPORT deflateInit(z_streamp, int);
496 ZEXTERN int ZEXPORT deflate(z_streamp, int);
581 ZEXTERN int ZEXPORT deflateEnd(z_streamp);
596 ZEXTERN int ZEXPORT inflateInit(z_streamp)
    [all...]

Completed in 138 milliseconds

1 2