Searched refs:newlyFlushed (Results 1 - 1 of 1) sorted by relevance

/freebsd-current/sys/contrib/zstd/programs/
H A Dfileio.c1468 unsigned long long newlyFlushed = zfp.flushed - previous_zfp_update.flushed; local
1485 if ( (newlyProduced > (newlyFlushed * 9 / 8)) /* compression produces more data than output can flush (though production can be spiky, due to work unit : (N==4)*block sizes) */
1488 DISPLAYLEVEL(6, "compression faster than flush (%llu > %llu), and flushed was never slowed down by lack of production => slow down \n", newlyProduced, newlyFlushed);
1507 unsigned long long newlyFlushed = zfp.flushed - previous_zfp_correction.flushed; local
1513 (unsigned)newlyFlushed, (unsigned)newlyProduced);
1515 && (newlyFlushed * 33 / 32 > newlyProduced) /* flush everything that is produced */
1519 newlyIngested, newlyConsumed, newlyProduced, newlyFlushed);

Completed in 114 milliseconds