HomeSort by: relevance | last modified time | path
    Searched refs:xt (Results 1 - 25 of 70) sorted by relevancy

1 2 3

  /src/external/lgpl3/mpfr/dist/src/
tanh.c 27 mpfr_tanh (mpfr_ptr y, mpfr_srcptr xt, mpfr_rnd_t rnd_mode)
35 (("x[%Pd]=%.*Rg rnd=%d", mpfr_get_prec (xt), mpfr_log_prec, xt, rnd_mode),
40 if (MPFR_UNLIKELY (MPFR_IS_SINGULAR (xt)))
42 if (MPFR_IS_NAN (xt))
47 else if (MPFR_IS_INF (xt))
50 return mpfr_set_si (y, MPFR_INT_SIGN (xt), rnd_mode);
52 else /* tanh (0) = 0 and xt is zero */
54 MPFR_ASSERTD (MPFR_IS_ZERO(xt));
56 MPFR_SET_SAME_SIGN (y, xt);
    [all...]
cosh.c 30 mpfr_cosh (mpfr_ptr y, mpfr_srcptr xt, mpfr_rnd_t rnd_mode)
37 ("x[%Pd]=%.*Rg rnd=%d", mpfr_get_prec (xt), mpfr_log_prec, xt, rnd_mode),
41 if (MPFR_UNLIKELY(MPFR_IS_SINGULAR(xt)))
43 if (MPFR_IS_NAN(xt))
48 else if (MPFR_IS_INF(xt))
56 MPFR_ASSERTD(MPFR_IS_ZERO(xt));
66 MPFR_FAST_COMPUTE_IF_SMALL_INPUT (y, __gmpfr_one, -2 * MPFR_GET_EXP (xt), 0,
69 MPFR_TMP_INIT_ABS(x, xt);
sinh_cosh.c 32 mpfr_sinh_cosh (mpfr_ptr sh, mpfr_ptr ch, mpfr_srcptr xt, mpfr_rnd_t rnd_mode)
41 mpfr_get_prec (xt), mpfr_log_prec, xt, rnd_mode),
46 if (MPFR_UNLIKELY (MPFR_IS_SINGULAR (xt)))
48 if (MPFR_IS_NAN (xt))
54 else if (MPFR_IS_INF (xt))
57 MPFR_SET_SAME_SIGN (sh, xt);
62 else /* xt is zero */
64 MPFR_ASSERTD (MPFR_IS_ZERO (xt));
66 MPFR_SET_SAME_SIGN (sh, xt);
    [all...]
atanh.c 103 mpfr_atanh (mpfr_ptr y, mpfr_srcptr xt, mpfr_rnd_t rnd_mode)
113 (("x[%Pd]=%.*Rg rnd=%d", mpfr_get_prec (xt), mpfr_log_prec, xt, rnd_mode),
118 if (MPFR_UNLIKELY (MPFR_IS_SINGULAR (xt)))
122 if (MPFR_IS_NAN (xt) || MPFR_IS_INF (xt))
127 else /* necessarily xt is 0 */
129 MPFR_ASSERTD (MPFR_IS_ZERO (xt));
131 MPFR_SET_SAME_SIGN (y,xt);
137 if (MPFR_UNLIKELY (MPFR_GET_EXP (xt) > 0)
    [all...]
sinh.c 30 mpfr_sinh (mpfr_ptr y, mpfr_srcptr xt, mpfr_rnd_t rnd_mode)
36 (("x[%Pd]=%.*Rg rnd=%d", mpfr_get_prec (xt), mpfr_log_prec, xt, rnd_mode),
40 if (MPFR_UNLIKELY (MPFR_IS_SINGULAR (xt)))
42 if (MPFR_IS_NAN (xt))
47 else if (MPFR_IS_INF (xt))
50 MPFR_SET_SAME_SIGN (y, xt);
53 else /* xt is zero */
55 MPFR_ASSERTD (MPFR_IS_ZERO (xt));
57 MPFR_SET_SAME_SIGN (y, xt);
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/test/Unit/
absvti2_test.c 36 twords xt; local
37 xt.all = x;
42 at.s.high, at.s.low, xt.s.high, xt.s.low,
divti3_test.c 32 twords xt; local
33 xt.all = x;
38 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
fixdfti_test.c 34 twords xt; local
35 xt.all = x;
39 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
fixunsdfti_test.c 36 utwords xt; local
37 xt.all = x;
41 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
modti3_test.c 32 twords xt; local
33 xt.all = x;
38 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
subvti3_test.c 36 twords xt; local
37 xt.all = x;
42 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
addvti3_test.c 35 twords xt; local
36 xt.all = x;
41 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
fixsfti_test.c 34 twords xt; local
35 xt.all = x;
39 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
fixunssfti_test.c 36 utwords xt; local
37 xt.all = x;
41 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
fixunsxfti_test.c 37 utwords xt; local
38 xt.all = x;
42 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
negvti2_test.c 34 twords xt; local
35 xt.all = x;
40 at.s.high, at.s.low, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
  /src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/
absvti2_test.c 36 twords xt; local
37 xt.all = x;
42 at.s.high, at.s.low, xt.s.high, xt.s.low,
divti3_test.c 32 twords xt; local
33 xt.all = x;
38 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
fixtfti_test.c 30 twords xt; local
31 xt.all = x;
38 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
fixunstfti_test.c 36 twords xt; local
37 xt.all = x;
44 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
modti3_test.c 32 twords xt; local
33 xt.all = x;
38 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
subvti3_test.c 36 twords xt; local
37 xt.all = x;
42 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
addvti3_test.c 35 twords xt; local
36 xt.all = x;
41 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
fixdfti_test.c 34 twords xt; local
35 xt.all = x;
39 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
fixsfti_test.c 34 twords xt; local
35 xt.all = x;
39 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);

Completed in 68 milliseconds

1 2 3