lib/Crypt/xxHash.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 14 | 14 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | n/a | ||
total | 19 | 19 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Crypt::xxHash; | ||||||
2 | 1 | 1 | 70444 | use strict; | |||
1 | 2 | ||||||
1 | 30 | ||||||
3 | 1 | 1 | 5 | use base qw(Exporter); | |||
1 | 2 | ||||||
1 | 162 | ||||||
4 | 1 | 1 | 6 | use Config (); | |||
1 | 2 | ||||||
1 | 12 | ||||||
5 | 1 | 1 | 4 | use XSLoader; | |||
1 | 1 | ||||||
1 | 41 | ||||||
6 | |||||||
7 | BEGIN { | ||||||
8 | 1 | 1 | 2 | our $VERSION = '0.02'; | |||
9 | 1 | 560 | XSLoader::load __PACKAGE__, $VERSION; | ||||
10 | } | ||||||
11 | |||||||
12 | our @EXPORT_OK = qw[ | ||||||
13 | xxhash32 xxhash32_hex | ||||||
14 | xxhash64 xxhash64_hex | ||||||
15 | xxhash3_64bits xxhash3_64bits_hex | ||||||
16 | xxhash3_128bits_hex | ||||||
17 | ]; | ||||||
18 | |||||||
19 | 1; | ||||||
20 | __END__ |