HomeSort by: relevance | last modified time | path
    Searched refs:MPFR_SIGN_NEG (Results 1 - 18 of 18) sorted by relevancy

  /src/external/lgpl3/mpfr/dist/src/
setsign.c 30 return mpfr_set4 (z, x, rnd_mode, s ? MPFR_SIGN_NEG : MPFR_SIGN_POS);
33 MPFR_SET_SIGN (z, s ? MPFR_SIGN_NEG : MPFR_SIGN_POS);
check.c 44 MPFR_SIGN(x) != MPFR_SIGN_NEG)
add.c 73 MPFR_SIGN_NEG : MPFR_SIGN_POS) :
75 MPFR_SIGN_POS : MPFR_SIGN_NEG)));
constant.c 29 const mpfr_t __gmpfr_mone ={{2, MPFR_SIGN_NEG, 1, (mp_limb_t*)__gmpfr_limb1}};
set_si_2exp.c 65 MPFR_SET_SIGN (x, i < 0 ? MPFR_SIGN_NEG : MPFR_SIGN_POS);
stack_interface.c 78 s = MPFR_SIGN_NEG;
set_float128.c 128 MPFR_SET_SIGN (t, neg ? MPFR_SIGN_NEG : MPFR_SIGN_POS);
fma.c 81 MPFR_SIGN_NEG : MPFR_SIGN_POS) :
83 MPFR_SIGN_POS : MPFR_SIGN_NEG)));
set_z_2exp.c 44 MPFR_ASSERTD (sign_z == MPFR_SIGN_POS || sign_z == MPFR_SIGN_NEG);
set_d.c 321 (d < 0) ? MPFR_SIGN_NEG : MPFR_SIGN_POS);
rint.c 472 ? mpfr_overflow (r, rnd_mode, MPFR_SIGN_NEG)
set_ld.c 115 signd = MPFR_SIGN_NEG;
fpif.c 391 sign = (buffer[0] & 0x80) ? MPFR_SIGN_NEG : MPFR_SIGN_POS;
sum.c 645 MPFR_SIGN_POS : MPFR_SIGN_NEG));
663 MPFR_ASSERTN (sgn == (neg ? MPFR_SIGN_NEG : MPFR_SIGN_POS));
mpfr-impl.h 1137 #define MPFR_SIGN_NEG (-1)
1146 #define MPFR_SET_NEG(x) (MPFR_SIGN(x) = MPFR_SIGN_NEG)
1152 (MPFR_ASSERTD((s) == MPFR_SIGN_POS || (s) == MPFR_SIGN_NEG))
  /src/external/lgpl3/mpfr/dist/tests/
mpfr-test.h 150 #define RAND_SIGN() (RAND_BOOL() ? MPFR_SIGN_POS : MPFR_SIGN_NEG)
tgmpop.c 193 for (i = MPFR_SIGN_NEG ; i <= MPFR_SIGN_POS ;
194 i+=MPFR_SIGN_POS-MPFR_SIGN_NEG)
tsprintf.c 299 MPFR_SET_SIGN (x, neg ? MPFR_SIGN_NEG : MPFR_SIGN_POS);

Completed in 97 milliseconds