Home
last modified time | relevance | path

Searched refs:Z_BUFSIZE (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dgzio.c22 #ifndef Z_BUFSIZE
24 # define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */ macro
26 # define Z_BUFSIZE 16384 macro
159 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
165 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
178 s->stream.avail_out = Z_BUFSIZE;
247 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
250 s->stream.avail_out = Z_BUFSIZE;
267 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
303 len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file);
[all …]
DChangeLog444 - use default value of 4K for Z_BUFSIZE for 16-bit MSDOS (Tim Wegner + Glenn)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
DChangeLog1061 - use default value of 4K for Z_BUFSIZE for 16-bit MSDOS (Tim Wegner + Glenn)