Lines Matching refs:errorCode
1351 size_t errorCode; in FSE_decompress_usingDTable_generic() local
1354 …errorCode = BIT_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */ in FSE_decompress_usingDTable_generic()
1355 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress_usingDTable_generic()
1429 size_t errorCode; in FSE_decompress() local
1434 errorCode = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize); in FSE_decompress()
1435 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress()
1436 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size */ in FSE_decompress()
1437 ip += errorCode; in FSE_decompress()
1438 cSrcSize -= errorCode; in FSE_decompress()
1440 errorCode = FSE_buildDTable (dt, counting, maxSymbolValue, tableLog); in FSE_decompress()
1441 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress()
1729 size_t errorCode; in HUF_decompress4X2_usingDTable() local
1756 errorCode = BIT_initDStream(&bitD1, istart1, length1); in HUF_decompress4X2_usingDTable()
1757 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1758 errorCode = BIT_initDStream(&bitD2, istart2, length2); in HUF_decompress4X2_usingDTable()
1759 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1760 errorCode = BIT_initDStream(&bitD3, istart3, length3); in HUF_decompress4X2_usingDTable()
1761 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1762 errorCode = BIT_initDStream(&bitD4, istart4, length4); in HUF_decompress4X2_usingDTable()
1763 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1815 size_t errorCode; in HUF_decompress4X2() local
1817 errorCode = HUF_readDTableX2 (DTable, cSrc, cSrcSize); in HUF_decompress4X2()
1818 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2()
1819 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); in HUF_decompress4X2()
1820 ip += errorCode; in HUF_decompress4X2()
1821 cSrcSize -= errorCode; in HUF_decompress4X2()
2091 size_t errorCode; in HUF_decompress4X4_usingDTable() local
2118 errorCode = BIT_initDStream(&bitD1, istart1, length1); in HUF_decompress4X4_usingDTable()
2119 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2120 errorCode = BIT_initDStream(&bitD2, istart2, length2); in HUF_decompress4X4_usingDTable()
2121 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2122 errorCode = BIT_initDStream(&bitD3, istart3, length3); in HUF_decompress4X4_usingDTable()
2123 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2124 errorCode = BIT_initDStream(&bitD4, istart4, length4); in HUF_decompress4X4_usingDTable()
2125 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2824 size_t errorCode, dumpsLength; in ZSTD_decompressSequences() local
2835 errorCode = ZSTD_decodeSeqHeaders(&nbSeq, &dumps, &dumpsLength, in ZSTD_decompressSequences()
2838 if (ZSTD_isError(errorCode)) return errorCode; in ZSTD_decompressSequences()
2839 ip += errorCode; in ZSTD_decompressSequences()
2850 errorCode = BIT_initDStream(&(seqState.DStream), ip, iend-ip); in ZSTD_decompressSequences()
2851 if (ERR_isError(errorCode)) return ERROR(corruption_detected); in ZSTD_decompressSequences()