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

/freebsd-13-stable/sys/contrib/zstd/lib/dictBuilder/
H A Dcover.c659 COVER_epoch_info_t epochs; local
660 epochs.num = MAX(1, maxDictSize / k / passes);
661 epochs.size = nbDmers / epochs.num;
662 if (epochs.size >= minEpochSize) {
663 assert(epochs.size * epochs.num <= nbDmers);
664 return epochs;
666 epochs.size = MIN(minEpochSize, nbDmers);
667 epochs
682 const COVER_epoch_info_t epochs = COVER_computeEpochs( local
[all...]
H A Dfastcover.c400 /* Divide the data into epochs. We will select one segment from each epoch. */
401 const COVER_epoch_info_t epochs = COVER_computeEpochs( local
406 DISPLAYLEVEL(2, "Breaking content into %u epochs of size %u\n",
407 (U32)epochs.num, (U32)epochs.size);
408 /* Loop through the epochs until there are no more segments or the dictionary
411 for (epoch = 0; tail > 0; epoch = (epoch + 1) % epochs.num) {
412 const U32 epochBegin = (U32)(epoch * epochs.size);
413 const U32 epochEnd = epochBegin + epochs.size;
420 * There may be new content in other epochs, fo
[all...]

Completed in 128 milliseconds