Lines Matching refs:nextToLoad
2317 LZ4F_errorCode_t nextToLoad; in FIO_decompressLz4Frame() local
2332 … nextToLoad = LZ4F_decompress(dCtx, ress->dstBuffer, &outSize, ress->srcBuffer, &inSize, NULL); in FIO_decompressLz4Frame()
2333 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()
2355 …nextToLoad = LZ4F_decompress(dCtx, ress->dstBuffer, &decodedBytes, (char*)(ress->srcBuffer)+pos, &… 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()
2379 if (nextToLoad!=0) { in FIO_decompressLz4Frame()