Searched refs:next_in (Results 1 - 25 of 40) sorted by relevance

12

/vbox/src/libs/zlib-1.2.6/examples/
H A Dfitblk.c83 def->next_in = raw;
114 def->next_in = raw;
184 inf.next_in = Z_NULL;
194 inf.next_in = blk;
209 inf.next_in = tmp;
H A Dgzjoin.c260 strm->next_in = in->next;
303 strm.next_in = Z_NULL;
311 start = strm.next_in;
319 fwrite(start, 1, strm.next_in - start, out);
352 last = strm.next_in[-1] & pos;
354 strm.next_in[-1] &= ~pos;
360 fwrite(start, 1, strm.next_in - start, out);
365 last = strm.next_in[0] & 1;
367 strm.next_in[0] &= ~1;
374 in->next = strm.next_in;
[all...]
H A Dzpipe.c60 strm.next_in = in;
105 strm.next_in = Z_NULL;
119 strm.next_in = in;
H A Dgun.c196 file, read error, or write error (a write error indicated by strm->next_in
281 strm->next_in = outbuf; /* signal write error */
353 strm->next_in = outbuf; /* signal write error */
398 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */
472 strm->next_in = next;
476 next = strm->next_in;
478 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */
607 if (strm->next_in != Z_NULL) {
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;
/vbox/src/libs/zlib-1.2.6/
H A Duncompr.c33 stream.next_in = (Bytef*)source;
H A Dcompress.c32 stream.next_in = (Bytef*)source;
H A Dgzwrite.c64 /* Compress whatever is at avail_in and next_in and write to the output file.
84 got = write(state->fd, strm->next_in, strm->avail_in);
155 strm->next_in = state->in;
212 strm->next_in = state->in;
216 memcpy(strm->next_in + strm->avail_in, buf, n);
232 strm->next_in = (voidp)buf;
272 strm->next_in = state->in;
273 strm->next_in[strm->avail_in++] = c;
366 strm->next_in = state->in;
444 strm->next_in
[all...]
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;
H A Dinfback.c132 next = strm->next_in; \
143 strm->next_in = next; \
243 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
282 next = strm->next_in;
626 strm->next_in = next;
/vbox/src/libs/zlib-1.2.6/test/
H A Dinfcover.c295 strm.next_in = Z_NULL;
316 strm.next_in = in;
357 strm.next_in = Z_NULL;
375 strm.next_in = Z_NULL;
381 strm.next_in = Z_NULL;
415 strm.next_in = Z_NULL;
418 strm.next_in = (void *)"\x63";
431 strm.next_in = (void *)"\x80";
435 strm.next_in = (void *)"\0\0\xff\xff";
455 return 0; /* no input (already provided at next_in) */
[all...]
H A Dexample.c215 c_stream.next_in = (Bytef*)hello;
251 d_stream.next_in = compr;
299 c_stream.next_in = uncompr;
310 c_stream.next_in = compr;
317 c_stream.next_in = uncompr;
347 d_stream.next_in = compr;
390 c_stream.next_in = (Bytef*)hello;
426 d_stream.next_in = compr;
479 c_stream.next_in = (Bytef*)hello;
507 d_stream.next_in
[all...]
H A Dminigzip.c210 gz->strm.next_in = 0;
243 strm->next_in = (void *)buf;
277 strm->next_in = in;
303 strm->next_in = Z_NULL;
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Dsha1extra.c103 u8 *next_in = in; /* changed to `last' after first round */ local
117 hmac_update ( &sha1_algorithm, sha1_ctx, next_in, next_size );
124 next_in = last;
/vbox/src/libs/zlib-1.2.6/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;
/vbox/src/libs/zlib-1.2.6/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
/vbox/src/libs/zlib-1.2.6/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...]
/vbox/src/libs/zlib-1.2.6/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...]
/vbox/src/libs/zlib-1.2.6/contrib/testzlib/
H A Dtestzlib.c200 zcpr.next_in = FilePtr;
241 zcpr.next_in = CprPtr;
/vbox/src/VBox/Runtime/common/zip/
H A Dgzipvfs.cpp335 pThis->Zlib.next_in = &pThis->abBuffer[0];
529 pThis->Zlib.next_in = (Bytef * )pbSrc;
579 pThis->Zlib.next_in = NULL;
752 pThis->Zlib.next_in = &pThis->abBuffer[0];
/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A Dunzip.c201 Read a byte from a gz_stream; update next_in and avail_in. Return EOF
1561 pfile_in_zip_read_info->stream.next_in = (voidpf)0;
1581 pfile_in_zip_read_info->stream.next_in = 0;
1759 pfile_in_zip_read_info->stream.next_in =
1780 *(pfile_in_zip_read_info->stream.next_in+i);
1791 pfile_in_zip_read_info->stream.next_in += uDoCopy;
1802 pfile_in_zip_read_info->bstream.next_in = (char*)pfile_in_zip_read_info->stream.next_in;
1825 pfile_in_zip_read_info->stream.next_in = (Bytef*)pfile_in_zip_read_info->bstream.next_in;
[all...]
/vbox/src/libs/zlib-1.2.6/contrib/infback9/
H A Dinfback9.c210 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
265 next = strm->next_in;
603 strm->next_in = next;

Completed in 1371 milliseconds

12