Home
last modified time | relevance | path

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

/linux-6.12.1/lib/zstd/compress/
Dfse_compress.c80 U16* cumul = (U16*)workSpace; /* size = maxSV1 */ in FSE_buildCTable_wksp() local
81 …FSE_FUNCTION_TYPE* const tableSymbol = (FSE_FUNCTION_TYPE*)(cumul + (maxSV1+1)); /* size = tableS… in FSE_buildCTable_wksp()
101 cumul[0] = 0; in FSE_buildCTable_wksp()
104 cumul[u] = cumul[u-1] + 1; in FSE_buildCTable_wksp()
108 cumul[u] = cumul[u-1] + (U16)normalizedCounter[u-1]; in FSE_buildCTable_wksp()
109 assert(cumul[u] >= cumul[u-1]); /* no overflow */ in FSE_buildCTable_wksp()
111 cumul[maxSV1] = (U16)(tableSize+1); in FSE_buildCTable_wksp()
171 …tableU16[cumul[s]++] = (U16) (tableSize+u); /* TableU16 : sorted by symbol order; gives next sta… in FSE_buildCTable_wksp()
/linux-6.12.1/tools/memory-model/
Dlinux-kernel.cat88 let A-cumul(r) = (rfe ; [Marked])? ; r
90 let cumul-fence = [Marked] ; (A-cumul(strong-fence | po-rel) | wmb |
92 let prop = [Marked] ; (overwrite & ext)? ; cumul-fence* ;
183 let vis = cumul-fence* ; rfe? ; [Marked] ;
/linux-6.12.1/tools/perf/ui/stdio/
Dhist.c128 u64 cumul; in __callchain__fprintf_graph() local
131 cumul = callchain_cumul_hits(child); in __callchain__fprintf_graph()
132 remaining -= cumul; in __callchain__fprintf_graph()
/linux-6.12.1/tools/memory-model/Documentation/
Dexplanation.txt22 14. PROPAGATION ORDER RELATION: cumul-fence
882 PROPAGATION ORDER RELATION: cumul-fence
886 smp_wmb() fences) are collectively referred to as cumul-fences, even
887 though smp_wmb() isn't A-cumulative. The cumul-fence relation is
900 and W ->cumul-fence W', then W must propagate to any given CPU
1023 cumul-fence relation. That is, if we have:
1025 U ->cumul-fence X -> rmw-sequence Y
1027 then also U ->cumul-fence Y. Thinking about this in terms of the
1028 operational model, U ->cumul-fence X says that the store U propagates
1381 followed by an arbitrary number of cumul-fence links, ending with an
[all …]