Home
last modified time | relevance | path

Searched refs:maxCount (Results 1 – 2 of 2) sorted by relevance

/openbmc/openbmc-tools/dbus-vis/
H A Dtimeline_view.js33 let maxCount = 0, totalCount = 0;
35 if (maxCount < buckets[i]) {
36 maxCount = buckets[i];
52 dy0 = y + h - h * 1.0 * buckets[i] / maxCount, dy1 = y + h;
/openbmc/linux/lib/zstd/compress/
H A Dhuf_compress.c105 …{ unsigned const maxCount = HIST_count_simple(wksp->count, &maxSymbolValue, weightTable, wtSize)… in HUF_compressWeights() local
106 if (maxCount == wtSize) return 1; /* only a single symbol in src : rle */ in HUF_compressWeights()
107 … if (maxCount == 1) return 0; /* each symbol present maximum once => not compressible */ in HUF_compressWeights()