line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Math::Random::ISAAC::XS; |
2
|
|
|
|
|
|
|
BEGIN { |
3
|
5
|
|
|
5
|
|
127648
|
$Math::Random::ISAAC::XS::VERSION = '1.004'; |
4
|
|
|
|
|
|
|
} |
5
|
|
|
|
|
|
|
# ABSTRACT: C implementation of the ISAAC PRNG algorithm |
6
|
|
|
|
|
|
|
|
7
|
5
|
|
|
5
|
|
49
|
use strict; |
|
5
|
|
|
|
|
9
|
|
|
5
|
|
|
|
|
156
|
|
8
|
5
|
|
|
5
|
|
28
|
use warnings; |
|
5
|
|
|
|
|
12
|
|
|
5
|
|
|
|
|
153
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
# This is the code that actually bootstraps the module and exposes |
12
|
|
|
|
|
|
|
# the interface for the user. XSLoader is believed to be more |
13
|
|
|
|
|
|
|
# memory efficient than DynaLoader. |
14
|
5
|
|
|
5
|
|
39
|
use XSLoader; |
|
5
|
|
|
|
|
14
|
|
|
5
|
|
|
|
|
223
|
|
15
|
|
|
|
|
|
|
XSLoader::load(__PACKAGE__, $Math::Random::ISAAC::XS::VERSION); |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
__END__ |