Searched refs:cDst (Results 1 - 2 of 2) sorted by relevance
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | compress.c | 3158 void *cDst; in ZSTD_compressStream_generic() local 3163 cDst = op; /* compress directly into output buffer (avoid flush stage) */ in ZSTD_compressStream_generic() 3165 cDst = zcs->outBuff, oSize = zcs->outBuffSize; in ZSTD_compressStream_generic() 3166 cSize = (flush == zsf_end) ? ZSTD_compressEnd(zcs->cctx, cDst, oSize, zcs->inBuff + zcs->inToCompress, iSize) in ZSTD_compressStream_generic() 3167 : ZSTD_compressContinue(zcs->cctx, cDst, oSize, zcs->inBuff + zcs->inToCompress, iSize); in ZSTD_compressStream_generic() 3177 if (cDst == op) { in ZSTD_compressStream_generic()
|
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_compress.c | 5281 void* cDst; in ZSTD_compressStream_generic() local 5288 cDst = op; /* compress into output buffer, to skip flush stage */ in ZSTD_compressStream_generic() 5290 cDst = zcs->outBuff, oSize = zcs->outBuffSize; in ZSTD_compressStream_generic() 5294 ZSTD_compressEnd(zcs, cDst, oSize, in ZSTD_compressStream_generic() 5296 ZSTD_compressContinue(zcs, cDst, oSize, in ZSTD_compressStream_generic() 5313 ZSTD_compressEnd(zcs, cDst, oSize, ip, iSize) : in ZSTD_compressStream_generic() 5314 ZSTD_compressContinue(zcs, cDst, oSize, ip, iSize); in ZSTD_compressStream_generic() 5323 if (cDst == op) { /* no need to flush */ in ZSTD_compressStream_generic()
|
Completed in 26 milliseconds