Searched defs:Z_BUFSIZE (Results 1 - 2 of 2) sorted by relevance

/ast/src/lib/libz/
H A Dgzio.c26 #ifndef Z_BUFSIZE
28 # define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */ macro
30 # define Z_BUFSIZE 16384 macro
190 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
198 s->stream.next_in = s->inbuf = (Byte*)ALLOC((len > Z_BUFSIZE) ? len : Z_BUFSIZE);
218 s->stream.avail_out = Z_BUFSIZE;
316 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
319 s->stream.avail_out = Z_BUFSIZE;
[all...]
/ast/src/cmd/INIT/
H A Dratz.c3598 #ifndef Z_BUFSIZE
3600 # define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */ macro
3602 # define Z_BUFSIZE 16384 macro
3757 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
3763 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
3776 s->stream.avail_out = Z_BUFSIZE;
3833 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
3884 len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file);
4038 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);

Completed in 20 milliseconds