Searched refs:nextToLoad (Results 1 – 1 of 1) sorted by relevance
2317 LZ4F_errorCode_t nextToLoad; in FIO_decompressLz4Frame() local2333 if (LZ4F_isError(nextToLoad)) { in FIO_decompressLz4Frame()2335 srcFileName, LZ4F_getErrorName(nextToLoad)); in FIO_decompressLz4Frame()2341 for (;nextToLoad;) { in FIO_decompressLz4Frame()2347 if (nextToLoad > ress->srcBufferSize) nextToLoad = ress->srcBufferSize; in FIO_decompressLz4Frame()2348 readSize = fread(ress->srcBuffer, 1, nextToLoad, srcFile); in FIO_decompressLz4Frame()2356 if (LZ4F_isError(nextToLoad)) { in FIO_decompressLz4Frame()2358 srcFileName, LZ4F_getErrorName(nextToLoad)); in FIO_decompressLz4Frame()2359 decodingError = 1; nextToLoad = 0; break; in FIO_decompressLz4Frame()2370 if (!nextToLoad) break; in FIO_decompressLz4Frame()[all …]