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

  /src/external/lgpl3/gmp/dist/tests/cxx/
t-misc.cc 61 // mpz_class::fits_slong_p
65 z = LONG_MIN; fits = z.fits_slong_p(); ASSERT_ALWAYS (fits);
66 z--; fits = z.fits_slong_p(); ASSERT_ALWAYS (! fits);
67 z = LONG_MAX; fits = z.fits_slong_p(); ASSERT_ALWAYS (fits);
68 z++; fits = z.fits_slong_p(); ASSERT_ALWAYS (! fits);
261 // mpf_class::fits_slong_p
265 f = LONG_MIN; fits = f.fits_slong_p(); ASSERT_ALWAYS (fits);
266 f--; fits = f.fits_slong_p(); ASSERT_ALWAYS (! fits);
267 f = LONG_MAX; fits = f.fits_slong_p(); ASSERT_ALWAYS (fits);
268 f++; fits = f.fits_slong_p(); ASSERT_ALWAYS (! fits)
    [all...]
  /src/external/lgpl3/gmp/dist/demos/perl/
test.pl 1833 # GMP::fits_slong_p
1835 ok (GMP::fits_slong_p(0));
1839 # ok (! GMP::fits_slong_p($uv_max));
1841 ok (GMP::fits_slong_p(0.0));
1843 ok (GMP::fits_slong_p('0'));
1845 ok (GMP::fits_slong_p(substr('999999999999999999999999999999',1,1)));
1847 ok (! mpz("-9999999999999999999999999999999999999999999")->fits_slong_p());
1848 ok ( mpz(-123)->fits_slong_p());
1849 ok ( mpz(0)->fits_slong_p());
1850 ok ( mpz(123)->fits_slong_p());
    [all...]
GMP.pm 361 fits_slong_p, get_d, get_d_2exp, get_si, get_str, integer_p, printf, sgn,
GMP.xs 977 fits_slong_p (sv)
1010 croak ("GMP::fits_slong_p invalid string format");
1029 croak ("GMP::fits_slong_p invalid argument");
  /src/external/lgpl3/gmp/dist/
gmpxx.h 1724 bool fits_slong_p() const { return mpz_fits_slong_p(mp); } function in class:__gmp_expr
2124 bool fits_slong_p() const { return mpf_fits_slong_p(mp); } function in class:__gmp_expr

Completed in 130 milliseconds