Lines Matching full:double

186 asuint64 (double f)  in asuint64()
190 double f; in asuint64()
196 static inline double
202 double f; in asdouble()
220 issignaling_inline (double x) in issignaling_inline()
236 static inline double
237 opt_barrier_double (double x) in opt_barrier_double()
249 force_eval_double (double x) in force_eval_double()
260 static inline double
261 opt_barrier_double (double x) in opt_barrier_double()
263 volatile double y = x; in opt_barrier_double()
272 force_eval_double (double x) in force_eval_double()
274 volatile double y UNUSED = x; in force_eval_double()
287 static inline double
288 eval_as_double (double x) in eval_as_double()
305 HIDDEN double __math_oflow (uint32_t);
307 HIDDEN double __math_uflow (uint32_t);
309 HIDDEN double __math_may_uflow (uint32_t);
311 HIDDEN double __math_divzero (uint32_t);
318 HIDDEN double __math_invalid (double);
323 HIDDEN double __math_check_oflow (double);
325 HIDDEN double __math_check_uflow (double);
328 static inline double
329 check_oflow (double x) in check_oflow()
335 static inline double
336 check_uflow (double x) in check_uflow()
366 double shift_scaled;
367 double poly[EXP2F_POLY_ORDER];
368 double shift;
369 double invln2_scaled;
370 double poly_scaled[EXP2F_POLY_ORDER];
379 double invc, logc;
381 double ln2;
382 double poly[LOGF_POLY_ORDER - 1]; /* First order coefficient is 1. */
391 double invc, logc;
393 double poly[LOG2F_POLY_ORDER];
403 #define POWF_SCALE ((double) (1 << POWF_SCALE_BITS))
408 double invc, logc;
410 double poly[POWF_LOG2_POLY_ORDER];
429 double invln2N;
430 double invlog10_2N;
431 double shift;
432 double negln2hiN;
433 double negln2loN;
434 double neglog10_2hiN;
435 double neglog10_2loN;
436 double poly[4]; /* Last four coefficients. */
437 double exp2_shift;
438 double exp2_poly[EXP2_POLY_ORDER];
439 double exp10_poly[5];
448 double ln2hi;
449 double ln2lo;
450 double poly[LOG_POLY_ORDER - 1]; /* First coefficient is 1. */
451 double poly1[LOG_POLY1_ORDER - 1];
452 struct {double invc, logc;} tab[1 << LOG_TABLE_BITS];
454 struct {double chi, clo;} tab2[1 << LOG_TABLE_BITS];
463 double invln2hi;
464 double invln2lo;
465 double poly[LOG2_POLY_ORDER - 1];
466 double poly1[LOG2_POLY1_ORDER - 1];
467 struct {double invc, logc;} tab[1 << LOG2_TABLE_BITS];
469 struct {double chi, clo;} tab2[1 << LOG2_TABLE_BITS];
477 double ln2hi;
478 double ln2lo;
479 double poly[POW_LOG_POLY_ORDER - 1]; /* First coefficient is 1. */
481 struct {double invc, pad, logc, logctail;} tab[1 << POW_LOG_TABLE_BITS];
498 double erf_poly_A[ERF_POLY_A_NCOEFFS];
499 double erf_ratio_N_A[5];
500 double erf_ratio_D_A[5];
501 double erf_ratio_N_B[7];
502 double erf_ratio_D_B[6];
503 double erfc_poly_C[ERFC_POLY_C_NCOEFFS];
504 double erfc_poly_D[ERFC_POLY_D_NCOEFFS];
505 double erfc_poly_E[ERFC_POLY_E_NCOEFFS];
506 double erfc_poly_F[ERFC_POLY_F_NCOEFFS];
517 double invc, logc;