Searched refs:gzseek (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Dzlib.h757 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file,
766 supported; gzseek then compresses a sequence of zeroes up to the new
769 gzseek returns the resulting offset location as measured in bytes from
779 gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET)
788 gztell(file) is equivalent to gzseek(file, 0L, SEEK_CUR)
H A Dexample.c111 gzseek(file, 1L, SEEK_CUR); /* add one zero byte */
132 pos = gzseek(file, -8L, SEEK_CUR);
134 fprintf(stderr, "gzseek error, pos=%ld, gztell=%ld\n",
147 fprintf(stderr, "gzgets err after gzseek: %s\n", gzerror(file, &err));
151 fprintf(stderr, "bad gzgets after gzseek\n");
154 printf("gzgets() after gzseek: %s\n", (char *)uncompr);
H A Dgzio.c654 gzseek returns the resulting offset location as measured in bytes from
657 In this version of the library, gzseek can be extremely slow.
659 z_off_t ZEXPORT gzseek (file, offset, whence) function
770 return gzseek(file, 0L, SEEK_CUR);

Completed in 18 milliseconds