HomeSort by relevance Sort by last modified time
    Searched refs:strm (Results 26 - 50 of 206) sorted by null

12 3 4 5 6 7 8 9

  /external/zlib/src/
gzread.c 48 If strm->avail_in != 0, then the current data is moved to the beginning of
55 z_streamp strm = &(state->strm); local
60 if (strm->avail_in) { /* copy what's there to the start */
61 unsigned char *p = state->in, *q = strm->next_in;
62 unsigned n = strm->avail_in;
67 if (gz_load(state, state->in + strm->avail_in,
68 state->size - strm->avail_in, &got) == -1)
70 strm->avail_in += got;
71 strm->next_in = state->in
88 z_streamp strm = &(state->strm); local
176 z_streamp strm = &(state->strm); local
228 z_streamp strm = &(state->strm); local
294 z_streamp strm; local
    [all...]
deflate.c 86 local void flush_pending OF((z_streamp strm));
87 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
201 int ZEXPORT deflateInit_(strm, level, version, stream_size)
202 z_streamp strm;
207 return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
209 /* To do: ignore strm->next_in if we use it as window */
213 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
215 z_streamp strm;
237 if (strm == Z_NULL) return Z_STREAM_ERROR;
239 strm->msg = Z_NULL
    [all...]
gzwrite.c 19 z_streamp strm = &(state->strm); local
39 strm->zalloc = Z_NULL;
40 strm->zfree = Z_NULL;
41 strm->opaque = Z_NULL;
42 ret = deflateInit2(strm, state->level, Z_DEFLATED,
57 strm->avail_out = state->size;
58 strm->next_out = state->out;
59 state->x.next = strm->next_out;
76 z_streamp strm = &(state->strm) local
139 z_streamp strm = &(state->strm); local
173 z_streamp strm; local
249 z_streamp strm; local
307 z_streamp strm; local
383 z_streamp strm; local
491 z_streamp strm; local
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
deflate.c 84 local void flush_pending OF((z_streamp strm));
85 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
204 int ZEXPORT deflateInit_(strm, level, version, stream_size)
205 z_streamp strm;
210 return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
212 /* To do: ignore strm->next_in if we use it as window */
216 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
218 z_streamp strm;
240 if (strm == Z_NULL) return Z_STREAM_ERROR;
242 strm->msg = Z_NULL
    [all...]
inflate.c 26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
59 * input in strm.
96 local int updatewindow OF((z_streamp strm, unsigned out));
103 int ZEXPORT inflateReset(strm)
104 z_streamp strm;
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
109 state = (struct inflate_state FAR *)strm->state;
110 strm->total_in = strm->total_out = state->total = 0
    [all...]
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /external/zlib/src/examples/
gzjoin.c 253 local void zpull(z_streamp strm, bin *in)
259 strm->avail_in = in->left;
260 strm->next_in = in->next;
288 z_stream strm; /* zlib inflate stream */ local
299 strm.zalloc = Z_NULL;
300 strm.zfree = Z_NULL;
301 strm.opaque = Z_NULL;
302 strm.avail_in = 0;
303 strm.next_in = Z_NULL;
304 ret = inflateInit2(&strm, -15)
    [all...]
  /development/ndk/platforms/android-3/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/7/platforms/android-4/arch-x86/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/ndk/7/platforms/android-5/arch-arm/usr/include/
zlib.h 220 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
309 deflate() sets strm->adler to the adler32 checksum of all input read
312 deflate() may update strm->data_type if it can make a good guess about
328 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
343 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 Also to assist in this, on return inflate() will set strm->data_type to the
403 number of unused bits in the last byte taken from strm->next_in, plus 64
408 uncompressed data from that block has been written to strm->next_out. Th
    [all...]

Completed in 3496 milliseconds

12 3 4 5 6 7 8 9