Home
last modified time | relevance | path

Searched refs:next_in (Results 1 – 25 of 121) sorted by relevance

12345

/external/curl/lib/
Dcontent_encoding.c96 Bytef *orig_in = z->next_in; in inflate_stream()
154 z->next_in = orig_in; in inflate_stream()
186 z->next_in = (Bytef *)k->str; in Curl_unencode_deflate_write()
308 z->next_in = (Bytef *)k->str; in Curl_unencode_gzip_write()
339 z->next_in = (Bytef *)k->str + hlen; in Curl_unencode_gzip_write()
353 z->next_in = malloc(z->avail_in); in Curl_unencode_gzip_write()
354 if(z->next_in == NULL) { in Curl_unencode_gzip_write()
357 memcpy(z->next_in, k->str, z->avail_in); in Curl_unencode_gzip_write()
374 unsigned char *oldblock = z->next_in; in Curl_unencode_gzip_write()
377 z->next_in = realloc(z->next_in, z->avail_in); in Curl_unencode_gzip_write()
[all …]
/external/libxml2/
Dxzlib.c270 strm->next_in = state->in; in xz_avail()
281 state->strm.next_in = state->zstrm.next_in; in xz_avail_zstrm()
284 state->zstrm.next_in = (Bytef *) state->strm.next_in; in xz_avail_zstrm()
357 (strm->avail_in--, *(strm->next_in)++)))
361 (strm->avail_in--, *(strm->next_in)++)))
410 state->strm.next_in = NULL; in xz_head()
424 state->zstrm.next_in = Z_NULL; in xz_head()
454 if (strm->next_in[0] == 31) { in xz_head()
456 strm->next_in++; in xz_head()
459 if (strm->avail_in && strm->next_in[0] == 139) { in xz_head()
[all …]
/external/zlib/src/examples/
Dgzjoin.c261 strm->next_in = in->next; in zpull()
304 strm.next_in = Z_NULL; in gzcopy()
320 fwrite(start, 1, strm.next_in - start, out); in gzcopy()
353 last = strm.next_in[-1] & pos; in gzcopy()
355 in->buf[strm.next_in - in->buf - 1] &= ~pos; in gzcopy()
361 fwrite(start, 1, strm.next_in - start, out); in gzcopy()
366 last = strm.next_in[0] & 1; in gzcopy()
368 in->buf[strm.next_in - in->buf] &= ~1; in gzcopy()
375 in->next = in->buf + (strm.next_in - in->buf); in gzcopy()
Dfitblk.c83 def->next_in = raw; in partcompress()
114 def->next_in = raw; in recompress()
184 inf.next_in = Z_NULL; in main()
194 inf.next_in = blk; in main()
209 inf.next_in = tmp; in main()
Dgun.c282 strm->next_in = outbuf; /* signal write error */ in lunpipe()
354 strm->next_in = outbuf; /* signal write error */ in lunpipe()
399 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */ in gunpipe()
473 strm->next_in = next; in gunpipe()
477 next = strm->next_in; in gunpipe()
479 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */ in gunpipe()
608 if (strm->next_in != Z_NULL) { in gunzip()
Dzpipe.c60 strm.next_in = in; in def()
105 strm.next_in = Z_NULL; in inf()
119 strm.next_in = in; in inf()
/external/zlib/src/test/
Dinfcover.c295 strm.next_in = Z_NULL; in inf()
316 strm.next_in = in; in inf()
357 strm.next_in = Z_NULL; in cover_support()
375 strm.next_in = Z_NULL; in cover_support()
381 strm.next_in = Z_NULL; in cover_support()
415 strm.next_in = Z_NULL; in cover_wrap()
418 strm.next_in = (void *)"\x63"; in cover_wrap()
431 strm.next_in = (void *)"\x80"; in cover_wrap()
435 strm.next_in = (void *)"\0\0\xff\xff"; in cover_wrap()
487 strm.next_in = (void *)"\x03"; in cover_back()
[all …]
Dexample.c215 c_stream.next_in = (z_const unsigned char *)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 = (z_const unsigned char *)hello;
426 d_stream.next_in = compr;
479 c_stream.next_in = (z_const unsigned char *)hello;
507 d_stream.next_in = compr;
/external/zlib/src/contrib/pascal/
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 := compr;
/external/zlib/src/contrib/delphi/
DZLib.pas24 next_in: PChar; // next input byte
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;
/external/opencv3/3rdparty/libtiff/
Dtif_lzma.c142 sp->stream.next_in = tif->tif_rawdata; in LZMAPreDecode()
174 sp->stream.next_in = tif->tif_rawcp; in LZMADecode()
190 const uint8_t *next_in = sp->stream.next_in; in LZMADecode() local
205 sp->stream.next_in = next_in; in LZMADecode()
223 tif->tif_rawcp = (uint8 *)sp->stream.next_in; /* cast away const */ in LZMADecode()
281 sp->stream.next_in = bp; in LZMAEncode()
/external/pdfium/third_party/zlib_v128/
Dgzwrite.c84 got = write(state->fd, strm->next_in, strm->avail_in); in gz_comp()
155 strm->next_in = state->in; in gz_zero()
213 strm->next_in = state->in; in gzwrite()
214 have = (unsigned)((strm->next_in + strm->avail_in) - state->in); in gzwrite()
234 strm->next_in = (z_const Bytef *)buf; in gzwrite()
275 strm->next_in = state->in; in gzputc()
276 have = (unsigned)((strm->next_in + strm->avail_in) - state->in); in gzputc()
367 strm->next_in = state->in; in gzvprintf()
456 strm->next_in = state->in; in gzprintf()
Dgzread.c62 unsigned const char *q = strm->next_in; in gz_avail()
72 strm->next_in = state->in; in gz_avail()
111 state->strm.next_in = Z_NULL; in gz_look()
137 strm->next_in[0] == 31 && strm->next_in[1] == 139) { in gz_look()
158 memcpy(state->x.next, strm->next_in, strm->avail_in); in gz_look()
/external/zlib/src/
Dgzwrite.c84 got = write(state->fd, strm->next_in, strm->avail_in);
155 strm->next_in = state->in;
213 strm->next_in = state->in;
214 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
234 strm->next_in = (z_const Bytef *)buf;
275 strm->next_in = state->in;
276 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
367 strm->next_in = state->in; in gzvprintf()
457 strm->next_in = state->in;
/external/opencv3/3rdparty/zlib/
Dgzwrite.c84 got = write(state->fd, strm->next_in, strm->avail_in);
155 strm->next_in = state->in;
213 strm->next_in = state->in;
214 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
234 strm->next_in = (z_const Bytef *)buf;
275 strm->next_in = state->in;
276 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
367 strm->next_in = state->in; in gzvprintf()
457 strm->next_in = state->in;
Dgzread.c62 unsigned const char *q = strm->next_in;
72 strm->next_in = state->in;
111 state->strm.next_in = Z_NULL;
137 strm->next_in[0] == 31 && strm->next_in[1] == 139) {
158 memcpy(state->x.next, strm->next_in, strm->avail_in);
/external/skia/tests/
DPDFDeflateWStreamTest.cpp43 flateData.next_in = nullptr; in stream_inflate()
56 flateData.next_in = inputBuffer; in stream_inflate()
59 flateData.next_in = input; in stream_inflate()
81 flateData.next_in = inputBuffer; in stream_inflate()
/external/freetype/src/gzip/
Dinfutil.h67 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
72 #define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gzip/
Dinfutil.h67 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
72 #define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
/external/squashfs-tools/squashfs-tools/
Dlzma_xz_wrapper.c57 strm.next_in = src; in lzma_compress()
127 strm.next_in = lzma_header; in lzma_uncompress()
137 strm.next_in = src + LZMA_HEADER_SIZE; in lzma_uncompress()
/external/protobuf/src/google/protobuf/io/
Dgzip_stream.cc56 zcontext_.next_in = NULL; in GzipInputStream()
93 bool first = zcontext_.next_in == NULL; in Inflate()
100 zcontext_.next_in = static_cast<Bytef*>(const_cast<void*>(in)); in Inflate()
218 zcontext_.next_in = NULL; in Init()
283 zcontext_.next_in = static_cast<Bytef*>(input_buffer_); in Next()
/external/valgrind/perf/
Dtest_input_for_tinycc.c921 char *next_in; member
1519 …f = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in)))); s->bsLive += 8; s->strm->next_i… in BZ2_decompress()
1522 …f = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in)))); s->bsLive += 8; s->strm->next_i… in BZ2_decompress()
1525 …f = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in)))); s->bsLive += 8; s->strm->next_i… in BZ2_decompress()
1528 …f = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in)))); s->bsLive += 8; s->strm->next_i… in BZ2_decompress()
1544 …f = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in)))); s->bsLive += 8; s->strm->next_i… in BZ2_decompress()
1548 …f = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in)))); s->bsLive += 8; s->strm->next_i… in BZ2_decompress()
1550 …f = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in)))); s->bsLive += 8; s->strm->next_i… in BZ2_decompress()
1552 …f = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in)))); s->bsLive += 8; s->strm->next_i… in BZ2_decompress()
1554 …f = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in)))); s->bsLive += 8; s->strm->next_i… in BZ2_decompress()
[all …]
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/bzip2/
Dftbzip2.c180 bzstream->next_in = (char*)zip->buffer; in ft_bzip2_file_init()
183 bzstream->next_in == NULL ) in ft_bzip2_file_init()
203 bzstream->next_in = NULL; in ft_bzip2_file_done()
229 bzstream->next_in = (char*)zip->input; in ft_bzip2_file_reset()
278 bzstream->next_in = (char*)zip->input; in ft_bzip2_file_fill_input()
/external/libvncserver/libvncserver/
Dzrleoutstream.c107 os->zs.next_in = os->in.start; in zrleOutStreamFlush()
159 os->zs.next_in = os->in.start; in zrleOutStreamOverrun()
201 memmove(os->in.start, os->zs.next_in, os->in.ptr - os->zs.next_in); in zrleOutStreamOverrun()
202 os->in.ptr -= os->zs.next_in - os->in.start; in zrleOutStreamOverrun()
/external/libmicrohttpd/src/microspdy/
Dcompression.c284 strm->next_in = (Bytef *)src; in SPDYF_zlib_deflate()
328 strm->next_in = Z_NULL; in SPDYF_zlib_inflate_init()
382 strm->next_in = (Bytef *) src; in SPDYF_zlib_inflate()

12345