Home
last modified time | relevance | path

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

123456

/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/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
Drealpath.c61 const char* next_in; in realpath() local
64 next_in = next_slash + 1; in realpath()
67 next_in = in + namelen; // Move to the '\0' in realpath()
108 in = next_in; in realpath()
/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/chromium_org/third_party/skia/src/core/
DSkFlate.cpp44 flateData.next_in = NULL; in doFlate()
60 flateData.next_in = inputBuffer; in doFlate()
63 flateData.next_in = input; in doFlate()
85 flateData.next_in = inputBuffer; in doFlate()
/external/skia/src/core/
DSkFlate.cpp44 flateData.next_in = NULL; in doFlate()
60 flateData.next_in = inputBuffer; in doFlate()
63 flateData.next_in = input; in doFlate()
85 flateData.next_in = inputBuffer; in doFlate()
/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/chromium_org/net/websockets/
Dwebsocket_inflater.cc107 int WebSocketInflater::InflateWithFlush(const char* next_in, size_t avail_in) { in InflateWithFlush() argument
108 int result = Inflate(next_in, avail_in, Z_NO_FLUSH); in InflateWithFlush()
116 return Inflate(reinterpret_cast<const char*>(stream_->next_in), in InflateWithFlush()
121 int WebSocketInflater::Inflate(const char* next_in, in Inflate() argument
124 stream_->next_in = reinterpret_cast<Bytef*>(const_cast<char*>(next_in)); in Inflate()
/external/pdfium/core/src/fxcodec/fx_zlib/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()
/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/qemu/distrib/zlib-1.2.8/
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/chromium_org/third_party/openssl/openssl/crypto/comp/
Dc_zlib.c151 state->istream.next_in = Z_NULL; in zlib_stateful_init()
163 state->ostream.next_in = Z_NULL; in zlib_stateful_init()
202 state->ostream.next_in = in; in zlib_stateful_compress_block()
230 state->istream.next_in = in; in zlib_stateful_expand_block()
311 stream.next_in = (Bytef*)source;
494 ctx->zin.next_in = NULL; in bio_zlib_new()
500 ctx->zout.next_in = NULL; in bio_zlib_new()
554 zin->next_in = ctx->ibuf; in bio_zlib_read()
593 zin->next_in = ctx->ibuf; in bio_zlib_read()
623 zout->next_in = (void *)in; in bio_zlib_write()
[all …]
/external/openssl/crypto/comp/
Dc_zlib.c151 state->istream.next_in = Z_NULL; in zlib_stateful_init()
163 state->ostream.next_in = Z_NULL; in zlib_stateful_init()
202 state->ostream.next_in = in; in zlib_stateful_compress_block()
230 state->istream.next_in = in; in zlib_stateful_expand_block()
311 stream.next_in = (Bytef*)source;
494 ctx->zin.next_in = NULL; in bio_zlib_new()
500 ctx->zout.next_in = NULL; in bio_zlib_new()
554 zin->next_in = ctx->ibuf; in bio_zlib_read()
593 zin->next_in = ctx->ibuf; in bio_zlib_read()
623 zout->next_in = (void *)in; in bio_zlib_write()
[all …]
/external/protobuf/src/google/protobuf/io/
Dgzip_stream.cc56 zcontext_.next_in = NULL; in GzipInputStream()
82 bool first = zcontext_.next_in == NULL; in Inflate()
89 zcontext_.next_in = static_cast<Bytef*>(const_cast<void*>(in)); in Inflate()
212 zcontext_.next_in = NULL; in Init()
278 zcontext_.next_in = static_cast<Bytef*>(input_buffer_); in Next()
/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;}
Dftgzip.c306 zstream->next_in = zip->buffer; in ft_gzip_file_init()
309 zstream->next_in == NULL ) in ft_gzip_file_init()
329 zstream->next_in = NULL; in ft_gzip_file_done()
355 zstream->next_in = zip->input; in ft_gzip_file_reset()
396 zstream->next_in = zip->input; in ft_gzip_file_fill_input()
705 stream.next_in = (Bytef*)input; in FT_Gzip_Uncompress()
/external/chromium_org/third_party/zlib/
Dgzread.c61 strm->next_in = state->in;
69 (strm->avail_in--, *(strm->next_in)++)))
131 state->strm.next_in = Z_NULL;
150 if (strm->next_in[0] == 31) {
152 strm->next_in++;
155 if (strm->avail_in && strm->next_in[0] == 139) {
158 strm->next_in++;
216 memcpy(state->next + state->have, strm->next_in, strm->avail_in);
Dgzwrite.c133 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; in gzprintf()
418 strm->next_in = state->in;
/external/chromium_org/third_party/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/chromium_org/net/filter/
Dgzip_filter.cc207 zlib_stream_.get()->next_in = bit_cast<Bytef*>(next_stream_data_); in DoInflate()
222 next_stream_data_ = bit_cast<char*>(zlib_stream_.get()->next_in); in DoInflate()
249 next_stream_data_ = bit_cast<char*>(zlib_stream_.get()->next_in); in DoInflate()
273 zlib_stream_.get()->next_in = bit_cast<Bytef*>(&dummy_head[0]); in InsertZlibHeader()
/external/valgrind/main/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 …]

123456