← Index
NYTProf Performance Profile   « line view »
For /home/ss5/perl5/perlbrew/perls/perl-5.22.0/bin/benchmarkanything-storage
  Run on Mon Jan 29 16:55:34 2018
Reported on Mon Jan 29 16:57:07 2018

Filename/home/ss5/perl5/perlbrew/perls/perl-5.22.0/lib/5.22.0/IO/Compress/Zlib/Constants.pm
StatementsExecuted 49 statements in 363µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11113µs27µsIO::Compress::Zlib::Constants::::BEGIN@70IO::Compress::Zlib::Constants::BEGIN@70
1118µs10µsIO::Compress::Zlib::Constants::::BEGIN@4IO::Compress::Zlib::Constants::BEGIN@4
1114µs28µsIO::Compress::Zlib::Constants::::BEGIN@49IO::Compress::Zlib::Constants::BEGIN@49
1114µs20µsIO::Compress::Zlib::Constants::::BEGIN@69IO::Compress::Zlib::Constants::BEGIN@69
1114µs20µsIO::Compress::Zlib::Constants::::BEGIN@50IO::Compress::Zlib::Constants::BEGIN@50
1114µs16µsIO::Compress::Zlib::Constants::::BEGIN@60IO::Compress::Zlib::Constants::BEGIN@60
1114µs17µsIO::Compress::Zlib::Constants::::BEGIN@63IO::Compress::Zlib::Constants::BEGIN@63
1114µs4µsIO::Compress::Zlib::Constants::::BEGIN@6IO::Compress::Zlib::Constants::BEGIN@6
1114µs18µsIO::Compress::Zlib::Constants::::BEGIN@64IO::Compress::Zlib::Constants::BEGIN@64
1114µs17µsIO::Compress::Zlib::Constants::::BEGIN@74IO::Compress::Zlib::Constants::BEGIN@74
1114µs7µsIO::Compress::Zlib::Constants::::BEGIN@5IO::Compress::Zlib::Constants::BEGIN@5
1114µs18µsIO::Compress::Zlib::Constants::::BEGIN@52IO::Compress::Zlib::Constants::BEGIN@52
1114µs17µsIO::Compress::Zlib::Constants::::BEGIN@61IO::Compress::Zlib::Constants::BEGIN@61
1114µs19µsIO::Compress::Zlib::Constants::::BEGIN@54IO::Compress::Zlib::Constants::BEGIN@54
1114µs18µsIO::Compress::Zlib::Constants::::BEGIN@66IO::Compress::Zlib::Constants::BEGIN@66
1113µs17µsIO::Compress::Zlib::Constants::::BEGIN@57IO::Compress::Zlib::Constants::BEGIN@57
1113µs16µsIO::Compress::Zlib::Constants::::BEGIN@58IO::Compress::Zlib::Constants::BEGIN@58
1113µs18µsIO::Compress::Zlib::Constants::::BEGIN@56IO::Compress::Zlib::Constants::BEGIN@56
1113µs18µsIO::Compress::Zlib::Constants::::BEGIN@53IO::Compress::Zlib::Constants::BEGIN@53
1113µs18µsIO::Compress::Zlib::Constants::::BEGIN@72IO::Compress::Zlib::Constants::BEGIN@72
1113µs16µsIO::Compress::Zlib::Constants::::BEGIN@67IO::Compress::Zlib::Constants::BEGIN@67
1113µs16µsIO::Compress::Zlib::Constants::::BEGIN@71IO::Compress::Zlib::Constants::BEGIN@71
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1
2package IO::Compress::Zlib::Constants ;
3
4214µs211µs
# spent 10µs (8+2) within IO::Compress::Zlib::Constants::BEGIN@4 which was called: # once (8µs+2µs) by IO::Compress::Deflate::BEGIN@14 at line 4
use strict ;
# spent 10µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@4 # spent 2µs making 1 call to strict::import
5211µs210µs
# spent 7µs (4+3) within IO::Compress::Zlib::Constants::BEGIN@5 which was called: # once (4µs+3µs) by IO::Compress::Deflate::BEGIN@14 at line 5
use warnings;
# spent 7µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@5 # spent 3µs making 1 call to warnings::import
6259µs25µs
# spent 4µs (4+700ns) within IO::Compress::Zlib::Constants::BEGIN@6 which was called: # once (4µs+700ns) by IO::Compress::Deflate::BEGIN@14 at line 6
use bytes;
# spent 4µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@6 # spent 700ns making 1 call to bytes::import
7
81200nsrequire Exporter;
9
10our ($VERSION, @ISA, @EXPORT);
11
121300ns$VERSION = '2.068';
13
1413µs@ISA = qw(Exporter);
15
1611µs@EXPORT= qw(
17
18 ZLIB_HEADER_SIZE
19 ZLIB_TRAILER_SIZE
20
21 ZLIB_CMF_CM_OFFSET
22 ZLIB_CMF_CM_BITS
23 ZLIB_CMF_CM_DEFLATED
24
25 ZLIB_CMF_CINFO_OFFSET
26 ZLIB_CMF_CINFO_BITS
27 ZLIB_CMF_CINFO_MAX
28
29 ZLIB_FLG_FCHECK_OFFSET
30 ZLIB_FLG_FCHECK_BITS
31
32 ZLIB_FLG_FDICT_OFFSET
33 ZLIB_FLG_FDICT_BITS
34
35 ZLIB_FLG_LEVEL_OFFSET
36 ZLIB_FLG_LEVEL_BITS
37
38 ZLIB_FLG_LEVEL_FASTEST
39 ZLIB_FLG_LEVEL_FAST
40 ZLIB_FLG_LEVEL_DEFAULT
41 ZLIB_FLG_LEVEL_SLOWEST
42
43 ZLIB_FDICT_SIZE
44
45 );
46
47# Constant names derived from RFC1950
48
49217µs252µs
# spent 28µs (4+24) within IO::Compress::Zlib::Constants::BEGIN@49 which was called: # once (4µs+24µs) by IO::Compress::Deflate::BEGIN@14 at line 49
use constant ZLIB_HEADER_SIZE => 2;
# spent 28µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@49 # spent 24µs making 1 call to constant::import
50213µs237µs
# spent 20µs (4+16) within IO::Compress::Zlib::Constants::BEGIN@50 which was called: # once (4µs+16µs) by IO::Compress::Deflate::BEGIN@14 at line 50
use constant ZLIB_TRAILER_SIZE => 4;
# spent 20µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@50 # spent 16µs making 1 call to constant::import
51
52212µs233µs
# spent 18µs (4+14) within IO::Compress::Zlib::Constants::BEGIN@52 which was called: # once (4µs+14µs) by IO::Compress::Deflate::BEGIN@14 at line 52
use constant ZLIB_CMF_CM_OFFSET => 0;
# spent 18µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@52 # spent 14µs making 1 call to constant::import
53212µs232µs
# spent 18µs (3+14) within IO::Compress::Zlib::Constants::BEGIN@53 which was called: # once (3µs+14µs) by IO::Compress::Deflate::BEGIN@14 at line 53
use constant ZLIB_CMF_CM_BITS => 0xF ; # 0b1111
# spent 18µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@53 # spent 14µs making 1 call to constant::import
54212µs235µs
# spent 19µs (4+16) within IO::Compress::Zlib::Constants::BEGIN@54 which was called: # once (4µs+16µs) by IO::Compress::Deflate::BEGIN@14 at line 54
use constant ZLIB_CMF_CM_DEFLATED => 8;
# spent 19µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@54 # spent 16µs making 1 call to constant::import
55
56214µs232µs
# spent 18µs (3+14) within IO::Compress::Zlib::Constants::BEGIN@56 which was called: # once (3µs+14µs) by IO::Compress::Deflate::BEGIN@14 at line 56
use constant ZLIB_CMF_CINFO_OFFSET => 4;
# spent 18µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@56 # spent 14µs making 1 call to constant::import
57212µs231µs
# spent 17µs (3+14) within IO::Compress::Zlib::Constants::BEGIN@57 which was called: # once (3µs+14µs) by IO::Compress::Deflate::BEGIN@14 at line 57
use constant ZLIB_CMF_CINFO_BITS => 0xF ; # 0b1111;
# spent 17µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@57 # spent 14µs making 1 call to constant::import
58212µs229µs
# spent 16µs (3+13) within IO::Compress::Zlib::Constants::BEGIN@58 which was called: # once (3µs+13µs) by IO::Compress::Deflate::BEGIN@14 at line 58
use constant ZLIB_CMF_CINFO_MAX => 7;
# spent 16µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@58 # spent 13µs making 1 call to constant::import
59
60212µs229µs
# spent 16µs (4+13) within IO::Compress::Zlib::Constants::BEGIN@60 which was called: # once (4µs+13µs) by IO::Compress::Deflate::BEGIN@14 at line 60
use constant ZLIB_FLG_FCHECK_OFFSET => 0;
# spent 16µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@60 # spent 13µs making 1 call to constant::import
61214µs231µs
# spent 17µs (4+14) within IO::Compress::Zlib::Constants::BEGIN@61 which was called: # once (4µs+14µs) by IO::Compress::Deflate::BEGIN@14 at line 61
use constant ZLIB_FLG_FCHECK_BITS => 0x1F ; # 0b11111;
# spent 17µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@61 # spent 14µs making 1 call to constant::import
62
63214µs231µs
# spent 17µs (4+14) within IO::Compress::Zlib::Constants::BEGIN@63 which was called: # once (4µs+14µs) by IO::Compress::Deflate::BEGIN@14 at line 63
use constant ZLIB_FLG_FDICT_OFFSET => 5;
# spent 17µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@63 # spent 14µs making 1 call to constant::import
64212µs233µs
# spent 18µs (4+15) within IO::Compress::Zlib::Constants::BEGIN@64 which was called: # once (4µs+15µs) by IO::Compress::Deflate::BEGIN@14 at line 64
use constant ZLIB_FLG_FDICT_BITS => 0x1 ; # 0b1;
# spent 18µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@64 # spent 15µs making 1 call to constant::import
65
66212µs232µs
# spent 18µs (4+14) within IO::Compress::Zlib::Constants::BEGIN@66 which was called: # once (4µs+14µs) by IO::Compress::Deflate::BEGIN@14 at line 66
use constant ZLIB_FLG_LEVEL_OFFSET => 6;
# spent 18µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@66 # spent 14µs making 1 call to constant::import
67222µs229µs
# spent 16µs (3+13) within IO::Compress::Zlib::Constants::BEGIN@67 which was called: # once (3µs+13µs) by IO::Compress::Deflate::BEGIN@14 at line 67
use constant ZLIB_FLG_LEVEL_BITS => 0x3 ; # 0b11;
# spent 16µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@67 # spent 13µs making 1 call to constant::import
68
69223µs235µs
# spent 20µs (4+16) within IO::Compress::Zlib::Constants::BEGIN@69 which was called: # once (4µs+16µs) by IO::Compress::Deflate::BEGIN@14 at line 69
use constant ZLIB_FLG_LEVEL_FASTEST => 0;
# spent 20µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@69 # spent 16µs making 1 call to constant::import
70212µs241µs
# spent 27µs (13+14) within IO::Compress::Zlib::Constants::BEGIN@70 which was called: # once (13µs+14µs) by IO::Compress::Deflate::BEGIN@14 at line 70
use constant ZLIB_FLG_LEVEL_FAST => 1;
# spent 27µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@70 # spent 14µs making 1 call to constant::import
71211µs228µs
# spent 16µs (3+13) within IO::Compress::Zlib::Constants::BEGIN@71 which was called: # once (3µs+13µs) by IO::Compress::Deflate::BEGIN@14 at line 71
use constant ZLIB_FLG_LEVEL_DEFAULT => 2;
# spent 16µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@71 # spent 13µs making 1 call to constant::import
72212µs232µs
# spent 18µs (3+15) within IO::Compress::Zlib::Constants::BEGIN@72 which was called: # once (3µs+15µs) by IO::Compress::Deflate::BEGIN@14 at line 72
use constant ZLIB_FLG_LEVEL_SLOWEST => 3;
# spent 18µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@72 # spent 15µs making 1 call to constant::import
73
74221µs230µs
# spent 17µs (4+13) within IO::Compress::Zlib::Constants::BEGIN@74 which was called: # once (4µs+13µs) by IO::Compress::Deflate::BEGIN@14 at line 74
use constant ZLIB_FDICT_SIZE => 4;
# spent 17µs making 1 call to IO::Compress::Zlib::Constants::BEGIN@74 # spent 13µs making 1 call to constant::import
75
76
7714µs1;