Searched refs:output (Results 1 – 7 of 7) sorted by relevance
/lib/ |
D | decompress_unlz4.c | 34 u8 *output, long *posp, in unlz4() argument 50 if (output) { in unlz4() 51 outp = output; in unlz4() 176 if (output) in unlz4() 200 if (!output) in unlz4() 210 unsigned char *output, long out_len, in __decompress() argument 215 return unlz4(buf, in_len - 4, fill, flush, output, posp, error); in __decompress()
|
D | decompress_unlzo.c | 101 u8 *output, long *posp, in unlzo() argument 111 if (output) { in unlzo() 112 out_buf = output; in unlzo() 246 if (output) in unlzo() 271 if (!output) in unlzo()
|
D | decompress_unlzma.c | 540 unsigned char *output, in unlzma() argument 612 if (output) in unlzma() 613 wr.buffer = output; in unlzma() 660 if (!output) in unlzma() 673 unsigned char *output, long out_len, in __decompress() argument 677 return unlzma(buf, in_len - 4, fill, flush, output, posp, error); in __decompress()
|
D | Kconfig.kasan | 118 to avoid cluttering the output in stack overflow warnings,
|
D | Kconfig.debug | 11 messages to be added to the output of the syslog() system 285 that look like '.Lxxx') so they don't pollute the output of 293 assembler output. This may make the kernel slightly slower, but it helps 631 task has ever had available in the sysrq-T and sysrq-P debug output. 1352 Say Y here to make BUG() panics output the file name and line number
|
/lib/zstd/ |
D | compress.c | 3223 size_t ZSTD_compressStream(ZSTD_CStream *zcs, ZSTD_outBuffer *output, ZSTD_inBuffer *input) in ZSTD_compressStream() argument 3226 size_t sizeWritten = output->size - output->pos; in ZSTD_compressStream() 3228 …ZSTD_compressStream_generic(zcs, (char *)(output->dst) + output->pos, &sizeWritten, (const char *)… in ZSTD_compressStream() 3230 output->pos += sizeWritten; in ZSTD_compressStream() 3238 size_t ZSTD_flushStream(ZSTD_CStream *zcs, ZSTD_outBuffer *output) in ZSTD_flushStream() argument 3241 size_t sizeWritten = output->size - output->pos; in ZSTD_flushStream() 3242 …size_t const result = ZSTD_compressStream_generic(zcs, (char *)(output->dst) + output->pos, &sizeW… in ZSTD_flushStream() 3245 output->pos += sizeWritten; in ZSTD_flushStream() 3251 size_t ZSTD_endStream(ZSTD_CStream *zcs, ZSTD_outBuffer *output) in ZSTD_endStream() argument 3253 BYTE *const ostart = (BYTE *)(output->dst) + output->pos; in ZSTD_endStream() [all …]
|
D | decompress.c | 2298 size_t ZSTD_decompressStream(ZSTD_DStream *zds, ZSTD_outBuffer *output, ZSTD_inBuffer *input) in ZSTD_decompressStream() argument 2303 char *const ostart = (char *)(output->dst) + output->pos; in ZSTD_decompressStream() 2304 char *const oend = (char *)(output->dst) + output->size; in ZSTD_decompressStream() 2465 output->pos += (size_t)(op - ostart); in ZSTD_decompressStream()
|