Lines Matching refs:errorCode
1334 size_t errorCode; in FSE_decompress_usingDTable_generic() local
1337 …errorCode = BIT_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */ in FSE_decompress_usingDTable_generic()
1338 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress_usingDTable_generic()
1415 size_t errorCode; in FSE_decompress() local
1420 errorCode = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize); in FSE_decompress()
1421 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress()
1422 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size */ in FSE_decompress()
1423 ip += errorCode; in FSE_decompress()
1424 cSrcSize -= errorCode; in FSE_decompress()
1426 errorCode = FSE_buildDTable (dt, counting, maxSymbolValue, tableLog); in FSE_decompress()
1427 if (FSE_isError(errorCode)) return errorCode; in FSE_decompress()
1884 size_t errorCode; in HUF_decompress4X2_usingDTable() local
1911 errorCode = BIT_initDStream(&bitD1, istart1, length1); in HUF_decompress4X2_usingDTable()
1912 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1913 errorCode = BIT_initDStream(&bitD2, istart2, length2); in HUF_decompress4X2_usingDTable()
1914 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1915 errorCode = BIT_initDStream(&bitD3, istart3, length3); in HUF_decompress4X2_usingDTable()
1916 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1917 errorCode = BIT_initDStream(&bitD4, istart4, length4); in HUF_decompress4X2_usingDTable()
1918 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2_usingDTable()
1970 size_t errorCode; in HUF_decompress4X2() local
1972 errorCode = HUF_readDTableX2 (DTable, cSrc, cSrcSize); in HUF_decompress4X2()
1973 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X2()
1974 if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); in HUF_decompress4X2()
1975 ip += errorCode; in HUF_decompress4X2()
1976 cSrcSize -= errorCode; in HUF_decompress4X2()
2242 size_t errorCode; in HUF_decompress4X4_usingDTable() local
2269 errorCode = BIT_initDStream(&bitD1, istart1, length1); in HUF_decompress4X4_usingDTable()
2270 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2271 errorCode = BIT_initDStream(&bitD2, istart2, length2); in HUF_decompress4X4_usingDTable()
2272 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2273 errorCode = BIT_initDStream(&bitD3, istart3, length3); in HUF_decompress4X4_usingDTable()
2274 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2275 errorCode = BIT_initDStream(&bitD4, istart4, length4); in HUF_decompress4X4_usingDTable()
2276 if (HUF_isError(errorCode)) return errorCode; in HUF_decompress4X4_usingDTable()
2964 size_t errorCode, dumpsLength; in ZSTD_decompressSequences() local
2977 errorCode = ZSTD_decodeSeqHeaders(&nbSeq, &dumps, &dumpsLength, in ZSTD_decompressSequences()
2980 if (ZSTD_isError(errorCode)) return errorCode; in ZSTD_decompressSequences()
2981 ip += errorCode; in ZSTD_decompressSequences()
2993 errorCode = BIT_initDStream(&(seqState.DStream), ip, iend-ip); in ZSTD_decompressSequences()
2994 if (ERR_isError(errorCode)) return ERROR(corruption_detected); in ZSTD_decompressSequences()
3591 unsigned ZBUFFv04_isError(size_t errorCode) { return ERR_isError(errorCode); } in ZBUFFv04_isError() argument
3592 const char* ZBUFFv04_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); } in ZBUFFv04_getErrorName() argument