Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
c7ce1b20
T
Third Party Musl
项目概览
OpenHarmony
/
Third Party Musl
大约 1 年 前同步成功
通知
37
Star
125
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Musl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
You need to sign in or sign up before continuing.
提交
c7ce1b20
编写于
6月 23, 2011
作者:
R
Rich Felker
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
initial commit of prng implementation by Szabolcs Nagy
上级
d19adeec
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
111 addition
and
12 deletion
+111
-12
COPYRIGHT
COPYRIGHT
+4
-0
src/prng/random.c
src/prng/random.c
+107
-4
src/prng/srandom.c
src/prng/srandom.c
+0
-8
未找到文件。
COPYRIGHT
浏览文件 @
c7ce1b20
...
@@ -23,6 +23,10 @@ The smoothsort implementation (src/stdlib/qsort.c) is Copyright © 2011
...
@@ -23,6 +23,10 @@ The smoothsort implementation (src/stdlib/qsort.c) is Copyright © 2011
Valentin Ochs and is licensed under an MIT-style license compatible
Valentin Ochs and is licensed under an MIT-style license compatible
with the GNU LGPL.
with the GNU LGPL.
The BSD PRNG implementation (src/prng/random.c) is Copyright © 2011
Szabolcs Nagy and is licensed under very permissive terms (see the
source).
The x86_64 port was written by Nicholas J. Kain. See individual files
The x86_64 port was written by Nicholas J. Kain. See individual files
for their copyright status.
for their copyright status.
...
...
src/prng/random.c
浏览文件 @
c7ce1b20
/*
* random.c - Copyright © 2011 Szabolcs Nagy
* Permission to use, copy, modify, and/or distribute this code
* for any purpose with or without fee is hereby granted.
* There is no warranty.
*/
#include <stdlib.h>
#include <stdlib.h>
#include <stdint.h>
/*
this code uses the same lagged fibonacci generator as the
original bsd random implementation except for the seeding
different seeds produce different sequences with long period
(other libcs seed the state with a park-miller generator
when seed=0 some fail to produce good random sequence
others produce the same sequence as another seed)
*/
static
uint32_t
init
[]
=
{
0x00000000
,
0x5851f42d
,
0xc0b18ccf
,
0xcbb5f646
,
0xc7033129
,
0x30705b04
,
0x20fd5db4
,
0x9a8b7f78
,
0x502959d8
,
0xab894868
,
0x6c0356a7
,
0x88cdb7ff
,
0xb477d43f
,
0x70a3a52b
,
0xa8e4baf1
,
0xfd8341fc
,
0x8ae16fd9
,
0x742d2f7a
,
0x0d1f0796
,
0x76035e09
,
0x40f7702c
,
0x6fa72ca5
,
0xaaa84157
,
0x58a0df74
,
0xc74a0364
,
0xae533cc4
,
0x04185faf
,
0x6de3b115
,
0x0cab8628
,
0xf043bfa4
,
0x398150e9
,
0x37521657
};
static
int
n
=
31
;
static
int
i
=
3
;
static
int
j
=
0
;
static
uint32_t
*
x
=
init
+
1
;
static
uint32_t
lcg31
(
uint32_t
x
)
{
return
(
1103515245
*
x
+
12345
)
&
0x7fffffff
;
}
static
uint64_t
lcg64
(
uint64_t
x
)
{
return
6364136223846793005ull
*
x
+
1
;
}
static
void
*
savestate
()
{
x
[
-
1
]
=
(
n
<<
16
)
|
(
i
<<
8
)
|
j
;
return
x
-
1
;
}
static
void
loadstate
(
uint32_t
*
state
)
{
x
=
state
+
1
;
n
=
x
[
-
1
]
>>
16
;
i
=
(
x
[
-
1
]
>>
8
)
&
0xff
;
j
=
x
[
-
1
]
&
0xff
;
}
void
srandom
(
unsigned
seed
)
{
int
k
;
uint64_t
s
=
seed
;
if
(
n
==
0
)
{
x
[
0
]
=
s
;
return
;
}
i
=
n
==
31
||
n
==
7
?
3
:
1
;
j
=
0
;
for
(
k
=
0
;
k
<
n
;
k
++
)
{
s
=
lcg64
(
s
);
x
[
k
]
=
s
>>
32
;
}
/* make sure x contains at least one odd number */
x
[
0
]
|=
1
;
}
char
*
initstate
(
unsigned
seed
,
char
*
state
,
size_t
size
)
{
void
*
old
=
savestate
();
if
(
size
<
8
)
return
0
;
else
if
(
size
<
32
)
n
=
0
;
else
if
(
size
<
64
)
n
=
7
;
else
if
(
size
<
128
)
n
=
15
;
else
if
(
size
<
256
)
n
=
31
;
else
n
=
63
;
x
=
(
uint32_t
*
)
state
+
1
;
srandom
(
seed
);
return
old
;
}
char
*
setstate
(
char
*
state
)
{
void
*
old
=
savestate
();
loadstate
((
uint32_t
*
)
state
);
return
old
;
}
/* FIXME */
long
random
(
void
)
{
long
k
;
long
random
()
if
(
n
==
0
)
{
return
x
[
0
]
=
lcg31
(
x
[
0
]);
return
rand
();
x
[
i
]
+=
x
[
j
];
k
=
x
[
i
]
>>
1
;
if
(
++
i
==
n
)
i
=
0
;
if
(
++
j
==
n
)
j
=
0
;
return
k
;
}
}
src/prng/srandom.c
已删除
100644 → 0
浏览文件 @
d19adeec
#include <stdlib.h>
/* FIXME */
void
srandom
(
unsigned
seed
)
{
return
srand
(
seed
);
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录