Lines Matching refs:input
175 optimize `cPar` for a given input (`srcSize` and `dictSize`).
2350 * All blocks will be terminated, all input will be consumed.
2520 /* if input and dictionary overlap : reduce dictionary (area presumed modified by input) */
2562 /* input becomes curr prefix */
3153 break; /* not enough input to get a full block : stop there, wait for more */
3223 size_t ZSTD_compressStream(ZSTD_CStream *zcs, ZSTD_outBuffer *output, ZSTD_inBuffer *input)
3225 size_t sizeRead = input->size - input->pos;
3228 ZSTD_compressStream_generic(zcs, (char *)(output->dst) + output->pos, &sizeWritten, (const char *)(input->src) + input->pos, &sizeRead, zsf_gather);
3229 input->pos += sizeRead;