Home | History | Annotate | Download | only in mpz

Lines Matching refs:dest

1 /* mpz_init_set_ui(dest,val) -- Make a new multiple precision in DEST and
35 mpz_init_set_ui (mpz_ptr dest, unsigned long int val)
42 ALLOC (dest) = 2;
43 PTR (dest) = __GMP_ALLOCATE_FUNC_LIMBS (2);
44 PTR (dest)[1] = val >> GMP_NUMB_BITS;
50 ALLOC (dest) = 1;
51 PTR (dest) = __GMP_ALLOCATE_FUNC_LIMBS (1);
55 PTR (dest)[0] = val & GMP_NUMB_MASK;
57 SIZ (dest) = size;