Searched refs:outSize (Results 1 – 2 of 2) sorted by relevance
| /freebsd-13.1/sys/contrib/zstd/programs/ |
| H A D | fileio.c | 1228 size_t const outSize = LZ4F_compressUpdate(ctx, in FIO_compressLz4Frame() local 1231 if (LZ4F_isError(outSize)) in FIO_compressLz4Frame() 1233 srcFileName, LZ4F_getErrorName(outSize)); in FIO_compressLz4Frame() 1234 outFileSize += outSize; in FIO_compressLz4Frame() 1246 { size_t const sizeCheck = fwrite(ress->dstBuffer, 1, outSize, ress->dstFile); in FIO_compressLz4Frame() 1247 if (sizeCheck != outSize) in FIO_compressLz4Frame() 2330 size_t outSize= 0; in FIO_decompressLz4Frame() local 2332 … nextToLoad = LZ4F_decompress(dCtx, ress->dstBuffer, &outSize, ress->srcBuffer, &inSize, NULL); in FIO_decompressLz4Frame()
|
| /freebsd-13.1/contrib/libarchive/libarchive/ |
| H A D | archive_read_support_format_7zip.c | 3756 Bcj2_Decode(struct _7zip *zip, uint8_t *outBuf, size_t outSize) in Bcj2_Decode() argument 3791 for (i = 0; zip->odd_bcj_size > 0 && outPos < outSize; i++) { in Bcj2_Decode() 3796 if (outSize == 0) { in Bcj2_Decode() 3808 if (outSize - outPos < limit) in Bcj2_Decode() 3809 limit = outSize - outPos; in Bcj2_Decode() 3825 if (limit == 0 || outPos == outSize) in Bcj2_Decode() 3870 for (i = 0; i < 4 && outPos < outSize; i++) in Bcj2_Decode()
|