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

/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Dgzio.c15 #ifndef Z_BUFSIZE
17 # define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */ macro
19 # define Z_BUFSIZE 16384 macro
133 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
139 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
152 s->stream.avail_out = Z_BUFSIZE;
221 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
224 s->stream.avail_out = Z_BUFSIZE;
241 s->stream.avail_in = fread(s->inbuf, 1, Z_BUFSIZE,
[all...]

Completed in 461 milliseconds