Home | History | Annotate | Download | only in regression

Lines Matching refs:result

29     // NOTE: To avoid the benchmarked function from being optimized away, we store the result
31 // the future, a smart compiler could determine that the result value will depend on whether
35 double result = d;
37 result = Math.abs(d);
39 return result;
43 float result = f;
45 result = Math.abs(f);
47 return result;
51 int result = i;
53 result = Math.abs(i);
55 return result;
59 long result = l;
61 result = Math.abs(l);
63 return result;
67 double result = d;
69 result = Math.acos(d);
71 return result;
75 double result = d;
77 result = Math.asin(d);
79 return result;
83 double result = d;
85 result = Math.atan(d);
87 return result;
91 double result = d;
93 result = Math.atan2(3, 4);
95 return result;
99 double result = d;
101 result = Math.cbrt(d);
103 return result;
107 double result = d;
109 result = Math.ceil(d);
111 return result;
115 double result = d;
117 result = Math.copySign(d, d);
119 return result;
123 float result = f;
125 result = Math.copySign(f, f);
127 return result;
131 double result = d;
133 result = StrictMath.copySign(d, d);
135 return result;
139 float result = f;
141 result = StrictMath.copySign(f, f);
143 return result;
147 double result = d;
149 result = Math.cos(d);
151 return result;
155 double result = d;
157 result = Math.cosh(d);
159 return result;
163 double result = d;
165 result = Math.exp(d);
167 return result;
171 double result = d;
173 result = Math.expm1(d);
175 return result;
179 double result = d;
181 result = Math.floor(d);
183 return result;
187 int result = i;
189 result = Math.getExponent(d);
191 return result;
195 int result = i;
197 result = Math.getExponent(f);
199 return result;
203 double result = d;
205 result = Math.hypot(d, d);
207 return result;
211 double result = d;
213 result = Math.IEEEremainder(d, d);
215 return result;
219 double result = d;
221 result = Math.log(d);
223 return result;
227 double result = d;
229 result = Math.log10(d);
231 return result;
235 double result = d;
237 result = Math.log1p(d);
239 return result;
243 double result = d;
245 result = Math.max(d, d);
247 return result;
251 float result = f;
253 result = Math.max(f, f);
255 return result;
259 int result = i;
261 result = Math.max(i, i);
263 return result;
267 long result = l;
269 result = Math.max(l, l);
271 return result;
275 double result = d;
277 result = Math.min(d, d);
279 return result;
283 float result = f;
285 result = Math.min(f, f);
287 return result;
291 int result = i;
293 result = Math.min(i, i);
295 return result;
299 long result = l;
301 result = Math.min(l, l);
303 return result;
307 double result = d;
309 result = Math.nextAfter(d, d);
311 return result;
315 float result = f;
317 result = Math.nextAfter(f, f);
319 return result;
323 double result = d;
325 result = Math.nextUp(d);
327 return result;
331 float result = f;
333 result = Math.nextUp(f);
335 return result;
339 double result = d;
341 result = Math.pow(d, d);
343 return result;
347 double result = d;
349 result = Math.random();
351 return result;
355 double result = d;
357 result = Math.rint(d);
359 return result;
363 long result = l;
365 result = Math.round(d);
367 return result;
371 int result = i;
373 result = Math.round(f);
375 return result;
379 double result = d;
381 result = Math.scalb(d, 5);
383 return result;
387 float result = f;
389 result = Math.scalb(f, 5);
391 return result;
395 double result = d;
397 result = Math.signum(d);
399 return result;
403 float result = f;
405 result = Math.signum(f);
407 return result;
411 double result = d;
413 result = Math.sin(d);
415 return result;
419 double result = d;
421 result = Math.sinh(d);
423 return result;
427 double result = d;
429 result = Math.sqrt(d);
431 return result;
435 double result = d;
437 result = Math.tan(d);
439 return result;
443 double result = d;
445 result = Math.tanh(d);
447 return result;
451 double result = d;
453 result = Math.toDegrees(d);
455 return result;
459 double result = d;
461 result = Math.toRadians(d);
463 return result;
467 double result = d;
469 result = Math.ulp(d);
471 return result;
475 float result = f;
477 result = Math.ulp(f);
479 return result;