Lines Matching refs:b

5         int a, b, c, d;  in testIntAddSub()  local
7 b = 5 - a; in testIntAddSub()
9 c = a + b; in testIntAddSub()
11 a = d - b; in testIntAddSub()
17 b = 2; in testIntAddSub()
23 int b = 9 - a; in testIntMult() local
24 int c = b * 4; in testIntMult()
34 int b = 9 - a / 5; in testIntDiv() local
35 int c = b * 4; in testIntDiv()
45 int b = a % 3; in testIntMod() local
47 return b + c; in testIntMod()
52 int b = 3; in testIntPhi() local
53 int c = (b == 0) ? 0 : (a / b); in testIntPhi()
59 float a, b, c, d; in testFloatAddSub() local
61 b = 5 - a; in testFloatAddSub()
63 c = a + b; in testFloatAddSub()
65 a = d - b; in testFloatAddSub()
71 b = 2; in testFloatAddSub()
77 float b = 9 - a; in testFloatMult() local
78 float c = b * 4; in testFloatMult()
88 float b = 9 - a / 5; in testFloatDiv() local
89 float c = b * 4; in testFloatDiv()
99 float b = a % 3; in testFloatMod() local
101 return b + c; in testFloatMod()
106 float b = 3; in testFloatPhi() local
107 float c = (b == 0) ? 0 : (a / b); in testFloatPhi()
113 double a, b, c, d; in testDoubleAddSub() local
115 b = 5 - a; in testDoubleAddSub()
117 c = a + b; in testDoubleAddSub()
119 a = d - b; in testDoubleAddSub()
125 b = 2; in testDoubleAddSub()
131 double b = 9 - a; in testDoubleMult() local
132 double c = b * 4; in testDoubleMult()
142 double b = 9 - a / 5; in testDoubleDiv() local
143 double c = b * 4; in testDoubleDiv()
153 double b = a % 3; in testDoubleMod() local
155 return b + c; in testDoubleMod()
160 double b = 3; in testDoublePhi() local
161 double c = (b == 0) ? 0 : (a / b); in testDoublePhi()