Searched refs:next_in (Results 26 - 50 of 112) sorted by relevance

12345

/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Darchive_read_support_compression_xz.c424 state->stream.next_in =
426 if (state->stream.next_in == NULL && avail_in < 0)
543 state->stream.next_in = (unsigned char *)(uintptr_t)
545 if (state->stream.next_in == NULL)
601 state->stream.next_in = (unsigned char *)(uintptr_t)
603 if (state->stream.next_in == NULL && avail_in < 0)
H A Darchive_read_support_compression_gzip.c293 state->stream.next_in = (unsigned char *)(uintptr_t)
393 /* ZLib treats stream.next_in as const but doesn't declare
395 state->stream.next_in = (unsigned char *)(uintptr_t)
397 if (state->stream.next_in == NULL)
H A Darchive_read_support_compression_bzip2.c273 /* stream.next_in is really const, but bzlib
279 state->stream.next_in = (char *)(uintptr_t)read_buf;
293 state->stream.next_in - read_buf);
/macosx-10.10.1/sudo-73/src/zlib/
H A Dgzread.c61 memmove(state->in, strm->next_in, strm->avail_in);
66 strm->next_in = state->in;
105 state->strm.next_in = Z_NULL;
131 strm->next_in[0] == 31 && strm->next_in[1] == 139) {
152 memcpy(state->x.next, strm->next_in, strm->avail_in);
H A Dinffast.c72 unsigned char FAR *in; /* local strm->next_in */
99 in = strm->next_in - OFF;
316 strm->next_in = in + OFF;
/macosx-10.10.1/cups-408/cups/examples/
H A Dppdx.c120 decomp.next_in = decoded;
228 comp.next_in = (Bytef *)data;
/macosx-10.10.1/zlib-55/zlib/contrib/masmx64/
H A Dinffas8664.c86 /* 16 8 */ unsigned char FAR *in; /* esi rsi local strm->next_in */
127 ar.in = strm->next_in;
173 strm->next_in = ar.in;
/macosx-10.10.1/zlib-55/zlib/
H A Dgzwrite.c55 /* 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;
/macosx-10.10.1/zlib-55/zlib/contrib/dotzlib/DotZLib/
H A DCodecBase.cs171 _ztream.next_in = _hInput.AddrOfPinnedObject();
H A DDotZLib.cs32 public IntPtr next_in; field in struct:DotZLib.ZStream
/macosx-10.10.1/zlib-55/zlib/examples/
H A Dzran.c154 strm.next_in = Z_NULL;
176 strm.next_in = input;
268 strm.next_in = Z_NULL;
319 strm.next_in = input;
H A Dgzappend.c292 strm->next_in = gz.next;
300 strm->next_in = gz.next;
335 gz.next = strm->next_in;
417 strm->next_in = in;
/macosx-10.10.1/zlib-55/zlib/contrib/delphi/
H A DZLib.pas24 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
[all...]
/macosx-10.10.1/zlib-55/zlib/contrib/pascal/
H A Dexample.pas198 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
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/generic/
H A Dbz2.c311 c->state.next_in = (unsigned char*) (Bytef*) &in;
380 c->state.next_in = (unsigned char*) (Bytef*) buffer;
447 c->state.next_in = (unsigned char*) (Bytef*) NULL;
645 c->state.next_in = (unsigned char*) (Bytef*) &in;
715 c->state.next_in = (unsigned char*) (Bytef*) buffer;
788 c->state.next_in = (unsigned char*) (Bytef*) c->output_buffer; /* fake out
H A Dzip.c359 c->state.next_in = (Bytef*) &in;
445 c->state.next_in = (Bytef*) buffer;
526 c->state.next_in = (Bytef*) NULL;
768 c->state.next_in = (Bytef*) &in;
875 c->state.next_in = (Bytef*) buffer;
973 c->state.next_in = (Bytef*) c->output_buffer; /* fake out 'inflate' */
/macosx-10.10.1/ppp-786.1.1/Helpers/pppdump/
H A Dzlib.h182 Bytef *next_in; /* next input byte */ member in struct:z_stream_s
183 uInt avail_in; /* number of bytes available at next_in */
202 The application must update next_in and avail_in when avail_in has
296 - Compress more input starting at next_in and update next_in and avail_in
298 enough room in the output buffer), next_in and avail_in are updated and
365 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible.
399 - Decompress more input starting at next_in and update next_in and avail_in
401 enough room in the output buffer), next_in i
[all...]
H A Ddeflate.c277 state->strm.next_in = rptr;
341 state->strm.next_in = rptr;
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/compat/
H A Dbzlib.h85 char *next_in; member in struct:__anon13085
/macosx-10.10.1/rsync-45/rsync/zlib/
H A Dinffast.c72 unsigned char FAR *in; /* local strm->next_in */
99 in = strm->next_in - OFF;
294 strm->next_in = in + OFF;
/macosx-10.10.1/xar-254/xar/lib/
H A Dbzxar.c116 BZIP2_CONTEXT(context)->bz.next_in = *in;
223 BZIP2_CONTEXT(context)->bz.next_in = *in;
H A Dzxar.c106 GZIP_CONTEXT(context)->z.next_in = *in;
200 GZIP_CONTEXT(context)->z.next_in = *in;
/macosx-10.10.1/xnu-2782.1.97/bsd/netinet6/
H A Dipcomp_core.c237 zs->next_in = 0;
255 zs->next_in = mtod(p, u_int8_t *);
/macosx-10.10.1/xnu-2782.1.97/libkern/zlib/
H A Dinffast.c100 unsigned char FAR *in; /* local strm->next_in */
127 in = strm->next_in - OFF;
322 strm->next_in = in + OFF;
/macosx-10.10.1/zlib-55/zlib/contrib/testzlib/
H A Dtestzlib.c200 zcpr.next_in = FilePtr;
241 zcpr.next_in = CprPtr;

Completed in 131 milliseconds

12345