Lines Matching refs:result

33     // NOTE: To avoid the benchmarked function from being optimized away, we store the result
35 // the future, a smart compiler could determine that the result value will depend on whether
39 double result = d;
41 result = Math.abs(d);
43 return result;
47 float result = f;
49 result = Math.abs(f);
51 return result;
55 int result = i;
57 result = Math.abs(i);
59 return result;
63 long result = l;
65 result = Math.abs(l);
67 return result;
71 double result = d;
73 result = Math.acos(d);
75 return result;
79 double result = d;
81 result = Math.asin(d);
83 return result;
87 double result = d;
89 result = Math.atan(d);
91 return result;
95 double result = d;
97 result = Math.atan2(3, 4);
99 return result;
103 double result = d;
105 result = Math.cbrt(d);
107 return result;
111 double result = d;
113 result = Math.ceil(d);
115 return result;
119 double result = d;
121 result = Math.copySign(d, d);
123 return result;
127 float result = f;
129 result = Math.copySign(f, f);
131 return result;
135 double result = d;
137 result = StrictMath.copySign(d, d);
139 return result;
143 float result = f;
145 result = StrictMath.copySign(f, f);
147 return result;
151 double result = d;
153 result = Math.cos(d);
155 return result;
159 double result = d;
161 result = Math.cosh(d);
163 return result;
167 double result = d;
169 result = Math.exp(d);
171 return result;
175 double result = d;
177 result = Math.expm1(d);
179 return result;
183 double result = d;
185 result = Math.floor(d);
187 return result;
191 int result = i;
193 result = Math.getExponent(d);
195 return result;
199 int result = i;
201 result = Math.getExponent(f);
203 return result;
207 double result = d;
209 result = Math.hypot(d, d);
211 return result;
215 double result = d;
217 result = Math.IEEEremainder(d, d);
219 return result;
223 double result = d;
225 result = Math.log(d);
227 return result;
231 double result = d;
233 result = Math.log10(d);
235 return result;
239 double result = d;
241 result = Math.log1p(d);
243 return result;
247 double result = d;
249 result = Math.max(d, d);
251 return result;
255 float result = f;
257 result = Math.max(f, f);
259 return result;
263 int result = i;
265 result = Math.max(i, i);
267 return result;
271 long result = l;
273 result = Math.max(l, l);
275 return result;
279 double result = d;
281 result = Math.min(d, d);
283 return result;
287 float result = f;
289 result = Math.min(f, f);
291 return result;
295 int result = i;
297 result = Math.min(i, i);
299 return result;
303 long result = l;
305 result = Math.min(l, l);
307 return result;
311 double result = d;
313 result = Math.nextAfter(d, d);
315 return result;
319 float result = f;
321 result = Math.nextAfter(f, f);
323 return result;
327 double result = d;
329 result = Math.nextUp(d);
331 return result;
335 float result = f;
337 result = Math.nextUp(f);
339 return result;
343 double result = d;
345 result = Math.pow(d, d);
347 return result;
351 double result = d;
353 result = Math.random();
355 return result;
359 double result = d;
361 result = Math.rint(d);
363 return result;
367 long result = l;
369 result = Math.round(d);
371 return result;
375 int result = i;
377 result = Math.round(f);
379 return result;
383 double result = d;
385 result = Math.scalb(d, 5);
387 return result;
391 float result = f;
393 result = Math.scalb(f, 5);
395 return result;
399 double result = d;
401 result = Math.signum(d);
403 return result;
407 float result = f;
409 result = Math.signum(f);
411 return result;
415 double result = d;
417 result = Math.sin(d);
419 return result;
423 double result = d;
425 result = Math.sinh(d);
427 return result;
431 double result = d;
433 result = Math.sqrt(d);
435 return result;
439 double result = d;
441 result = Math.tan(d);
443 return result;
447 double result = d;
449 result = Math.tanh(d);
451 return result;
455 double result = d;
457 result = Math.toDegrees(d);
459 return result;
463 double result = d;
465 result = Math.toRadians(d);
467 return result;
471 double result = d;
473 result = Math.ulp(d);
475 return result;
479 float result = f;
481 result = Math.ulp(f);
483 return result;