Home
last modified time | relevance | path

Searched refs:FORWARD_IF_ERROR (Results 1 – 8 of 8) sorted by relevance

/linux-6.15/lib/zstd/compress/
H A Dzstd_compress.c1133 FORWARD_IF_ERROR(ZSTD_checkCParams(cparams), ""); in ZSTD_CCtx_setCParams()
2136 FORWARD_IF_ERROR(ZSTD_reset_matchState( in ZSTD_resetCCtx_internal()
3295 FORWARD_IF_ERROR( in ZSTD_buildSeqStore()
3463 FORWARD_IF_ERROR(ret, "ZSTD_compress2 failed"); in ZSTD_generateSequences()
4292 FORWARD_IF_ERROR(cSize, "Splitting blocks failed!"); in ZSTD_compressBlock_splitBlock()
4429 FORWARD_IF_ERROR(bss, "ZSTD_buildSeqStore failed"); in ZSTD_compressBlock_targetCBlockSize()
5094 FORWARD_IF_ERROR(eSize, "ZSTD_loadCEntropy failed"); in ZSTD_loadZstdDictionary()
5099 FORWARD_IF_ERROR(ZSTD_loadDictionaryContent( in ZSTD_loadZstdDictionary()
5359 FORWARD_IF_ERROR( ZSTD_compressBegin_internal(cctx, in ZSTD_compress_advanced_internal()
5464 FORWARD_IF_ERROR(ZSTD_reset_matchState( in ZSTD_initCDict_internal()
[all …]
H A Dzstd_compress_sequences.c77FORWARD_IF_ERROR(FSE_normalizeCount(norm, tableLog, count, nbSeq, max, ZSTD_useLowProbCount(nbSeq)… in ZSTD_NCountCost()
258 FORWARD_IF_ERROR(FSE_buildCTable_rle(nextCTable, (BYTE)max), ""); in ZSTD_buildCTable()
266FORWARD_IF_ERROR(FSE_buildCTable_wksp(nextCTable, defaultNorm, defaultMax, defaultNormLog, entropy… in ZSTD_buildCTable()
279FORWARD_IF_ERROR(FSE_normalizeCount(wksp->norm, tableLog, count, nbSeq_1, max, ZSTD_useLowProbCoun… in ZSTD_buildCTable()
282 FORWARD_IF_ERROR(NCountSize, "FSE_writeNCount failed"); in ZSTD_buildCTable()
283FORWARD_IF_ERROR(FSE_buildCTable_wksp(nextCTable, wksp->norm, max, tableLog, wksp->wksp, sizeof(wk… in ZSTD_buildCTable()
H A Dzstd_compress_superblock.c219 FORWARD_IF_ERROR(bitstreamSize, "ZSTD_encodeSequences failed"); in ZSTD_compressSubBlock_sequences()
285 FORWARD_IF_ERROR(cLitSize, "ZSTD_compressSubBlock_literal failed"); in ZSTD_compressSubBlock()
296 FORWARD_IF_ERROR(cSeqSize, "ZSTD_compressSubBlock_sequences failed"); in ZSTD_compressSubBlock()
560 FORWARD_IF_ERROR(cSize, "ZSTD_compressSubBlock failed"); in ZSTD_compressSubBlock_multi()
604 FORWARD_IF_ERROR(cSize, "ZSTD_compressSubBlock failed"); in ZSTD_compressSubBlock_multi()
646 FORWARD_IF_ERROR(cSize, "ZSTD_noCompressBlock failed"); in ZSTD_compressSubBlock_multi()
673 FORWARD_IF_ERROR(ZSTD_buildBlockEntropyStats(&zc->seqStore, in ZSTD_compressSuperBlock()
/linux-6.15/lib/zstd/decompress/
H A Dzstd_decompress.c987 FORWARD_IF_ERROR(decodedSize, "Block decompression failure"); in ZSTD_decompressFrame()
1280 FORWARD_IF_ERROR(rSize, "ZSTD_copyRawBlock failed"); in ZSTD_decompressContinue()
1292 FORWARD_IF_ERROR(rSize, ""); in ZSTD_decompressContinue()
1513 FORWARD_IF_ERROR( ZSTD_decompressBegin(dctx) , ""); in ZSTD_decompressBegin_usingDict()
1536 FORWARD_IF_ERROR( ZSTD_decompressBegin(dctx) , ""); in ZSTD_decompressBegin_usingDDict()
1677 FORWARD_IF_ERROR(ZSTD_DCtx_refDDict(zds, NULL), ""); in ZSTD_initDStream()
1688 FORWARD_IF_ERROR( ZSTD_DCtx_refDDict(dctx, ddict) , ""); in ZSTD_initDStream_usingDDict()
1988 FORWARD_IF_ERROR(decodedSize, ""); in ZSTD_decompressContinueStream()
1999 FORWARD_IF_ERROR(decodedSize, ""); in ZSTD_decompressContinueStream()
2034 FORWARD_IF_ERROR(ZSTD_checkOutBuffer(zds, output), ""); in ZSTD_decompressStream()
[all …]
H A Dzstd_ddict.c138 FORWARD_IF_ERROR( ZSTD_loadEntropy_intoDDict(ddict, dictContentType) , ""); in ZSTD_initDDict_internal()
H A Dhuf_decompress.c848 FORWARD_IF_ERROR(ret, "Failed to init fast loop args"); in HUF_decompress4X1_usingDTable_internal_fast()
880 FORWARD_IF_ERROR(HUF_initRemainingDStream(&bit, &args, i, segmentEnd), "corruption"); in HUF_decompress4X1_usingDTable_internal_fast()
1675 FORWARD_IF_ERROR(ret, "Failed to init asm args"); in HUF_decompress4X2_usingDTable_internal_fast()
1705 FORWARD_IF_ERROR(HUF_initRemainingDStream(&bit, &args, i, segmentEnd), "corruption"); in HUF_decompress4X2_usingDTable_internal_fast()
H A Dzstd_decompress_block.c2198 FORWARD_IF_ERROR(dSize, "");
/linux-6.15/lib/zstd/common/
H A Derror_private.h138 #define FORWARD_IF_ERROR(err, ...) \ macro