OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MPFR_SIGNBIT
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/lgpl3/mpc/dist/src/
div.c
28
int sign =
MPFR_SIGNBIT
(mpc_realref (w));
47
a = (mpfr_inf_p (mpc_realref (z)) ?
MPFR_SIGNBIT
(mpc_realref (z)) : 0);
48
b = (mpfr_inf_p (mpc_imagref (z)) ?
MPFR_SIGNBIT
(mpc_imagref (z)) : 0);
163
int zrs =
MPFR_SIGNBIT
(mpc_realref (z));
164
int zis =
MPFR_SIGNBIT
(mpc_imagref (z));
165
int wrs =
MPFR_SIGNBIT
(mpc_realref (w));
166
int wis =
MPFR_SIGNBIT
(mpc_imagref (w));
197
int zrs =
MPFR_SIGNBIT
(mpc_realref (z));
198
int zis =
MPFR_SIGNBIT
(mpc_imagref (z));
199
int wrs =
MPFR_SIGNBIT
(mpc_realref (w))
[
all
...]
mpc-impl.h
55
#define
MPFR_SIGNBIT
(x) (
mpfr_signbit
(x) ? -1 : 1)
56
#define MPC_MPFR_SIGN(x) (mpfr_zero_p (x) ? 0 :
MPFR_SIGNBIT
(x))
mul.c
36
int xrs =
mpfr_signbit
(mpc_realref (x)) ? -1 : 1;
37
int xis =
mpfr_signbit
(mpc_imagref (x)) ? -1 : 1;
38
int yrs =
mpfr_signbit
(mpc_realref (y)) ? -1 : 1;
39
int yis =
mpfr_signbit
(mpc_imagref (y)) ? -1 : 1;
119
xrs =
MPFR_SIGNBIT
(mpc_realref (x));
120
xis =
MPFR_SIGNBIT
(mpc_imagref (x));
121
yrs =
MPFR_SIGNBIT
(mpc_realref (y));
122
yis =
MPFR_SIGNBIT
(mpc_imagref (y));
152
sign = (
MPFR_SIGNBIT
(mpc_realref (y)) !=
MPFR_SIGNBIT
(mpc_imagref (x))
[
all
...]
sin_cos.c
132
mpfr_signbit
(mpc_realref (op_loc)) ==
mpfr_signbit
(mpc_imagref (op_loc));
149
mpfr_signbit
(mpc_realref (op_loc)) ==
mpfr_signbit
(mpc_imagref (op_loc));
188
int sign_im =
mpfr_signbit
(mpc_imagref (op));
210
( ( sign_im && !
mpfr_signbit
(c))
211
|| (!sign_im &&
mpfr_signbit
(c)) ? -1 : 1));
218
( ( sign_im &&
mpfr_signbit
(s))
219
|| (!sign_im && !
mpfr_signbit
(s)) ? -1 : 1));
260
if (
mpfr_signbit
(mpc_realref (op_loc)) == mpfr_signbit (mpc_imagref (op_loc))
[
all
...]
tan.c
146
const int sign_re =
mpfr_signbit
(mpc_realref (op));
153
mpfr_signbit
(mpc_imagref (op)) ? -1 : +1,
179
mpfr_signbit
(c) !=
mpfr_signbit
(s), MPFR_RNDN);
182
(
mpfr_signbit
(mpc_imagref (op)) ? -1 : +1),
283
if (MPC_IS_LIKE_RNDZ(MPC_RND_IM(rnd),
MPFR_SIGNBIT
(mpc_imagref (rop))))
Completed in 35 milliseconds
Indexes created Thu Jul 09 00:25:44 UTC 2026