Searched refs:blimb (Results 1 - 3 of 3) sorted by relevance

/netbsd-current/external/lgpl3/gmp/dist/mpz/
H A Dui_pow_ui.c49 /* i386 gcc 2.95.3 doesn't recognise blimb can be eliminated when
50 mp_limb_t is an unsigned long, so only use a separate blimb when
52 mp_limb_t blimb = b; local
53 mpz_n_pow_ui (r, &blimb, (mp_size_t) (b != 0), e);
H A Dn_pow_ui.c67 The initial powering for bsize==1 into blimb or blimb:blimb_low doesn't
168 mp_limb_t blimb, rl; local
209 for (blimb = *bp; blimb == 0; blimb = *++bp)
217 count_trailing_zeros (btwos, blimb);
218 blimb >>= btwos;
242 /* Power up as far as possible within blimb. We start here with e!=0,
244 Notice this code works when blimb
[all...]
/netbsd-current/external/lgpl3/gmp/dist/mini-gmp/
H A Dmini-gmp.c3049 mpz_ui_pow_ui (mpz_t r, unsigned long blimb, unsigned long e)
3053 mpz_init_set_ui (b, blimb);
3035 mpz_ui_pow_ui(mpz_t r, unsigned long blimb, unsigned long e) argument

Completed in 126 milliseconds