Lines Matching refs:tmp
139 float tmp; in floatOperTest() local
149 tmp = x; in floatOperTest()
150 tmp += y; in floatOperTest()
151 results[5] = tmp; in floatOperTest()
152 tmp = x; in floatOperTest()
153 tmp -= y; in floatOperTest()
154 results[6] = tmp; in floatOperTest()
155 tmp = x; in floatOperTest()
156 tmp *= y; in floatOperTest()
157 results[7] = tmp; in floatOperTest()
158 tmp = x; in floatOperTest()
159 tmp /= y; in floatOperTest()
160 results[8] = tmp; in floatOperTest()
161 tmp = x; in floatOperTest()
162 tmp %= -y; in floatOperTest()
163 results[9] = tmp; in floatOperTest()
188 double tmp; in doubleOperTest() local
198 tmp = x; in doubleOperTest()
199 tmp += y; in doubleOperTest()
200 results[5] = tmp; in doubleOperTest()
201 tmp = x; in doubleOperTest()
202 tmp -= y; in doubleOperTest()
203 results[6] = tmp; in doubleOperTest()
204 tmp = x; in doubleOperTest()
205 tmp *= y; in doubleOperTest()
206 results[7] = tmp; in doubleOperTest()
207 tmp = x; in doubleOperTest()
208 tmp /= y; in doubleOperTest()
209 results[8] = tmp; in doubleOperTest()
210 tmp = x; in doubleOperTest()
211 tmp %= -y; in doubleOperTest()
212 results[9] = tmp; in doubleOperTest()