HomeSort by relevance Sort by last modified time
    Searched refs:next_in (Results 76 - 100 of 226) sorted by null

1 2 34 5 6 7 8 910

  /bootable/recovery/applypatch/
imgpatch.c 145 strm.next_in = (unsigned char*)(old_data + src_start);
206 strm.next_in = uncompressed_target_data;
  /external/chromium_org/third_party/zlib/
gzwrite.c 55 /* Compress whatever is at avail_in and next_in and write to the output file.
133 strm->next_in = state->in;
190 strm->next_in = state->in;
194 memcpy(strm->next_in + strm->avail_in, buf, n);
210 strm->next_in = (voidp)buf;
250 strm->next_in = state->in;
251 strm->next_in[strm->avail_in++] = c;
344 strm->next_in = state->in;
418 strm->next_in = state->in;
inffast.c 72 unsigned char FAR *in; /* local strm->next_in */
99 in = strm->next_in - OFF;
316 strm->next_in = in + OFF;
infback.c 123 next = strm->next_in; \
134 strm->next_in = next; \
234 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
273 next = strm->next_in;
618 strm->next_in = next;
  /external/libppp/src/
deflate.c 106 state->cx.next_in = MBUF_CTOP(mi);
128 state->cx.next_in = MBUF_CTOP(mi);
246 state->cx.next_in = MBUF_CTOP(mi);
273 state->cx.next_in = MBUF_CTOP(mi);
329 state->cx.next_in = EMPTY_BLOCK;
372 state->cx.next_in = rp;
399 state->cx.next_in = MBUF_CTOP(mi);
522 state->cx.next_in = NULL;
mp.h 92 u_int32_t next_in; /* next incoming seq to process */ member in struct:mp::__anon22833
  /external/zlib/src/contrib/masmx64/
inffas8664.c 86 /* 16 8 */ unsigned char FAR *in; /* esi rsi local strm->next_in */
127 ar.in = strm->next_in;
173 strm->next_in = ar.in;
  /frameworks/base/libs/androidfw/
StreamingZipInflater.cpp 103 mInflateState.next_in = (Bytef*)mInBuf;
172 ALOGV("Inflating to outbuf: avail_in=%u avail_out=%u next_in=%p next_out=%p",
174 mInflateState.next_in, mInflateState.next_out);
218 mInflateState.next_in = (Bytef*) mInBuf;
  /libcore/luni/src/main/native/
java_util_zip_Deflater.cpp 80 Bytef* initialNextIn = stream->stream.next_in;
101 jint bytesRead = stream->stream.next_in - initialNextIn;
ZipUtilities.cpp 77 stream.next_in = reinterpret_cast<Bytef*>(&input[0]);
java_util_zip_Inflater.cpp 63 stream->stream.next_in = reinterpret_cast<Bytef*>(&stream->input[0]);
100 Bytef* initialNextIn = stream->stream.next_in;
122 jint bytesRead = stream->stream.next_in - initialNextIn;
  /external/chromium_org/chrome/browser/metrics/
compression_utils.cc 35 stream.next_in = bit_cast<Bytef*>(source);
  /external/kernel-headers/original/linux/
zlib.h 85 Byte *next_in; /* next input byte */ member in struct:z_stream_s
86 uInt avail_in; /* number of bytes available at next_in */
106 The application must update next_in and avail_in when avail_in has
222 - Compress more input starting at next_in and update next_in and avail_in
224 enough room in the output buffer), next_in and avail_in are updated and
285 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
315 next_in, avail_in, and workspace must be initialized before by
316 the caller. If next_in is not NULL and avail_in is large enough (the exact
327 the zlib header if present: this will be done by inflate(). (So next_in an
    [all...]
  /external/zlib/src/examples/
zran.c 159 strm.next_in = Z_NULL;
181 strm.next_in = input;
273 strm.next_in = Z_NULL;
324 strm.next_in = input;
gzappend.c 294 strm->next_in = gz.next;
302 strm->next_in = gz.next;
337 gz.next = strm->next_in;
419 strm->next_in = in;
  /system/extras/tests/bionic/libc/other/
test_zlib.c 69 strm.next_in = in;
106 strm.next_in = Z_NULL;
120 strm.next_in = in;
  /external/zlib/src/contrib/delphi/
ZLib.pas 24 next_in: PChar; // next input byte
25 avail_in: Integer; // number of bytes available at next_in
298 strm.next_in := InBuf;
341 strm.next_in := InBuf;
374 strm.next_in := InBuf;
420 FZRec.next_in := nil;
446 FZRec.next_in := @Buffer;
486 FZRec.next_in := FBuffer;
513 FZRec.next_in := FBuffer;
535 FZRec.next_in := FBuffer
    [all...]
  /external/zlib/src/contrib/pascal/
example.pas 198 c_stream.next_in := hello;
240 d_stream.next_in := compr;
290 c_stream.next_in := uncompr;
299 c_stream.next_in := compr;
306 c_stream.next_in := uncompr;
335 d_stream.next_in := compr;
382 c_stream.next_in := hello;
418 d_stream.next_in := compr;
468 c_stream.next_in := hello;
495 d_stream.next_in := compr
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inffast.c 72 unsigned char FAR *in; /* local strm->next_in */
99 in = strm->next_in - OFF;
294 strm->next_in = in + OFF;
infback.c 123 next = strm->next_in; \
134 strm->next_in = next; \
234 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
273 next = strm->next_in;
609 strm->next_in = next;
  /external/zlib/src/contrib/testzlib/
testzlib.c 200 zcpr.next_in = FilePtr;
241 zcpr.next_in = CprPtr;
  /external/zlib/src/
inffast.c 72 z_const unsigned char FAR *in; /* local strm->next_in */
99 in = strm->next_in - OFF;
316 strm->next_in = in + OFF;
  /external/bzip2/
bzlib.c 302 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
303 s->strm->next_in++;
320 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
321 s->strm->next_in++;
985 bzf->strm.next_in = buf;
    [all...]
bzlib.h 50 char *next_in; member in struct:__anon4001
  /external/qemu/block/
cloop.c 115 s->zstream.next_in = s->compressed_block;

Completed in 932 milliseconds

1 2 34 5 6 7 8 910