Home
last modified time | relevance | path

Searched refs:outSize (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/contrib/zstd/programs/
H A Dfileio.c1285 size_t const outSize = LZ4F_compressUpdate(ctx, in FIO_compressLz4Frame() local
1288 if (LZ4F_isError(outSize)) in FIO_compressLz4Frame()
1290 srcFileName, LZ4F_getErrorName(outSize)); in FIO_compressLz4Frame()
1291 outFileSize += outSize; in FIO_compressLz4Frame()
1303 { size_t const sizeCheck = fwrite(ress->dstBuffer, 1, outSize, ress->dstFile); in FIO_compressLz4Frame()
1304 if (sizeCheck != outSize) in FIO_compressLz4Frame()
2462 size_t outSize= 0; in FIO_decompressLz4Frame() local
2464 … nextToLoad = LZ4F_decompress(dCtx, ress->dstBuffer, &outSize, ress->srcBuffer, &inSize, NULL); in FIO_decompressLz4Frame()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_read_support_format_7zip.c4042 Bcj2_Decode(struct _7zip *zip, uint8_t *outBuf, size_t outSize) in Bcj2_Decode() argument
4077 for (i = 0; zip->odd_bcj_size > 0 && outPos < outSize; i++) { in Bcj2_Decode()
4082 if (outSize == 0) { in Bcj2_Decode()
4094 if (outSize - outPos < limit) in Bcj2_Decode()
4095 limit = outSize - outPos; in Bcj2_Decode()
4111 if (limit == 0 || outPos == outSize) in Bcj2_Decode()
4156 for (i = 0; i < 4 && outPos < outSize; i++) in Bcj2_Decode()