Lines Matching refs:a
5 int a, b, c, d; in testIntAddSub() local
6 a = 3; in testIntAddSub()
7 b = 5 - a; in testIntAddSub()
9 c = a + b; in testIntAddSub()
11 a = d - b; in testIntAddSub()
22 int a = 6; in testIntMult() local
23 int b = 9 - a; in testIntMult()
33 int a = 30; in testIntDiv() local
34 int b = 9 - a / 5; in testIntDiv()
40 return c * (60 / a); in testIntDiv()
44 int a = 5; in testIntMod() local
45 int b = a % 3; in testIntMod()
46 int c = a % 0; in testIntMod()
51 int a = 37; in testIntPhi() local
53 int c = (b == 0) ? 0 : (a / b); in testIntPhi()
59 float a, b, c, d; in testFloatAddSub() local
60 a = 3; in testFloatAddSub()
61 b = 5 - a; in testFloatAddSub()
63 c = a + b; in testFloatAddSub()
65 a = d - b; in testFloatAddSub()
76 float a = 6; in testFloatMult() local
77 float b = 9 - a; in testFloatMult()
87 float a = 30; in testFloatDiv() local
88 float b = 9 - a / 5; in testFloatDiv()
94 return c * (60 / a); in testFloatDiv()
98 float a = 5; in testFloatMod() local
99 float b = a % 3; in testFloatMod()
100 float c = a % 0; in testFloatMod()
105 float a = 37; in testFloatPhi() local
107 float c = (b == 0) ? 0 : (a / b); in testFloatPhi()
113 double a, b, c, d; in testDoubleAddSub() local
114 a = 3; in testDoubleAddSub()
115 b = 5 - a; in testDoubleAddSub()
117 c = a + b; in testDoubleAddSub()
119 a = d - b; in testDoubleAddSub()
130 double a = 6; in testDoubleMult() local
131 double b = 9 - a; in testDoubleMult()
141 double a = 30; in testDoubleDiv() local
142 double b = 9 - a / 5; in testDoubleDiv()
148 return c * (60 / a); in testDoubleDiv()
152 double a = 5; in testDoubleMod() local
153 double b = a % 3; in testDoubleMod()
154 double c = a % 0; in testDoubleMod()
159 double a = 37; in testDoublePhi() local
161 double c = (b == 0) ? 0 : (a / b); in testDoublePhi()