Lines Matching refs:readSize
720 { size_t const readSize = fread(*bufferPtr, 1, (size_t)fileSize, fileHandle); in FIO_createDictBuffer() local
721 if (readSize != fileSize) in FIO_createDictBuffer()
1213 size_t readSize; in FIO_compressLz4Frame() local
1223 readSize = fread(ress->srcBuffer, (size_t)1, (size_t)blockSize, ress->srcFile); in FIO_compressLz4Frame()
1224 inFileSize += readSize; in FIO_compressLz4Frame()
1227 while (readSize>0) { in FIO_compressLz4Frame()
1230 ress->srcBuffer, readSize, NULL); in FIO_compressLz4Frame()
1252 readSize = fread(ress->srcBuffer, (size_t)1, (size_t)blockSize, ress->srcFile); in FIO_compressLz4Frame()
1253 inFileSize += readSize; in FIO_compressLz4Frame()
2156 size_t const readSize = fread(startPosition, 1, toRead, finput); in FIO_decompressZstdFrame() local
2157 if (readSize==0) { in FIO_decompressZstdFrame()
2162 ress->srcBufferLoaded += readSize; in FIO_decompressZstdFrame()
2342 size_t readSize; in FIO_decompressLz4Frame() local
2348 readSize = fread(ress->srcBuffer, 1, nextToLoad, srcFile); in FIO_decompressLz4Frame()
2349 if (!readSize) break; /* reached end of file or stream */ in FIO_decompressLz4Frame()
2351 …while ((pos < readSize) || (decodedBytes == ress->dstBufferSize)) { /* still to read, or still to… in FIO_decompressLz4Frame()
2353 size_t remaining = readSize - pos; in FIO_decompressLz4Frame()