hammer(8): Add inline keywords in two prototypes of inline functions.
[dragonfly.git] / contrib / gmp / mpf / random2.c
blobd1bef107243a2af524a4719411cf1bfe5ed198bc
1 /* mpf_random2 -- Generate a positive random mpf_t of specified size, with
2 long runs of consecutive ones and zeros in the binary representation.
3 Intended for testing of other MP routines.
5 Copyright 1995, 1996, 2001, 2002, 2003 Free Software Foundation, Inc.
7 This file is part of the GNU MP Library.
9 The GNU MP Library is free software; you can redistribute it and/or modify
10 it under the terms of the GNU Lesser General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or (at your
12 option) any later version.
14 The GNU MP Library is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
17 License for more details.
19 You should have received a copy of the GNU Lesser General Public License
20 along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
22 #include "gmp.h"
23 #include "gmp-impl.h"
26 void
27 mpf_random2 (mpf_ptr x, mp_size_t xs, mp_exp_t exp)
29 mp_size_t xn;
30 mp_size_t prec;
31 mp_limb_t elimb;
33 xn = ABS (xs);
34 prec = PREC(x);
36 if (xn == 0)
38 EXP(x) = 0;
39 SIZ(x) = 0;
40 return;
43 if (xn > prec + 1)
44 xn = prec + 1;
46 /* General random mantissa. */
47 mpn_random2 (PTR(x), xn);
49 /* Generate random exponent. */
50 _gmp_rand (&elimb, RANDS, GMP_NUMB_BITS);
51 exp = ABS (exp);
52 exp = elimb % (2 * exp + 1) - exp;
54 EXP(x) = exp;
55 SIZ(x) = xs < 0 ? -xn : xn;