Searched refs:nextToLoad (Results 1 – 1 of 1) sorted by relevance
| /freebsd-12.1/sys/contrib/zstd/programs/ |
| H A D | fileio.c | 1442 LZ4F_errorCode_t nextToLoad; in FIO_decompressLz4Frame() local 1456 … nextToLoad = LZ4F_decompress(dCtx, ress->dstBuffer, &outSize, ress->srcBuffer, &inSize, NULL); in FIO_decompressLz4Frame() 1457 if (LZ4F_isError(nextToLoad)) { in FIO_decompressLz4Frame() 1459 srcFileName, LZ4F_getErrorName(nextToLoad)); in FIO_decompressLz4Frame() 1465 for (;nextToLoad;) { in FIO_decompressLz4Frame() 1471 if (nextToLoad > ress->srcBufferSize) nextToLoad = ress->srcBufferSize; in FIO_decompressLz4Frame() 1472 readSize = fread(ress->srcBuffer, 1, nextToLoad, srcFile); in FIO_decompressLz4Frame() 1480 if (LZ4F_isError(nextToLoad)) { in FIO_decompressLz4Frame() 1482 srcFileName, LZ4F_getErrorName(nextToLoad)); in FIO_decompressLz4Frame() 1497 if (!nextToLoad) break; in FIO_decompressLz4Frame() [all …]
|