Lines Matching refs:errorCode

1602 …{ size_t const errorCode = BITv07_initDStream(&bitD, cSrc, cSrcSize);   /* replaced last arg by ma…  in FSEv07_decompress_usingDTable_generic()  local
1603 if (FSEv07_isError(errorCode)) return errorCode; } in FSEv07_decompress_usingDTable_generic()
1688 { size_t const errorCode = FSEv07_buildDTable (dt, counting, maxSymbolValue, tableLog); in FSEv07_decompress() local
1689 if (FSEv07_isError(errorCode)) return errorCode; } in FSEv07_decompress()
1880 { size_t const errorCode = BITv07_initDStream(&bitD, cSrc, cSrcSize); in HUFv07_decompress1X2_usingDTable_internal() local
1881 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress1X2_usingDTable_internal()
1960 { size_t const errorCode = BITv07_initDStream(&bitD1, istart1, length1); in HUFv07_decompress4X2_usingDTable_internal() local
1961 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X2_usingDTable_internal()
1962 { size_t const errorCode = BITv07_initDStream(&bitD2, istart2, length2); in HUFv07_decompress4X2_usingDTable_internal() local
1963 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X2_usingDTable_internal()
1964 { size_t const errorCode = BITv07_initDStream(&bitD3, istart3, length3); 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(&bitD4, istart4, length4); in HUFv07_decompress4X2_usingDTable_internal() local
1967 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X2_usingDTable_internal()
2283 { size_t const errorCode = BITv07_initDStream(&bitD, cSrc, cSrcSize); in HUFv07_decompress1X4_usingDTable_internal() local
2284 if (HUFv07_isError(errorCode)) return errorCode; in HUFv07_decompress1X4_usingDTable_internal()
2370 { size_t const errorCode = BITv07_initDStream(&bitD1, istart1, length1); in HUFv07_decompress4X4_usingDTable_internal() local
2371 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X4_usingDTable_internal()
2372 { size_t const errorCode = BITv07_initDStream(&bitD2, istart2, length2); in HUFv07_decompress4X4_usingDTable_internal() local
2373 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X4_usingDTable_internal()
2374 { size_t const errorCode = BITv07_initDStream(&bitD3, istart3, length3); 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(&bitD4, istart4, length4); in HUFv07_decompress4X4_usingDTable_internal() local
2377 if (HUFv07_isError(errorCode)) return errorCode; } in HUFv07_decompress4X4_usingDTable_internal()
2625 unsigned ZBUFFv07_isError(size_t errorCode) { return ERR_isError(errorCode); } in ZBUFFv07_isError() argument
2627 const char* ZBUFFv07_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); } in ZBUFFv07_getErrorName() argument
3347 …{ size_t const errorCode = HUFv07_decompress1X4_usingDTable(dctx->litBuffer, litSize, istart+lhS… in ZSTDv07_decodeLiteralsBlock() local
3348 if (HUFv07_isError(errorCode)) return ERROR(corruption_detected); in ZSTDv07_decodeLiteralsBlock()
3695 { size_t const errorCode = BITv07_initDStream(&(seqState.DStream), ip, iend-ip); in ZSTDv07_decompressSequences() local
3696 if (ERR_isError(errorCode)) return ERROR(corruption_detected); } in ZSTDv07_decompressSequences()
4108 …{ size_t const errorCode = FSEv07_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offc… in ZSTDv07_loadEntropy() local
4109 if (FSEv07_isError(errorCode)) return ERROR(dictionary_corrupted); } in ZSTDv07_loadEntropy()
4118 …{ size_t const errorCode = FSEv07_buildDTable(dctx->MLTable, matchlengthNCount, matchlengthMaxValu… in ZSTDv07_loadEntropy() local
4119 if (FSEv07_isError(errorCode)) return ERROR(dictionary_corrupted); } in ZSTDv07_loadEntropy()
4128 …{ size_t const errorCode = FSEv07_buildDTable(dctx->LLTable, litlengthNCount, litlengthMaxValue, l… in ZSTDv07_loadEntropy() local
4129 if (FSEv07_isError(errorCode)) return ERROR(dictionary_corrupted); } in ZSTDv07_loadEntropy()
4168 { size_t const errorCode = ZSTDv07_decompressBegin(dctx); in ZSTDv07_decompressBegin_usingDict() local
4169 if (ZSTDv07_isError(errorCode)) return errorCode; } in ZSTDv07_decompressBegin_usingDict()
4172 size_t const errorCode = ZSTDv07_decompress_insertDictionary(dctx, dict, dictSize); in ZSTDv07_decompressBegin_usingDict() local
4173 if (ZSTDv07_isError(errorCode)) return ERROR(dictionary_corrupted); in ZSTDv07_decompressBegin_usingDict()
4206 { size_t const errorCode = ZSTDv07_decompressBegin_usingDict(dctx, dictContent, dictSize); in ZSTDv07_createDDict_advanced() local
4207 if (ZSTDv07_isError(errorCode)) { in ZSTDv07_createDDict_advanced()