Lines Matching refs:blockSize
294 int blockSize; member
365 ret->blockSize = 0; in FIO_createPreferences()
449 void FIO_setBlockSize(FIO_prefs_t* const prefs, int blockSize) { in FIO_setBlockSize() argument
450 if (blockSize && prefs->nbWorkers==0) in FIO_setBlockSize()
452 prefs->blockSize = blockSize; in FIO_setBlockSize()
993 CHECK( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_jobSize, prefs->blockSize) ); in FIO_createCResources()
1188 const size_t blockSize = FIO_LZ4_GetBlockSize_FromBlockId(LZ4F_max64KB); in FIO_compressLz4Frame() local
1200 assert(blockSize <= ress->srcBufferSize); in FIO_compressLz4Frame()
1210 assert(LZ4F_compressBound(blockSize, &prefs) <= ress->dstBufferSize); in FIO_compressLz4Frame()
1223 readSize = fread(ress->srcBuffer, (size_t)1, (size_t)blockSize, ress->srcFile); in FIO_compressLz4Frame()
1252 readSize = fread(ress->srcBuffer, (size_t)1, (size_t)blockSize, ress->srcFile); in FIO_compressLz4Frame()
2027 size_t const blockSize = MIN(64 KB, bufferSize); in FIO_passThrough() local
2039 readFromInput = fread(buffer, 1, blockSize, finput); in FIO_passThrough()
2041 } while (readFromInput == blockSize); in FIO_passThrough()
2867 long const blockSize = isRLE ? 1 : (long)(blockHeader >> 3); in FIO_analyzeFrames() local
2870 ERROR_IF(fseek(srcFile, blockSize, SEEK_CUR) != 0, in FIO_analyzeFrames()