Searched refs:nextToLoad (Results 1 – 1 of 1) sorted by relevance
2449 LZ4F_errorCode_t nextToLoad; in FIO_decompressLz4Frame() local2465 if (LZ4F_isError(nextToLoad)) { in FIO_decompressLz4Frame()2467 srcFileName, LZ4F_getErrorName(nextToLoad)); in FIO_decompressLz4Frame()2473 for (;nextToLoad;) { in FIO_decompressLz4Frame()2479 if (nextToLoad > ress->srcBufferSize) nextToLoad = ress->srcBufferSize; in FIO_decompressLz4Frame()2480 readSize = fread(ress->srcBuffer, 1, nextToLoad, srcFile); in FIO_decompressLz4Frame()2488 if (LZ4F_isError(nextToLoad)) { in FIO_decompressLz4Frame()2490 srcFileName, LZ4F_getErrorName(nextToLoad)); in FIO_decompressLz4Frame()2491 decodingError = 1; nextToLoad = 0; break; in FIO_decompressLz4Frame()2504 if (!nextToLoad) break; in FIO_decompressLz4Frame()[all …]