HomeSort by relevance Sort by last modified time
    Searched refs:Z_BUFSIZE (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
gzio.c 22 #ifndef Z_BUFSIZE
24 # define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */
26 # define Z_BUFSIZE 16384
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);
    [all...]
  /external/zlib/src/contrib/minizip/
zip.c 53 #ifndef Z_BUFSIZE
54 #define Z_BUFSIZE (64*1024) //(16384)
150 Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/minizip/
zip.c 53 #ifndef Z_BUFSIZE
54 #define Z_BUFSIZE (64*1024) //(16384)
150 Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/
    [all...]

Completed in 1436 milliseconds