Lines Matching defs:result
29 int result = 0;
31 result += staticField / 42;
33 return result;
46 int result = 0;
49 result += staticField / 42;
52 return result;
62 int result = 0;
68 result += staticField * i;
71 return result;
81 int result = 0;
84 result += staticField / a;
87 return result;
103 int result = 0;
105 result += array[i];
107 return result;
120 int result = 0;
123 // As a result, the invariant division on the field can be moved out of the loop.
124 result += (staticField / 42) + Math.abs(array[i]);
126 return result;
139 int result = 0;
141 // As a result, the call itself can be moved out of the loop header.
143 result += i;
145 return result;
158 int result = 0;
161 // As a result, the call itself can be moved out of the loop body.
162 result += Math.max(x, y);
164 return result;