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