Lines Matching refs:readSize
767 { size_t const readSize = fread(*bufferPtr, 1, (size_t)fileSize, fileHandle); in FIO_createDictBuffer() local
768 if (readSize != fileSize) { in FIO_createDictBuffer()
1270 size_t readSize; in FIO_compressLz4Frame() local
1280 readSize = fread(ress->srcBuffer, (size_t)1, (size_t)blockSize, ress->srcFile); in FIO_compressLz4Frame()
1281 inFileSize += readSize; in FIO_compressLz4Frame()
1284 while (readSize>0) { in FIO_compressLz4Frame()
1287 ress->srcBuffer, readSize, NULL); in FIO_compressLz4Frame()
1309 readSize = fread(ress->srcBuffer, (size_t)1, (size_t)blockSize, ress->srcFile); in FIO_compressLz4Frame()
1310 inFileSize += readSize; in FIO_compressLz4Frame()
2288 size_t const readSize = fread(startPosition, 1, toRead, finput); in FIO_decompressZstdFrame() local
2289 if (readSize==0) { in FIO_decompressZstdFrame()
2294 ress->srcBufferLoaded += readSize; in FIO_decompressZstdFrame()
2474 size_t readSize; in FIO_decompressLz4Frame() local
2480 readSize = fread(ress->srcBuffer, 1, nextToLoad, srcFile); in FIO_decompressLz4Frame()
2481 if (!readSize) break; /* reached end of file or stream */ in FIO_decompressLz4Frame()
2483 …while ((pos < readSize) || (decodedBytes == ress->dstBufferSize)) { /* still to read, or still to… in FIO_decompressLz4Frame()
2485 size_t remaining = readSize - pos; in FIO_decompressLz4Frame()