Searched refs:gzread (Results 1 - 7 of 7) sorted by relevance
| /ast/src/cmd/codexlib/gzip/ |
| H A D | gzip.c | 139 return gzread(((State_t*)CODEX(dp)->data)->gz, buf, n);
|
| /ast/src/lib/libz/ |
| H A D | minigzip.c | 175 len = gzread(in, buf, sizeof(buf));
|
| H A D | sfdcgzip.c | 166 return gzread(gz->gz, buf, size);
|
| H A D | gzio.c | 482 gzread returns the number of bytes actually read (0 for end of file). 484 int ZEXPORT gzread (file, buf, len) function 615 return gzread(file, &c, 1) == 1 ? c : -1; 655 while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ; 905 Sets the starting position for the next gzread or gzwrite on the given 992 size = gzread(file, s->outbuf, (uInt)size); 1037 Returns the starting position for the next gzread or gzwrite on the
|
| H A D | zlib.h | 1078 case gzread will directly read from the file without decompression. 1107 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); 1110 If the input file was not in gzip format, gzread copies the given number 1112 gzread returns the number of uncompressed bytes actually read (0 for 1213 Sets the starting position for the next gzread or gzwrite on the 1237 Returns the starting position for the next gzread or gzwrite on the
|
| H A D | example.c | 122 if (gzread(file, uncompr, (unsigned)uncomprLen) != len) { 123 fprintf(stderr, "gzread err: %s\n", gzerror(file, &err)); 127 fprintf(stderr, "bad gzread: %s\n", (char*)uncompr); 130 printf("gzread(): %s\n", (char*)uncompr);
|
| /ast/src/cmd/INIT/ |
| H A D | ratz.c | 60 * stripped down zlib containing public gzfopen()+gzread() in one file 3978 gzread returns the number of bytes actually read (0 for end of file). 3980 int ZEXPORT gzread (file, buf, len) 4412 r = gzread(gz, buf, sizeof(Header_t)) == sizeof(Header_t); 4902 while ((c = gzread(gz, buf, sizeof(buf))) > 0)
|
Completed in 36 milliseconds