/external/libxml2/ |
D | xzlib.c | 268 strm->next_in = state->in; in xz_avail() 279 state->strm.next_in = state->zstrm.next_in; in xz_avail_zstrm() 282 state->zstrm.next_in = (Bytef *) state->strm.next_in; in xz_avail_zstrm() 355 (strm->avail_in--, *(strm->next_in)++))) 359 (strm->avail_in--, *(strm->next_in)++))) 408 state->strm.next_in = NULL; in xz_head() 422 state->zstrm.next_in = Z_NULL; in xz_head() 452 if (strm->next_in[0] == 31) { in xz_head() 454 strm->next_in++; in xz_head() 457 if (strm->avail_in && strm->next_in[0] == 139) { in xz_head() [all …]
|
/external/zlib/src/examples/ |
D | gzjoin.c | 261 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()
|
D | fitblk.c | 83 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()
|
D | gun.c | 282 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()
|
D | zpipe.c | 60 strm.next_in = in; in def() 105 strm.next_in = Z_NULL; in inf() 119 strm.next_in = in; in inf()
|
D | zran.c | 159 strm.next_in = Z_NULL; in build_index() 181 strm.next_in = input; in build_index() 273 strm.next_in = Z_NULL; in extract() 324 strm.next_in = input; in extract()
|
D | gzappend.c | 294 strm->next_in = gz.next; in gzscan() 302 strm->next_in = gz.next; in gzscan() 337 gz.next = strm->next_in; in gzscan() 419 strm->next_in = in; in gztack()
|
/external/zlib/src/test/ |
D | infcover.c | 295 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 …]
|
D | example.c | 215 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;
|
D | minigzip.c | 214 gz->strm.next_in = 0; 247 strm->next_in = (void *)buf; 281 strm->next_in = in; 307 strm->next_in = Z_NULL;
|
/external/zlib/src/contrib/pascal/ |
D | 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;
|
/external/zlib/src/contrib/delphi/ |
D | ZLib.pas | 24 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/skia/src/core/ |
D | SkFlate.cpp | 40 flateData.next_in = NULL; in doFlate() 56 flateData.next_in = inputBuffer; in doFlate() 59 flateData.next_in = input; in doFlate() 81 flateData.next_in = inputBuffer; in doFlate() 148 zStream->next_in = inBuffer; in do_deflate()
|
/external/zlib/src/ |
D | gzwrite.c | 84 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;
|
D | gzread.c | 62 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/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
D | gzwrite.c | 84 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()
|
D | gzread.c | 62 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/freetype/src/gzip/ |
D | infutil.h | 67 #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;}
|
D | ftgzip.c | 305 zstream->next_in = zip->buffer; in ft_gzip_file_init() 308 zstream->next_in == NULL ) in ft_gzip_file_init() 328 zstream->next_in = NULL; in ft_gzip_file_done() 354 zstream->next_in = zip->input; in ft_gzip_file_reset() 395 zstream->next_in = zip->input; in ft_gzip_file_fill_input() 717 stream.next_in = (Bytef*)input; in FT_Gzip_Uncompress()
|
/external/squashfs-tools/squashfs-tools/ |
D | lzma_xz_wrapper.c | 57 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/ |
D | gzip_stream.cc | 56 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/ |
D | test_input_for_tinycc.c | 921 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/libvncserver/libvncserver/ |
D | zrleoutstream.c | 107 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/libvncserver/libvncclient/ |
D | zlib.c | 68 client->decompStream.next_in = ( Bytef * )client->buffer; in HandleZlibBPP() 110 client->decompStream.next_in = ( Bytef * )client->buffer; in HandleZlibBPP()
|
/external/zlib/src/contrib/masmx64/ |
D | inffas8664.c | 127 ar.in = strm->next_in; 173 strm->next_in = ar.in;
|