Lines Matching refs:sum
14 float sum = 0;
16 sum += Foo(a[i]);
17 return sum;
49 float sum = my_sum;
52 sum += Foo(a[i]);
53 my_sum = sum;
81 variables (``a``, ``sum``, ``end``) for scalar values accessed inside
87 temporaries for only written variables (such as ``sum`` in the
144 float sum = 0; // WRONG – should be 'sum = my_sum".
147 sum += Foo(a[i]);
148 my_sum = sum;
154 With the mistake, the body returns a partial sum for the last subrange