mirror of
https://github.com/vale981/arb
synced 2025-03-04 17:01:40 -05:00
BLAH_INLINE long -> BLAH_INLINE slong in *.h.
This commit is contained in:
parent
d8609e002f
commit
75d3be4cd1
4 changed files with 8 additions and 8 deletions
6
acb.h
6
acb.h
|
@ -1000,14 +1000,14 @@ void acb_randtest_param(acb_t z, flint_rand_t state, slong prec, slong mag_bits)
|
|||
|
||||
slong acb_rel_error_bits(const acb_t x);
|
||||
|
||||
ACB_INLINE long
|
||||
ACB_INLINE slong
|
||||
acb_rel_accuracy_bits(const acb_t x)
|
||||
{
|
||||
return -acb_rel_error_bits(x);
|
||||
}
|
||||
|
||||
|
||||
ACB_INLINE long
|
||||
ACB_INLINE slong
|
||||
acb_bits(const acb_t x)
|
||||
{
|
||||
slong b1, b2;
|
||||
|
@ -1036,7 +1036,7 @@ _acb_vec_is_real(acb_srcptr v, slong len)
|
|||
return 1;
|
||||
}
|
||||
|
||||
ACB_INLINE long
|
||||
ACB_INLINE slong
|
||||
_acb_vec_bits(acb_srcptr vec, slong len)
|
||||
{
|
||||
return _arb_vec_bits((arb_srcptr) vec, 2 * len);
|
||||
|
|
6
arb.h
6
arb.h
|
@ -435,13 +435,13 @@ arb_get_abs_lbound_arf(arf_t u, const arb_t x, slong prec)
|
|||
|
||||
slong arb_rel_error_bits(const arb_t x);
|
||||
|
||||
ARB_INLINE long
|
||||
ARB_INLINE slong
|
||||
arb_rel_accuracy_bits(const arb_t x)
|
||||
{
|
||||
return -arb_rel_error_bits(x);
|
||||
}
|
||||
|
||||
ARB_INLINE long
|
||||
ARB_INLINE slong
|
||||
arb_bits(const arb_t x)
|
||||
{
|
||||
return arf_bits(arb_midref(x));
|
||||
|
@ -881,7 +881,7 @@ _arb_vec_get_mag(mag_t bound, arb_srcptr vec, slong len)
|
|||
}
|
||||
}
|
||||
|
||||
ARB_INLINE long
|
||||
ARB_INLINE slong
|
||||
_arb_vec_bits(arb_srcptr x, slong len)
|
||||
{
|
||||
slong i, b, c;
|
||||
|
|
|
@ -652,7 +652,7 @@ n_zerobits(mp_limb_t e)
|
|||
return zeros;
|
||||
}
|
||||
|
||||
ARB_POLY_INLINE long
|
||||
ARB_POLY_INLINE slong
|
||||
poly_pow_length(slong poly_len, ulong exp, slong trunc)
|
||||
{
|
||||
mp_limb_t hi, lo;
|
||||
|
|
2
arf.h
2
arf.h
|
@ -649,7 +649,7 @@ arf_abs(arf_t y, const arf_t x)
|
|||
arf_set(y, x);
|
||||
}
|
||||
|
||||
ARF_INLINE long
|
||||
ARF_INLINE slong
|
||||
arf_bits(const arf_t x)
|
||||
{
|
||||
if (arf_is_special(x))
|
||||
|
|
Loading…
Add table
Reference in a new issue