Lines Matching refs:errorCode

1381     size_t errorCode;  in FSE_decompress_usingDTable_generic()  local
1384errorCode = BIT_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */ in FSE_decompress_usingDTable_generic()
1385 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress_usingDTable_generic()
1462 size_t errorCode; in FSE_decompress() local
1467 errorCode = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize); in FSE_decompress()
1468 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress()
1469 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size */ in FSE_decompress()
1470 ip += errorCode; in FSE_decompress()
1471 cSrcSize -= errorCode; in FSE_decompress()
1473 errorCode = FSE_buildDTable (dt, counting, maxSymbolValue, tableLog); in FSE_decompress()
1474 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress()
1931 size_t errorCode; in HUF_decompress4X2_usingDTable() local
1958 errorCode = BIT_initDStream(&bitD1, istart1, length1); in HUF_decompress4X2_usingDTable()
1959 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1960 errorCode = BIT_initDStream(&bitD2, istart2, length2); in HUF_decompress4X2_usingDTable()
1961 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1962 errorCode = BIT_initDStream(&bitD3, istart3, length3); in HUF_decompress4X2_usingDTable()
1963 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1964 errorCode = BIT_initDStream(&bitD4, istart4, length4); in HUF_decompress4X2_usingDTable()
1965 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
2017 size_t errorCode; in HUF_decompress4X2() local
2019 errorCode = HUF_readDTableX2 (DTable, cSrc, cSrcSize); in HUF_decompress4X2()
2020 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2()
2021 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); in HUF_decompress4X2()
2022 ip += errorCode; in HUF_decompress4X2()
2023 cSrcSize -= errorCode; in HUF_decompress4X2()
2289 size_t errorCode; in HUF_decompress4X4_usingDTable() local
2316 errorCode = BIT_initDStream(&bitD1, istart1, length1); in HUF_decompress4X4_usingDTable()
2317 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2318 errorCode = BIT_initDStream(&bitD2, istart2, length2); in HUF_decompress4X4_usingDTable()
2319 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2320 errorCode = BIT_initDStream(&bitD3, istart3, length3); in HUF_decompress4X4_usingDTable()
2321 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2322 errorCode = BIT_initDStream(&bitD4, istart4, length4); in HUF_decompress4X4_usingDTable()
2323 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
3010 size_t errorCode, dumpsLength; in ZSTD_decompressSequences() local
3023 errorCode = ZSTD_decodeSeqHeaders(&nbSeq, &dumps, &dumpsLength, in ZSTD_decompressSequences()
3026 if (ZSTD_isError(errorCode)) return errorCode; in ZSTD_decompressSequences()
3027 ip += errorCode; in ZSTD_decompressSequences()
3039 errorCode = BIT_initDStream(&(seqState.DStream), ip, iend-ip); in ZSTD_decompressSequences()
3040 if (ERR_isError(errorCode)) return ERROR(corruption_detected); in ZSTD_decompressSequences()
3607 unsigned ZBUFFv04_isError(size_t errorCode) { return ERR_isError(errorCode); } in ZBUFFv04_isError() argument
3608 const char* ZBUFFv04_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); } in ZBUFFv04_getErrorName() argument