Home
last modified time | relevance | path

Searched refs:cumul (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/lib/zstd/
Dfse_compress.c103 U32 *cumul; in FSE_buildCTable_wksp() local
107 cumul = (U32 *)workspace + spaceUsed32; in FSE_buildCTable_wksp()
127 cumul[0] = 0; in FSE_buildCTable_wksp()
130 cumul[u] = cumul[u - 1] + 1; in FSE_buildCTable_wksp()
133 cumul[u] = cumul[u - 1] + normalizedCounter[u - 1]; in FSE_buildCTable_wksp()
136 cumul[maxSymbolValue + 1] = tableSize + 1; in FSE_buildCTable_wksp()
162 …tableU16[cumul[s]++] = (U16)(tableSize + u); /* TableU16 : sorted by symbol order; gives next stat… in FSE_buildCTable_wksp()
/Linux-v4.19/tools/memory-model/
Dlinux-kernel.cat68 let A-cumul(r) = rfe? ; r
69 let cumul-fence = A-cumul(strong-fence | po-rel) | wmb
70 let prop = (overwrite & ext)? ; cumul-fence* ; rfe?
/Linux-v4.19/tools/perf/ui/stdio/
Dhist.c120 u64 cumul; in __callchain__fprintf_graph() local
123 cumul = callchain_cumul_hits(child); in __callchain__fprintf_graph()
124 remaining -= cumul; in __callchain__fprintf_graph()
/Linux-v4.19/tools/memory-model/Documentation/
Dexplanation.txt22 14. PROPAGATION ORDER RELATION: cumul-fence
833 PROPAGATION ORDER RELATION: cumul-fence
837 smp_wmb() fences) are collectively referred to as cumul-fences, even
838 though smp_wmb() isn't A-cumulative. The cumul-fence relation is
851 and W ->cumul-fence W', then W must propagate to any given CPU
1322 followed by an arbitrary number of cumul-fence links, ending with an
1381 F via a coe or fre link, an arbitrary number of cumul-fences, an
1389 E ->coe W ->cumul-fence* X ->rfe? Y ->strong-fence Z ->hb* F,
1393 be equal to X). Because of the cumul-fence links, we know that W will
1439 In this example, the sequences of cumul-fence and hb links are empty.