Lines Matching refs:errorCode

1350     size_t errorCode;  in FSE_decompress_usingDTable_generic()  local
1353errorCode = BIT_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */ in FSE_decompress_usingDTable_generic()
1354 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress_usingDTable_generic()
1428 size_t errorCode; in FSE_decompress() local
1433 errorCode = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize); in FSE_decompress()
1434 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress()
1435 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size */ in FSE_decompress()
1436 ip += errorCode; in FSE_decompress()
1437 cSrcSize -= errorCode; in FSE_decompress()
1439 errorCode = FSE_buildDTable (dt, counting, maxSymbolValue, tableLog); in FSE_decompress()
1440 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress()
1732 size_t errorCode; in HUF_decompress4X2_usingDTable() local
1759 errorCode = BIT_initDStream(&bitD1, istart1, length1); in HUF_decompress4X2_usingDTable()
1760 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1761 errorCode = BIT_initDStream(&bitD2, istart2, length2); in HUF_decompress4X2_usingDTable()
1762 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1763 errorCode = BIT_initDStream(&bitD3, istart3, length3); in HUF_decompress4X2_usingDTable()
1764 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1765 errorCode = BIT_initDStream(&bitD4, istart4, length4); in HUF_decompress4X2_usingDTable()
1766 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1818 size_t errorCode; in HUF_decompress4X2() local
1820 errorCode = HUF_readDTableX2 (DTable, cSrc, cSrcSize); in HUF_decompress4X2()
1821 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2()
1822 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); in HUF_decompress4X2()
1823 ip += errorCode; in HUF_decompress4X2()
1824 cSrcSize -= errorCode; in HUF_decompress4X2()
2094 size_t errorCode; in HUF_decompress4X4_usingDTable() local
2121 errorCode = BIT_initDStream(&bitD1, istart1, length1); in HUF_decompress4X4_usingDTable()
2122 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2123 errorCode = BIT_initDStream(&bitD2, istart2, length2); in HUF_decompress4X4_usingDTable()
2124 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2125 errorCode = BIT_initDStream(&bitD3, istart3, length3); in HUF_decompress4X4_usingDTable()
2126 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2127 errorCode = BIT_initDStream(&bitD4, istart4, length4); in HUF_decompress4X4_usingDTable()
2128 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2451 size_t errorCode; in HUF_decompress4X6_usingDTable() local
2478 errorCode = BIT_initDStream(&bitD1, istart1, length1); in HUF_decompress4X6_usingDTable()
2479 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X6_usingDTable()
2480 errorCode = BIT_initDStream(&bitD2, istart2, length2); in HUF_decompress4X6_usingDTable()
2481 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X6_usingDTable()
2482 errorCode = BIT_initDStream(&bitD3, istart3, length3); in HUF_decompress4X6_usingDTable()
2483 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X6_usingDTable()
2484 errorCode = BIT_initDStream(&bitD4, istart4, length4); in HUF_decompress4X6_usingDTable()
2485 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X6_usingDTable()
3183 size_t errorCode, dumpsLength; in ZSTD_decompressSequences() local
3194 errorCode = ZSTD_decodeSeqHeaders(&nbSeq, &dumps, &dumpsLength, in ZSTD_decompressSequences()
3197 if (ZSTD_isError(errorCode)) return errorCode; in ZSTD_decompressSequences()
3198 ip += errorCode; in ZSTD_decompressSequences()
3209 errorCode = BIT_initDStream(&(seqState.DStream), ip, iend-ip); in ZSTD_decompressSequences()
3210 if (ERR_isError(errorCode)) return ERROR(corruption_detected); in ZSTD_decompressSequences()