/external/protobuf/src/google/protobuf/io/ |
D | gzip_stream.cc | 68 zcontext_.next_out = static_cast<Bytef*>(output_buffer_); in GzipInputStream() 97 zcontext_.next_out = NULL; in Inflate() 110 zcontext_.next_out = static_cast<Bytef*>(output_buffer_); in Inflate() 119 *size = ((uintptr_t)zcontext_.next_out) - ((uintptr_t)output_position_); in DoNextOutput() 120 output_position_ = zcontext_.next_out; in DoNextOutput() 127 if ((!ok) || (zcontext_.next_out == NULL)) { in Next() 130 if (zcontext_.next_out != output_position_) { in Next() 135 if (zcontext_.next_out != NULL) { in Next() 153 if ((zerror_ == Z_STREAM_END) && (zcontext_.next_out == NULL)) { in Next() 184 if (zcontext_.next_out != NULL && output_position_ != NULL) { in ByteCount() [all …]
|
/external/zlib/src/contrib/delphi/ |
D | ZLib.pas | 28 next_out: PChar; // next output byte should be put here 300 strm.next_out := OutBuf; 309 strm.next_out := PChar(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P))); 343 strm.next_out := OutBuf; 352 strm.next_out := PChar(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P))); 376 strm.next_out := OutBuf; 413 FZRec.next_out := FBuffer; 428 FZRec.next_out := FBuffer; 455 FZRec.next_out := FBuffer; 500 FZRec.next_out := @Buffer;
|
/external/brotli/tools/ |
D | bro.c | 323 uint8_t* next_out; in Decompress() local 341 next_out = output; in Decompress() 359 next_out = output; in Decompress() 364 s, &available_in, &next_in, &available_out, &next_out, 0); in Decompress() 366 if (next_out != output) { in Decompress() 367 fwrite(output, 1, (size_t)(next_out - output), fout); in Decompress() 394 uint8_t* next_out = output; in Compress() local 422 &available_in, &next_in, &available_out, &next_out, NULL)) { in Compress() 432 next_out = output; in Compress()
|
/external/zlib/src/contrib/pascal/ |
D | example.pas | 199 c_stream.next_out := compr; 242 d_stream.next_out := uncompr; 284 c_stream.next_out := compr; 343 d_stream.next_out := uncompr; (* discard the output *) 383 c_stream.next_out := compr; 424 d_stream.next_out := uncompr; 465 c_stream.next_out := compr; 501 d_stream.next_out := uncompr;
|
/external/libvncserver/libvncserver/ |
D | zrleoutstream.c | 124 os->zs.next_out = os->out.ptr; in zrleOutStreamFlush() 139 os->zs.next_out - os->out.ptr); in zrleOutStreamFlush() 142 os->out.ptr = os->zs.next_out; in zrleOutStreamFlush() 171 os->zs.next_out = os->out.ptr; in zrleOutStreamOverrun() 186 os->zs.next_out - os->out.ptr); in zrleOutStreamOverrun() 189 os->out.ptr = os->zs.next_out; in zrleOutStreamOverrun()
|
/external/zlib/src/examples/ |
D | fitblk.c | 105 inf->next_out = raw; in recompress() 157 def.next_out = blk; in main() 196 def.next_out = tmp; in main() 211 def.next_out = blk; in main()
|
D | zran.c | 188 strm.next_out = window; in build_index() 298 strm.next_out = buf; in extract() 303 strm.next_out = discard; in extract() 308 strm.next_out = discard; in extract()
|
/external/zlib/src/test/ |
D | example.c | 216 c_stream.next_out = compr; 253 d_stream.next_out = uncompr; 293 c_stream.next_out = compr; 354 d_stream.next_out = uncompr; /* discard the output */ 391 c_stream.next_out = compr; 432 d_stream.next_out = uncompr; 476 c_stream.next_out = compr; 513 d_stream.next_out = uncompr;
|
/external/python/cpython2/Modules/zlib/ |
D | example.c | 216 c_stream.next_out = compr; 253 d_stream.next_out = uncompr; 293 c_stream.next_out = compr; 354 d_stream.next_out = uncompr; /* discard the output */ 391 c_stream.next_out = compr; 432 d_stream.next_out = uncompr; 476 c_stream.next_out = compr; 513 d_stream.next_out = uncompr;
|
/external/python/cpython2/Modules/ |
D | bz2module.c | 1643 bzs->next_out = BUF(ret); in BZ2Comp_compress() 1650 saved_next_out = bzs->next_out; in BZ2Comp_compress() 1652 output_size += bzs->next_out - saved_next_out; in BZ2Comp_compress() 1672 bzs->next_out = BUF(ret) + output_size; in BZ2Comp_compress() 1719 bzs->next_out = BUF(ret); in BZ2Comp_flush() 1726 saved_next_out = bzs->next_out; in BZ2Comp_flush() 1728 output_size += bzs->next_out - saved_next_out; in BZ2Comp_flush() 1742 bzs->next_out = BUF(ret) + output_size; in BZ2Comp_flush() 1940 bzs->next_out = BUF(ret); in BZ2Decomp_decompress() 1947 saved_next_out = bzs->next_out; in BZ2Decomp_decompress() [all …]
|
D | zlibmodule.c | 157 occupied = zst->next_out - (Byte *)PyBytes_AS_STRING(*buffer); in arrange_output_buffer_with_maximum() 180 zst->next_out = (Byte *)PyBytes_AS_STRING(*buffer) + occupied; in arrange_output_buffer_with_maximum() 267 if (_PyBytes_Resize(&RetVal, zst.next_out - in PyZlib_compress() 371 _PyString_Resize(&RetVal, zst.next_out - in PyZlib_decompress() 517 _PyString_Resize(&RetVal, self->zst.next_out - in PyZlib_objcompress() 664 _PyString_Resize(&RetVal, self->zst.next_out - in PyZlib_objdecompress() 747 _PyString_Resize(&RetVal, self->zst.next_out - in PyZlib_flush() 926 _PyString_Resize(&RetVal, self->zst.next_out - in PyZlib_unflush()
|
/external/brotli/fuzz/ |
D | decode_fuzzer.cc | 38 uint8_t* next_out = buffer; in LLVMFuzzerTestOneInput() local 40 state, &avail_in, &next_in, &avail_out, &next_out, &total_out); in LLVMFuzzerTestOneInput()
|
/external/libxml2/ |
D | xzlib.c | 558 state->zstrm.next_out = (Bytef *) state->strm.next_out; in xz_decomp() 574 state->strm.next_out = state->zstrm.next_out; in xz_decomp() 594 state->next = strm->next_out - state->have; in xz_decomp() 618 state->strm.next_out = NULL; in xz_decomp() 651 strm->next_out = state->out; in xz_make() 759 strm->next_out = buf; in __libxml2_xzread()
|
/external/brotli/python/ |
D | _brotli.cc | 98 uint8_t* next_out = NULL; in compress_stream() local 103 &available_out, &next_out, NULL); in compress_stream() 454 const uint8_t* next_out = BrotliDecoderTakeOutput(state, &available_out); in brotli_decompress() local 456 output.insert(output.end(), next_out, next_out + available_out); in brotli_decompress()
|
/external/freetype/src/gzip/ |
D | infutil.c | 32 p = z->next_out; in inflate_flush() 81 z->next_out = p; in inflate_flush()
|
D | ftgzip.c | 341 zstream->next_out = NULL; in ft_gzip_file_done() 368 zstream->next_out = zip->buffer; in ft_gzip_file_reset() 428 zstream->next_out = zip->cursor; in ft_gzip_file_fill_output() 447 zip->limit = zstream->next_out; in ft_gzip_file_fill_output() 746 stream.next_out = output; in FT_Gzip_Uncompress()
|
/external/skia/tests/ |
D | PDFDeflateWStreamTest.cpp | 44 flateData.next_out = outputBuffer; in stream_inflate() 70 flateData.next_out = outputBuffer; in stream_inflate() 93 flateData.next_out = outputBuffer; in stream_inflate()
|
/external/bzip2/ |
D | bzlib.c | 347 *(s->strm->next_out) = s->zbits[s->state_out_pos]; in copy_output_until_stop() 350 s->strm->next_out++; in copy_output_until_stop() 547 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch; in unRLE_obuf_to_output_FAST() 550 s->strm->next_out++; in unRLE_obuf_to_output_FAST() 599 char* cs_next_out = s->strm->next_out; in unRLE_obuf_to_output_FAST() 677 s->strm->next_out = cs_next_out; in unRLE_obuf_to_output_FAST() 717 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch; in unRLE_obuf_to_output_SMALL() 720 s->strm->next_out++; in unRLE_obuf_to_output_SMALL() 766 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch; in unRLE_obuf_to_output_SMALL() 769 s->strm->next_out++; in unRLE_obuf_to_output_SMALL() [all …]
|
/external/syslinux/com32/libupload/ |
D | zout.c | 23 be->zstream.next_out = NULL; in init_data() 52 be->zstream.next_out = (void *)(buf + be->zbytes); in do_deflate()
|
/external/brotli/enc/ |
D | encode.c | 1409 uint8_t* next_out = encoded_buffer; in BrotliEncoderCompress() local 1417 &available_in, &next_in, &available_out, &next_out, &total_out); in BrotliEncoderCompress() 1462 size_t* available_out, uint8_t** next_out, size_t* total_out) { in InjectFlushOrPushOutput() argument 1472 memcpy(*next_out, s->next_out_, copy_output_size); in InjectFlushOrPushOutput() 1473 *next_out += copy_output_size; in InjectFlushOrPushOutput() 1495 const uint8_t** next_in, size_t* available_out, uint8_t** next_out, in BrotliEncoderCompressStreamFast() argument 1530 if (InjectFlushOrPushOutput(s, available_out, next_out, total_out)) { in BrotliEncoderCompressStreamFast() 1557 storage = *next_out; in BrotliEncoderCompressStreamFast() 1584 *next_out += out_bytes; in BrotliEncoderCompressStreamFast() 1610 size_t* available_out, uint8_t** next_out, size_t* total_out) { in ProcessMetadata() argument [all …]
|
/external/squashfs-tools/squashfs-tools/ |
D | lzma_xz_wrapper.c | 55 strm.next_out = dest; in lzma_compress() 125 strm.next_out = dest; in lzma_uncompress()
|
/external/brotli/dec/ |
D | decode.c | 1190 BrotliDecoderState* s, size_t* available_out, uint8_t** next_out, in WriteRingBuffer() argument 1202 if (next_out && !*next_out) { in WriteRingBuffer() 1203 *next_out = start; in WriteRingBuffer() 1205 if (next_out) { in WriteRingBuffer() 1206 memcpy(*next_out, start, num_written); in WriteRingBuffer() 1207 *next_out += num_written; in WriteRingBuffer() 1289 size_t* available_out, uint8_t** next_out, size_t* total_out, in CopyUncompressedBlockToOutput() argument 1323 s, available_out, next_out, total_out, BROTLI_FALSE); in CopyUncompressedBlockToOutput() 1873 uint8_t* next_out = decoded_buffer; in BrotliDecoderDecompress() local 1876 &s, &available_in, &next_in, &available_out, &next_out, &total_out); in BrotliDecoderDecompress() [all …]
|
/external/pdfium/third_party/libtiff/ |
D | tif_zip.c | 161 sp->stream.next_out = op; in ZIPDecode() 238 sp->stream.next_out = tif->tif_rawdata; in ZIPPreEncode() 286 sp->stream.next_out = tif->tif_rawdata; in ZIPEncode() 314 sp->stream.next_out = tif->tif_rawdata; in ZIPPostEncode()
|
/external/zlib/src/contrib/masmx64/ |
D | inffas8664.c | 129 ar.out = strm->next_out; 174 strm->next_out = ar.out;
|
/external/pdfium/third_party/zlib_v128/ |
D | gzwrite.c | 58 strm->next_out = state->out; in gz_init() 59 state->x.next = strm->next_out; in gz_init() 100 have = (unsigned)(strm->next_out - state->x.next); in gz_comp() 108 strm->next_out = state->out; in gz_comp() 110 state->x.next = strm->next_out; in gz_comp()
|