summaryrefslogtreecommitdiff
path: root/set_si.c
blob: 3dccefc10b4e99fcf6cc37539993a503dad43d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include "gmp.h"
#include "gmp-impl.h"
#include "longlong.h"
#include "mpfr.h"

void
mpfr_set_si(mpfr_ptr x, long i, unsigned char rnd_mode)
{
  unsigned long xsize, ai, cnt; 

  xsize = ABSSIZE(x);
  ai = ABS(i); 

  count_leading_zeros(cnt, ai); 

  x -> _mp_d[xsize - 1] = ai << cnt;
  /* don't forget to put zero in lower limbs */
  MPN_ZERO(MANT(x), xsize-1);
  x -> _mp_exp = BITS_PER_MP_LIMB - cnt;
  /* warning: don't change the precision of x! */
  x -> _mp_size = xsize; if (i < 0) CHANGE_SIGN(x);

  return; 
}

void
mpfr_set_ui(mpfr_ptr x, unsigned long i, unsigned char rnd_mode)
{
  unsigned int xsize, cnt; 

  xsize = ABSSIZE(x);
  count_leading_zeros(cnt, i); 

  x -> _mp_d[xsize - 1] = i << cnt; 
  /* don't forget to put zero in lower limbs */
  MPN_ZERO(MANT(x), xsize-1);
  x -> _mp_exp = BITS_PER_MP_LIMB - cnt;
  /* warning: don't change the precision of x! */
  x -> _mp_size = xsize; 

  return; 
}