Lines Matching refs:errorCode

1586 …{ size_t const errorCode = BITv06_initDStream(&bitD, cSrc, cSrcSize);   /* replaced last arg by ma…  in FSEv06_decompress_usingDTable_generic()  local
1587 if (FSEv06_isError(errorCode)) return errorCode; } in FSEv06_decompress_usingDTable_generic()
1672 { size_t const errorCode = FSEv06_buildDTable (dt, counting, maxSymbolValue, tableLog); in FSEv06_decompress() local
1673 if (FSEv06_isError(errorCode)) return errorCode; } in FSEv06_decompress()
2108 { size_t const errorCode = BITv06_initDStream(&bitD, cSrc, cSrcSize); in HUFv06_decompress1X2_usingDTable() local
2109 if (HUFv06_isError(errorCode)) return errorCode; } in HUFv06_decompress1X2_usingDTable()
2124 size_t const errorCode = HUFv06_readDTableX2 (DTable, cSrc, cSrcSize); in HUFv06_decompress1X2() local
2125 if (HUFv06_isError(errorCode)) return errorCode; in HUFv06_decompress1X2()
2126 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); in HUFv06_decompress1X2()
2127 ip += errorCode; in HUFv06_decompress1X2()
2128 cSrcSize -= errorCode; in HUFv06_decompress1X2()
2148 size_t errorCode; in HUFv06_decompress4X2_usingDTable() local
2175 errorCode = BITv06_initDStream(&bitD1, istart1, length1); in HUFv06_decompress4X2_usingDTable()
2176 if (HUFv06_isError(errorCode)) return errorCode; in HUFv06_decompress4X2_usingDTable()
2177 errorCode = BITv06_initDStream(&bitD2, istart2, length2); in HUFv06_decompress4X2_usingDTable()
2178 if (HUFv06_isError(errorCode)) return errorCode; in HUFv06_decompress4X2_usingDTable()
2179 errorCode = BITv06_initDStream(&bitD3, istart3, length3); in HUFv06_decompress4X2_usingDTable()
2180 if (HUFv06_isError(errorCode)) return errorCode; in HUFv06_decompress4X2_usingDTable()
2181 errorCode = BITv06_initDStream(&bitD4, istart4, length4); in HUFv06_decompress4X2_usingDTable()
2182 if (HUFv06_isError(errorCode)) return errorCode; in HUFv06_decompress4X2_usingDTable()
2233 size_t const errorCode = HUFv06_readDTableX2 (DTable, cSrc, cSrcSize); in HUFv06_decompress4X2() local
2234 if (HUFv06_isError(errorCode)) return errorCode; in HUFv06_decompress4X2()
2235 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); in HUFv06_decompress4X2()
2236 ip += errorCode; in HUFv06_decompress4X2()
2237 cSrcSize -= errorCode; in HUFv06_decompress4X2()
2483 { size_t const errorCode = BITv06_initDStream(&bitD, istart, cSrcSize); in HUFv06_decompress1X4_usingDTable() local
2484 if (HUFv06_isError(errorCode)) return errorCode; } in HUFv06_decompress1X4_usingDTable()
2523 size_t errorCode; in HUFv06_decompress4X4_usingDTable() local
2550 errorCode = BITv06_initDStream(&bitD1, istart1, length1); in HUFv06_decompress4X4_usingDTable()
2551 if (HUFv06_isError(errorCode)) return errorCode; in HUFv06_decompress4X4_usingDTable()
2552 errorCode = BITv06_initDStream(&bitD2, istart2, length2); in HUFv06_decompress4X4_usingDTable()
2553 if (HUFv06_isError(errorCode)) return errorCode; in HUFv06_decompress4X4_usingDTable()
2554 errorCode = BITv06_initDStream(&bitD3, istart3, length3); in HUFv06_decompress4X4_usingDTable()
2555 if (HUFv06_isError(errorCode)) return errorCode; in HUFv06_decompress4X4_usingDTable()
2556 errorCode = BITv06_initDStream(&bitD4, istart4, length4); in HUFv06_decompress4X4_usingDTable()
2557 if (HUFv06_isError(errorCode)) return errorCode; in HUFv06_decompress4X4_usingDTable()
2730 unsigned ZBUFFv06_isError(size_t errorCode) { return ERR_isError(errorCode); } in ZBUFFv06_isError() argument
2732 const char* ZBUFFv06_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); } in ZBUFFv06_getErrorName() argument
3121 …{ size_t const errorCode = HUFv06_decompress1X4_usingDTable(dctx->litBuffer, litSize, istart+lhS… in ZSTDv06_decodeLiteralsBlock() local
3122 if (HUFv06_isError(errorCode)) return ERROR(corruption_detected); in ZSTDv06_decodeLiteralsBlock()
3476 { size_t const errorCode = BITv06_initDStream(&(seqState.DStream), ip, iend-ip); in ZSTDv06_decompressSequences() local
3477 if (ERR_isError(errorCode)) return ERROR(corruption_detected); } in ZSTDv06_decompressSequences()
3825 …{ size_t const errorCode = FSEv06_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offc… in ZSTDv06_loadEntropy() local
3826 if (FSEv06_isError(errorCode)) return ERROR(dictionary_corrupted); } in ZSTDv06_loadEntropy()
3836 …{ size_t const errorCode = FSEv06_buildDTable(dctx->MLTable, matchlengthNCount, matchlengthMaxValu… in ZSTDv06_loadEntropy() local
3837 if (FSEv06_isError(errorCode)) return ERROR(dictionary_corrupted); } in ZSTDv06_loadEntropy()
3847 …{ size_t const errorCode = FSEv06_buildDTable(dctx->LLTable, litlengthNCount, litlengthMaxValue, l… in ZSTDv06_loadEntropy() local
3848 if (FSEv06_isError(errorCode)) return ERROR(dictionary_corrupted); } in ZSTDv06_loadEntropy()
3881 { size_t const errorCode = ZSTDv06_decompressBegin(dctx); in ZSTDv06_decompressBegin_usingDict() local
3882 if (ZSTDv06_isError(errorCode)) return errorCode; } in ZSTDv06_decompressBegin_usingDict()
3885 size_t const errorCode = ZSTDv06_decompress_insertDictionary(dctx, dict, dictSize); in ZSTDv06_decompressBegin_usingDict() local
3886 if (ZSTDv06_isError(errorCode)) return ERROR(dictionary_corrupted); in ZSTDv06_decompressBegin_usingDict()