Lines Matching refs:errorCode

1330     size_t errorCode;  in FSE_decompress_usingDTable_generic()  local
1333errorCode = BIT_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */ in FSE_decompress_usingDTable_generic()
1334 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress_usingDTable_generic()
1411 size_t errorCode; in FSE_decompress() local
1416 errorCode = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize); in FSE_decompress()
1417 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress()
1418 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size */ in FSE_decompress()
1419 ip += errorCode; in FSE_decompress()
1420 cSrcSize -= errorCode; in FSE_decompress()
1422 errorCode = FSE_buildDTable (dt, counting, maxSymbolValue, tableLog); in FSE_decompress()
1423 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress()
1880 size_t errorCode; in HUF_decompress4X2_usingDTable() local
1907 errorCode = BIT_initDStream(&bitD1, istart1, length1); in HUF_decompress4X2_usingDTable()
1908 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1909 errorCode = BIT_initDStream(&bitD2, istart2, length2); in HUF_decompress4X2_usingDTable()
1910 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1911 errorCode = BIT_initDStream(&bitD3, istart3, length3); in HUF_decompress4X2_usingDTable()
1912 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1913 errorCode = BIT_initDStream(&bitD4, istart4, length4); in HUF_decompress4X2_usingDTable()
1914 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1966 size_t errorCode; in HUF_decompress4X2() local
1968 errorCode = HUF_readDTableX2 (DTable, cSrc, cSrcSize); in HUF_decompress4X2()
1969 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2()
1970 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); in HUF_decompress4X2()
1971 ip += errorCode; in HUF_decompress4X2()
1972 cSrcSize -= errorCode; in HUF_decompress4X2()
2238 size_t errorCode; in HUF_decompress4X4_usingDTable() local
2265 errorCode = BIT_initDStream(&bitD1, istart1, length1); in HUF_decompress4X4_usingDTable()
2266 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2267 errorCode = BIT_initDStream(&bitD2, istart2, length2); in HUF_decompress4X4_usingDTable()
2268 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2269 errorCode = BIT_initDStream(&bitD3, istart3, length3); in HUF_decompress4X4_usingDTable()
2270 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2271 errorCode = BIT_initDStream(&bitD4, istart4, length4); in HUF_decompress4X4_usingDTable()
2272 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2960 size_t errorCode, dumpsLength; in ZSTD_decompressSequences() local
2973 errorCode = ZSTD_decodeSeqHeaders(&nbSeq, &dumps, &dumpsLength, in ZSTD_decompressSequences()
2976 if (ZSTD_isError(errorCode)) return errorCode; in ZSTD_decompressSequences()
2977 ip += errorCode; in ZSTD_decompressSequences()
2989 errorCode = BIT_initDStream(&(seqState.DStream), ip, iend-ip); in ZSTD_decompressSequences()
2990 if (ERR_isError(errorCode)) return ERROR(corruption_detected); in ZSTD_decompressSequences()
3587 unsigned ZBUFFv04_isError(size_t errorCode) { return ERR_isError(errorCode); } in ZBUFFv04_isError() argument
3588 const char* ZBUFFv04_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); } in ZBUFFv04_getErrorName() argument