forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrand.c
106 lines (96 loc) · 3.05 KB
/
rand.c
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*****************************************************************************
* rand.c : non-predictible random bytes generator
*****************************************************************************
* Copyright © 2007 Rémi Denis-Courmont
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
#include <vlc_rand.h>
static struct
{
bool init;
unsigned short subi[3];
vlc_mutex_t lock;
} rand48 = { false, { 0, 0, 0, }, VLC_STATIC_MUTEX, };
static void init_rand48 (void)
{
if (!rand48.init)
{
vlc_rand_bytes (rand48.subi, sizeof (rand48.subi));
rand48.init = true;
#if 0 // short would be more than 16-bits ?
for (unsigned i = 0; i < 3; i++)
subi[i] &= 0xffff;
#endif
}
}
/**
* PRNG uniformly distributed between 0.0 and 1.0 with 48-bits precision.
*
* @note Contrary to POSIX drand48(), this function is thread-safe.
* @warning Series generated by this function are not reproducible.
* Use erand48() if you need reproducible series.
*
* @return a double value within [0.0, 1.0] inclusive
*/
double vlc_drand48 (void)
{
double ret;
vlc_mutex_lock (&rand48.lock);
init_rand48 ();
ret = erand48 (rand48.subi);
vlc_mutex_unlock (&rand48.lock);
return ret;
}
/**
* PRNG uniformly distributed between 0 and 2^32 - 1.
*
* @note Contrary to POSIX lrand48(), this function is thread-safe.
* @warning Series generated by this function are not reproducible.
* Use nrand48() if you need reproducible series.
*
* @return an integral value within [0.0, 2^32-1] inclusive
*/
long vlc_lrand48 (void)
{
long ret;
vlc_mutex_lock (&rand48.lock);
init_rand48 ();
ret = nrand48 (rand48.subi);
vlc_mutex_unlock (&rand48.lock);
return ret;
}
/**
* PRNG uniformly distributed between -2^32 and 2^32 - 1.
*
* @note Contrary to POSIX mrand48(), this function is thread-safe.
* @warning Series generated by this function are not reproducible.
* Use jrand48() if you need reproducible series.
*
* @return an integral value within [-2^32, 2^32-1] inclusive
*/
long vlc_mrand48 (void)
{
long ret;
vlc_mutex_lock (&rand48.lock);
init_rand48 ();
ret = jrand48 (rand48.subi);
vlc_mutex_unlock (&rand48.lock);
return ret;
}