line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package KinoSearch1::Util::ToolSet; |
2
|
50
|
|
|
50
|
|
267
|
use strict; |
|
50
|
|
|
|
|
347
|
|
|
50
|
|
|
|
|
1947
|
|
3
|
50
|
|
|
50
|
|
277
|
use warnings; |
|
50
|
|
|
|
|
119
|
|
|
50
|
|
|
|
|
1288
|
|
4
|
50
|
|
|
50
|
|
61503
|
use bytes; |
|
50
|
|
|
|
|
526
|
|
|
50
|
|
|
|
|
272
|
|
5
|
50
|
|
|
50
|
|
1422
|
no bytes; |
|
50
|
|
|
|
|
134
|
|
|
50
|
|
|
|
|
206
|
|
6
|
|
|
|
|
|
|
|
7
|
50
|
|
|
50
|
|
1284
|
use base qw( Exporter ); |
|
50
|
|
|
|
|
98
|
|
|
50
|
|
|
|
|
7137
|
|
8
|
|
|
|
|
|
|
|
9
|
50
|
|
|
50
|
|
287
|
use Carp qw( carp croak cluck confess ); |
|
50
|
|
|
|
|
92
|
|
|
50
|
|
|
|
|
7459
|
|
10
|
|
|
|
|
|
|
# everything except readonly and set_prototype |
11
|
50
|
|
|
|
|
8714
|
use Scalar::Util qw( |
12
|
|
|
|
|
|
|
refaddr |
13
|
|
|
|
|
|
|
blessed |
14
|
|
|
|
|
|
|
dualvar |
15
|
|
|
|
|
|
|
isweak |
16
|
|
|
|
|
|
|
refaddr |
17
|
|
|
|
|
|
|
reftype |
18
|
|
|
|
|
|
|
tainted |
19
|
|
|
|
|
|
|
weaken |
20
|
|
|
|
|
|
|
isvstring |
21
|
|
|
|
|
|
|
looks_like_number |
22
|
50
|
|
|
50
|
|
300
|
); |
|
50
|
|
|
|
|
97
|
|
23
|
50
|
|
|
50
|
|
26001
|
use KinoSearch1 qw( K_DEBUG kdump ); |
|
50
|
|
|
|
|
137
|
|
|
50
|
|
|
|
|
5098
|
|
24
|
50
|
|
|
50
|
|
33761
|
use KinoSearch1::Util::VerifyArgs qw( verify_args kerror a_isa_b ); |
|
50
|
|
|
|
|
182
|
|
|
50
|
|
|
|
|
3732
|
|
25
|
50
|
|
|
50
|
|
28349
|
use KinoSearch1::Util::MathUtils qw( ceil ); |
|
50
|
|
|
|
|
119
|
|
|
50
|
|
|
|
|
5000
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
our @EXPORT = qw( |
28
|
|
|
|
|
|
|
carp |
29
|
|
|
|
|
|
|
croak |
30
|
|
|
|
|
|
|
cluck |
31
|
|
|
|
|
|
|
confess |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
refaddr |
34
|
|
|
|
|
|
|
blessed |
35
|
|
|
|
|
|
|
dualvar |
36
|
|
|
|
|
|
|
isweak |
37
|
|
|
|
|
|
|
refaddr |
38
|
|
|
|
|
|
|
reftype |
39
|
|
|
|
|
|
|
tainted |
40
|
|
|
|
|
|
|
weaken |
41
|
|
|
|
|
|
|
isvstring |
42
|
|
|
|
|
|
|
looks_like_number |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
K_DEBUG |
45
|
|
|
|
|
|
|
kdump |
46
|
|
|
|
|
|
|
kerror |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
verify_args |
49
|
|
|
|
|
|
|
a_isa_b |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
ceil |
52
|
|
|
|
|
|
|
); |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
1; |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
__END__ |