← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/share/koha/opac/cgi-bin/opac/opac-search.pl
  Run on Tue Oct 15 17:10:45 2013
Reported on Tue Oct 15 17:12:22 2013

Filename/usr/share/perl5/DateTime/TimeZone/UTC.pm
StatementsExecuted 14 statements in 280µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11121µs26µsDateTime::TimeZone::UTC::::BEGIN@3DateTime::TimeZone::UTC::BEGIN@3
11114µs78µsDateTime::TimeZone::UTC::::BEGIN@9DateTime::TimeZone::UTC::BEGIN@9
11112µs52µsDateTime::TimeZone::UTC::::BEGIN@5DateTime::TimeZone::UTC::BEGIN@5
11111µs11µsDateTime::TimeZone::UTC::::BEGIN@8DateTime::TimeZone::UTC::BEGIN@8
0000s0sDateTime::TimeZone::UTC::::categoryDateTime::TimeZone::UTC::category
0000s0sDateTime::TimeZone::UTC::::is_dst_for_datetimeDateTime::TimeZone::UTC::is_dst_for_datetime
0000s0sDateTime::TimeZone::UTC::::is_utcDateTime::TimeZone::UTC::is_utc
0000s0sDateTime::TimeZone::UTC::::newDateTime::TimeZone::UTC::new
0000s0sDateTime::TimeZone::UTC::::offset_for_datetimeDateTime::TimeZone::UTC::offset_for_datetime
0000s0sDateTime::TimeZone::UTC::::offset_for_local_datetimeDateTime::TimeZone::UTC::offset_for_local_datetime
0000s0sDateTime::TimeZone::UTC::::short_name_for_datetimeDateTime::TimeZone::UTC::short_name_for_datetime
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package DateTime::TimeZone::UTC;
2
3335µs230µs
# spent 26µs (21+5) within DateTime::TimeZone::UTC::BEGIN@3 which was called: # once (21µs+5µs) by DateTime::TimeZone::OffsetOnly::BEGIN@11 at line 3
use strict;
# spent 26µs making 1 call to DateTime::TimeZone::UTC::BEGIN@3 # spent 5µs making 1 call to strict::import
4
5366µs292µs
# spent 52µs (12+40) within DateTime::TimeZone::UTC::BEGIN@5 which was called: # once (12µs+40µs) by DateTime::TimeZone::OffsetOnly::BEGIN@11 at line 5
use vars qw ($VERSION);
# spent 52µs making 1 call to DateTime::TimeZone::UTC::BEGIN@5 # spent 40µs making 1 call to vars::import
61600ns$VERSION = 0.01;
7
8339µs111µs
# spent 11µs within DateTime::TimeZone::UTC::BEGIN@8 which was called: # once (11µs+0s) by DateTime::TimeZone::OffsetOnly::BEGIN@11 at line 8
use DateTime::TimeZone;
# spent 11µs making 1 call to DateTime::TimeZone::UTC::BEGIN@8
93135µs278µs
# spent 78µs (14+63) within DateTime::TimeZone::UTC::BEGIN@9 which was called: # once (14µs+63µs) by DateTime::TimeZone::OffsetOnly::BEGIN@11 at line 9
use base 'DateTime::TimeZone';
# spent 78µs making 1 call to DateTime::TimeZone::UTC::BEGIN@9 # spent 63µs making 1 call to base::import, recursion: max depth 1, sum of overlapping time 63µs
10
11sub new {
12 my $class = shift;
13
14 return bless { name => 'UTC' }, $class;
15}
16
17sub is_dst_for_datetime {0}
18
19sub offset_for_datetime {0}
20sub offset_for_local_datetime {0}
21
22sub short_name_for_datetime {'UTC'}
23
24sub category {undef}
25
26sub is_utc {1}
27
2813µs1;
29
30__END__