Lines Matching refs:errorCode

1606 …{ size_t const errorCode = BITv07_initDStream(&bitD, cSrc, cSrcSize);   /* replaced last arg by ma…  in FSEv07_decompress_usingDTable_generic()  local
1607 if (FSEv07_isError(errorCode)) return errorCode; } in FSEv07_decompress_usingDTable_generic()
1692 { size_t const errorCode = FSEv07_buildDTable (dt, counting, maxSymbolValue, tableLog); in FSEv07_decompress() local
1693 if (FSEv07_isError(errorCode)) return errorCode; } in FSEv07_decompress()
1884 { size_t const errorCode = BITv07_initDStream(&bitD, cSrc, cSrcSize); in HUFv07_decompress1X2_usingDTable_internal() local
1885 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress1X2_usingDTable_internal()
1964 { size_t const errorCode = BITv07_initDStream(&bitD1, istart1, length1); in HUFv07_decompress4X2_usingDTable_internal() local
1965 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X2_usingDTable_internal()
1966 { size_t const errorCode = BITv07_initDStream(&bitD2, istart2, length2); in HUFv07_decompress4X2_usingDTable_internal() local
1967 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X2_usingDTable_internal()
1968 { size_t const errorCode = BITv07_initDStream(&bitD3, istart3, length3); in HUFv07_decompress4X2_usingDTable_internal() local
1969 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X2_usingDTable_internal()
1970 { size_t const errorCode = BITv07_initDStream(&bitD4, istart4, length4); in HUFv07_decompress4X2_usingDTable_internal() local
1971 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X2_usingDTable_internal()
2287 { size_t const errorCode = BITv07_initDStream(&bitD, cSrc, cSrcSize); in HUFv07_decompress1X4_usingDTable_internal() local
2288 if (HUFv07_isError(errorCode)) return errorCode; in HUFv07_decompress1X4_usingDTable_internal()
2374 { size_t const errorCode = BITv07_initDStream(&bitD1, istart1, length1); in HUFv07_decompress4X4_usingDTable_internal() local
2375 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X4_usingDTable_internal()
2376 { size_t const errorCode = BITv07_initDStream(&bitD2, istart2, length2); in HUFv07_decompress4X4_usingDTable_internal() local
2377 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X4_usingDTable_internal()
2378 { size_t const errorCode = BITv07_initDStream(&bitD3, istart3, length3); in HUFv07_decompress4X4_usingDTable_internal() local
2379 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X4_usingDTable_internal()
2380 { size_t const errorCode = BITv07_initDStream(&bitD4, istart4, length4); in HUFv07_decompress4X4_usingDTable_internal() local
2381 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X4_usingDTable_internal()
2629 unsigned ZBUFFv07_isError(size_t errorCode) { return ERR_isError(errorCode); } in ZBUFFv07_isError() argument
2631 const char* ZBUFFv07_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); } in ZBUFFv07_getErrorName() argument
3351 …{ size_t const errorCode = HUFv07_decompress1X4_usingDTable(dctx->litBuffer, litSize, istart+lhS… in ZSTDv07_decodeLiteralsBlock() local
3352 if (HUFv07_isError(errorCode)) return ERROR(corruption_detected); in ZSTDv07_decodeLiteralsBlock()
3699 { size_t const errorCode = BITv07_initDStream(&(seqState.DStream), ip, iend-ip); in ZSTDv07_decompressSequences() local
3700 if (ERR_isError(errorCode)) return ERROR(corruption_detected); } in ZSTDv07_decompressSequences()
4112 …{ size_t const errorCode = FSEv07_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offc… in ZSTDv07_loadEntropy() local
4113 if (FSEv07_isError(errorCode)) return ERROR(dictionary_corrupted); } in ZSTDv07_loadEntropy()
4122 …{ size_t const errorCode = FSEv07_buildDTable(dctx->MLTable, matchlengthNCount, matchlengthMaxValu… in ZSTDv07_loadEntropy() local
4123 if (FSEv07_isError(errorCode)) return ERROR(dictionary_corrupted); } in ZSTDv07_loadEntropy()
4132 …{ size_t const errorCode = FSEv07_buildDTable(dctx->LLTable, litlengthNCount, litlengthMaxValue, l… in ZSTDv07_loadEntropy() local
4133 if (FSEv07_isError(errorCode)) return ERROR(dictionary_corrupted); } in ZSTDv07_loadEntropy()
4172 { size_t const errorCode = ZSTDv07_decompressBegin(dctx); in ZSTDv07_decompressBegin_usingDict() local
4173 if (ZSTDv07_isError(errorCode)) return errorCode; } in ZSTDv07_decompressBegin_usingDict()
4176 size_t const errorCode = ZSTDv07_decompress_insertDictionary(dctx, dict, dictSize); in ZSTDv07_decompressBegin_usingDict() local
4177 if (ZSTDv07_isError(errorCode)) return ERROR(dictionary_corrupted); in ZSTDv07_decompressBegin_usingDict()
4210 { size_t const errorCode = ZSTDv07_decompressBegin_usingDict(dctx, dictContent, dictSize); in ZSTDv07_createDDict_advanced() local
4211 if (ZSTDv07_isError(errorCode)) { in ZSTDv07_createDDict_advanced()