Lines Matching refs:errorCode

1355     size_t errorCode;  in FSE_decompress_usingDTable_generic()  local
1358errorCode = BIT_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */ in FSE_decompress_usingDTable_generic()
1359 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress_usingDTable_generic()
1433 size_t errorCode; in FSE_decompress() local
1438 errorCode = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize); in FSE_decompress()
1439 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress()
1440 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size */ in FSE_decompress()
1441 ip += errorCode; in FSE_decompress()
1442 cSrcSize -= errorCode; in FSE_decompress()
1444 errorCode = FSE_buildDTable (dt, counting, maxSymbolValue, tableLog); in FSE_decompress()
1445 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress()
1733 size_t errorCode; in HUF_decompress4X2_usingDTable() local
1760 errorCode = BIT_initDStream(&bitD1, istart1, length1); in HUF_decompress4X2_usingDTable()
1761 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1762 errorCode = BIT_initDStream(&bitD2, istart2, length2); in HUF_decompress4X2_usingDTable()
1763 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1764 errorCode = BIT_initDStream(&bitD3, istart3, length3); in HUF_decompress4X2_usingDTable()
1765 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1766 errorCode = BIT_initDStream(&bitD4, istart4, length4); in HUF_decompress4X2_usingDTable()
1767 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1819 size_t errorCode; in HUF_decompress4X2() local
1821 errorCode = HUF_readDTableX2 (DTable, cSrc, cSrcSize); in HUF_decompress4X2()
1822 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2()
1823 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); in HUF_decompress4X2()
1824 ip += errorCode; in HUF_decompress4X2()
1825 cSrcSize -= errorCode; in HUF_decompress4X2()
2095 size_t errorCode; in HUF_decompress4X4_usingDTable() local
2122 errorCode = BIT_initDStream(&bitD1, istart1, length1); in HUF_decompress4X4_usingDTable()
2123 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2124 errorCode = BIT_initDStream(&bitD2, istart2, length2); in HUF_decompress4X4_usingDTable()
2125 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2126 errorCode = BIT_initDStream(&bitD3, istart3, length3); in HUF_decompress4X4_usingDTable()
2127 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2128 errorCode = BIT_initDStream(&bitD4, istart4, length4); in HUF_decompress4X4_usingDTable()
2129 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2828 size_t errorCode, dumpsLength; in ZSTD_decompressSequences() local
2839 errorCode = ZSTD_decodeSeqHeaders(&nbSeq, &dumps, &dumpsLength, in ZSTD_decompressSequences()
2842 if (ZSTD_isError(errorCode)) return errorCode; in ZSTD_decompressSequences()
2843 ip += errorCode; in ZSTD_decompressSequences()
2854 errorCode = BIT_initDStream(&(seqState.DStream), ip, iend-ip); in ZSTD_decompressSequences()
2855 if (ERR_isError(errorCode)) return ERROR(corruption_detected); in ZSTD_decompressSequences()