Lines Matching defs:out
70 // out. If given no input, an empty gzip stream will be written. If successful,
86 local int gzip_normalize(FILE *in, FILE *out, char **err) {
95 BYE("out of memory");
111 fwrite("\x1f\x8b\x08\0\0\0\0\0\0\xff", 1, 10, out);
150 BYE("out of memory");
277 // Write out complete bytes in the bit buffer.
279 putc(buf, out);
316 putc(buf, out);
321 fwrite(put, 1, end - put, out);
340 putc(buf, out);
431 putc(buf, out);
432 putc(buf >> 8, out);
434 putc(0, out);
438 putc(crc, out);
439 putc(crc >> 8, out);
440 putc(crc >> 16, out);
441 putc(crc >> 24, out);
442 putc(len, out);
443 putc(len >> 8, out);
444 putc(len >> 16, out);
445 putc(len >> 24, out);
446 fflush(out);
449 if (ferror(in) || ferror(out))