Home
last modified time | relevance | path

Searched refs:z_off_t (Results 1 – 9 of 9) sorted by relevance

/mirbsd/src/kern/include/
Dzlib.h91 z_off_t total_in; /* total number of input bytes read so far */
95 z_off_t total_out; /* total number of bytes output so far */
1726 ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int));
1727 ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile));
1728 ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile));
1729 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t));
1730 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
1734 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int));
1735 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile));
1736 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile));
[all …]
Dzconf.h286 # ifndef z_off_t
287 # define z_off_t off_t macro
308 #ifndef z_off_t
309 # define z_off_t long macro
318 # define z_off64_t z_off_t
/mirbsd/src/kern/z/
Dgzlib.c439 z_off_t ZEXPORT gzseek(file, offset, whence) in gzseek()
441 z_off_t offset;
447 return ret == (z_off_t)ret ? (z_off_t)ret : -1;
468 z_off_t ZEXPORT gztell(file) in gztell()
474 return ret == (z_off_t)ret ? (z_off_t)ret : -1;
501 z_off_t ZEXPORT gzoffset(file) in gzoffset()
507 return ret == (z_off_t)ret ? (z_off_t)ret : -1;
Dadler32cb.c77 z_off_t d;
109 z_off_t len2;
Dzutil.h194 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t));
195 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
Dcrc32.c386 z_off_t d;
444 z_off_t len2;
Dzutil.c60 switch ((int)(sizeof(z_off_t))) { in zlibCompileFlags()
/mirbsd/src/usr.bin/grep/
Dbinary.c69 if (gzseek(f, (z_off_t)0, SEEK_SET) == -1) in gzbin_file()
/mirbsd/src/lib/libz/
Dgzfopen.c134 z_off_t rv; in zf_seek()