/external/brotli/c/dec/ |
D | bit_reader.h | 47 const uint8_t* next_in; /* the byte we're reading from */ member 54 const uint8_t* next_in; member 72 to->next_in = from->next_in; in BrotliBitReaderSaveState() 80 to->next_in = from->next_in; in BrotliBitReaderRestoreState() 113 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 8; in BrotliFillBitWindow() 115 br->next_in += 7; in BrotliFillBitWindow() 122 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 16; in BrotliFillBitWindow() 124 br->next_in += 6; in BrotliFillBitWindow() 130 br->val_ |= ((uint64_t)BROTLI_UNALIGNED_LOAD32LE(br->next_in)) << 32; in BrotliFillBitWindow() 132 br->next_in += BROTLI_SHORT_FILL_BIT_WINDOW_READ; in BrotliFillBitWindow() [all …]
|
/external/libxml2/ |
D | xzlib.c | 270 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/tensorflow/tensorflow/core/lib/io/ |
D | zlib_outputbuffer.cc | 64 z_stream_->next_in = z_stream_input_.get(); in Init() 97 int32 read_bytes = z_stream_->next_in - z_stream_input_.get(); in AddToInputBuffer() 102 memmove(z_stream_input_.get(), z_stream_->next_in, z_stream_->avail_in); in AddToInputBuffer() 103 z_stream_->next_in = z_stream_input_.get(); in AddToInputBuffer() 105 memcpy(z_stream_->next_in + z_stream_->avail_in, data.data(), bytes_to_write); in AddToInputBuffer() 128 z_stream_->next_in = z_stream_input_.get(); in DeflateBuffered() 174 z_stream_->next_in = reinterpret_cast<Bytef*>(const_cast<char*>(data.data())); in Append() 189 z_stream_->next_in = z_stream_input_.get(); in Append()
|
D | zlib_inputstream.cc | 101 z_stream_def_->stream->next_in = Z_NULL; in InitZlibBuffer() 109 z_stream_def_->stream->next_in = z_stream_def_->input.get(); in InitZlibBuffer() 124 z_stream_def_->stream->next_in - z_stream_def_->input.get(); in ReadFromStream() 128 memmove(z_stream_def_->input.get(), z_stream_def_->stream->next_in, in ReadFromStream() 144 z_stream_def_->stream->next_in = z_stream_def_->input.get(); in ReadFromStream()
|
/external/python/cpython3/Modules/ |
D | _bz2module.c | 150 c->bzs.next_in = data; in compress() 475 if (bzs->next_in != NULL) { in decompress() 480 - (bzs->next_in + d->bzs_avail_in_real); in decompress() 488 size_t offset = bzs->next_in - d->input_buffer; in decompress() 502 bzs->next_in = d->input_buffer + offset; in decompress() 505 memmove(d->input_buffer, bzs->next_in, in decompress() 507 bzs->next_in = d->input_buffer; in decompress() 509 memcpy((void*)(bzs->next_in + d->bzs_avail_in_real), data, len); in decompress() 514 bzs->next_in = data; in decompress() 521 bzs->next_in = NULL; in decompress() [all …]
|
D | _lzmamodule.c | 503 c->lzs.next_in = data; in compress() 941 if (lzs->next_in != NULL) { in decompress() 946 - (lzs->next_in + lzs->avail_in); in decompress() 954 size_t offset = lzs->next_in - d->input_buffer; in decompress() 968 lzs->next_in = d->input_buffer + offset; in decompress() 971 memmove(d->input_buffer, lzs->next_in, in decompress() 973 lzs->next_in = d->input_buffer; in decompress() 975 memcpy((void*)(lzs->next_in + lzs->avail_in), data, len); in decompress() 980 lzs->next_in = data; in decompress() 987 lzs->next_in = NULL; in decompress() [all …]
|
/external/curl/lib/ |
D | content_encoding.c | 125 Curl_safefree(z->next_in); in exit_zlib() 147 z->next_in += len; in process_trailer() 165 Bytef *orig_in = z->next_in; in inflate_stream() 233 z->next_in = orig_in; in inflate_stream() 288 z->next_in = (Bytef *) buf; in deflate_unencode_write() 443 z->next_in = (Bytef *) buf; in gzip_unencode_write() 474 z->next_in = (Bytef *) buf + hlen; in gzip_unencode_write() 488 z->next_in = malloc(z->avail_in); in gzip_unencode_write() 489 if(z->next_in == NULL) { in gzip_unencode_write() 492 memcpy(z->next_in, buf, z->avail_in); in gzip_unencode_write() [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()
|
/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;
|
/external/zlib/src/ |
D | gzwrite.c | 52 strm->next_in = NULL; 89 writ = write(state->fd, strm->next_in, put); 95 strm->next_in += writ; 167 strm->next_in = state->in; 207 state->strm.next_in = state->in; 208 have = (unsigned)((state->strm.next_in + state->strm.avail_in) - 228 state->strm.next_in = (z_const Bytef *)buf; 334 strm->next_in = state->in; 335 have = (unsigned)((strm->next_in + strm->avail_in) - state->in); 412 strm->next_in = state->in; in gzvprintf() [all …]
|
/external/python/cpython2/Modules/zlib/ |
D | gzwrite.c | 52 strm->next_in = NULL; 89 writ = write(state->fd, strm->next_in, put); 95 strm->next_in += writ; 167 strm->next_in = state->in; 207 state->strm.next_in = state->in; 208 have = (unsigned)((state->strm.next_in + state->strm.avail_in) - 228 state->strm.next_in = (z_const Bytef *)buf; 334 strm->next_in = state->in; 335 have = (unsigned)((strm->next_in + strm->avail_in) - state->in); 412 strm->next_in = state->in; in gzvprintf() [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;
|
/external/bsdiff/ |
D | brotli_compressor.cc | 48 const uint8_t* next_in = buf; in Write() local 55 &next_in, &avail_out, &next_out, nullptr)) { in Write() 73 const uint8_t* next_in = nullptr; in Finish() local 79 brotli_encoder_state_, BROTLI_OPERATION_FINISH, &avail_in, &next_in, in Finish()
|
/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/tests/ |
D | PDFDeflateWStreamTest.cpp | 43 flateData.next_in = nullptr; in stream_inflate() 57 flateData.next_in = inputBuffer; in stream_inflate() 60 flateData.next_in = input; in stream_inflate() 82 flateData.next_in = inputBuffer; in stream_inflate()
|
/external/skqp/tests/ |
D | PDFDeflateWStreamTest.cpp | 43 flateData.next_in = nullptr; in stream_inflate() 57 flateData.next_in = inputBuffer; in stream_inflate() 60 flateData.next_in = input; in stream_inflate() 82 flateData.next_in = inputBuffer; in stream_inflate()
|
/external/protobuf/src/google/protobuf/io/ |
D | gzip_stream.cc | 57 zcontext_.next_in = NULL; in GzipInputStream() 94 bool first = zcontext_.next_in == NULL; in Inflate() 101 zcontext_.next_in = static_cast<Bytef*>(const_cast<void*>(in)); in Inflate() 224 zcontext_.next_in = NULL; in Init() 287 zcontext_.next_in = static_cast<Bytef*>(input_buffer_); in Next()
|
/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/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;}
|
/external/brotli/research/ |
D | brotli_decoder.c | 48 const uint8_t* next_in; in main() local 70 next_in = ctx.input_buffer; in main() 81 ctx.decoder, &available_in, &next_in, &available_out, &next_out, 0); in main()
|
/external/brotli/python/ |
D | _brotli.cc | 97 const uint8_t* next_in = input; in compress_stream() local 103 &available_in, &next_in, in compress_stream() 402 const uint8_t* next_in = input; in decompress_stream() local 409 &available_in, &next_in, in decompress_stream() 640 const uint8_t* next_in; in brotli_decompress() local 665 next_in = static_cast<uint8_t*>(input.buf); in brotli_decompress() 669 result = BrotliDecoderDecompressStream(state, &available_in, &next_in, in brotli_decompress()
|