Lines Matching refs:be
11 result = a * b + c * d; // c * d, a * b and rvalue1 + rvalue2 should be 'noContraction'.
19 result = a = b + 4; // b + 4 should be 'noContraction'.
26 b = a + b; // a + b should be 'noContraction'.
27 result = double(b); // convert operation should not be 'noContraction'.
40 a += 1; // a + 1 should not be 'noContraction'.
41 r2 = c; // The calculation of c should be 'noContration'.
42 return float(r1 + r2); // conversion should not be 'noContration'.
52 result += float(x) + float(y); // x + y should be 'noContraction' also result + rvalue.
55 // a's dereference + 2 should be 'noContraction'.
57 // result + 1 and 3 - rvalue should be 'noContraction'.
67 result += 3.12 + b; // result + 3.12 should be 'noContraction'.
69 result = a + b + 5; // b + 5 should not be 'noCtraction' because all operands are integers.
78 b = b + c; // b + c should be decorated with 'noContraction'
79 result = fma(a, b, c); // fma() should not be decorated with 'noContradtion'
86 return a + b; // the ADD operation should be 'noContraction'
92 float result = a + b; // the ADD operation should be 'noContraction'
105 result = (a + c) * b; // should be noContraction