← 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 11:58:52 2013
Reported on Tue Oct 15 12:02:18 2013

Filename/usr/lib/perl/5.10/MIME/QuotedPrint.pm
StatementsExecuted 16 statements in 152µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11122µs27µsMIME::QuotedPrint::::BEGIN@3MIME::QuotedPrint::BEGIN@3
11111µs57µsMIME::QuotedPrint::::BEGIN@12MIME::QuotedPrint::BEGIN@12
1118µs62µsMIME::QuotedPrint::::BEGIN@4MIME::QuotedPrint::BEGIN@4
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package MIME::QuotedPrint;
2
3333µs231µs
# spent 27µs (22+4) within MIME::QuotedPrint::BEGIN@3 which was called: # once (22µs+4µs) by C4::Letters::BEGIN@23 at line 3
use strict;
# spent 27µs making 1 call to MIME::QuotedPrint::BEGIN@3 # spent 4µs making 1 call to strict::import
4360µs2116µs
# spent 62µs (8+54) within MIME::QuotedPrint::BEGIN@4 which was called: # once (8µs+54µs) by C4::Letters::BEGIN@23 at line 4
use vars qw(@ISA @EXPORT $VERSION);
# spent 62µs making 1 call to MIME::QuotedPrint::BEGIN@4 # spent 54µs making 1 call to vars::import
5
61900nsrequire Exporter;
718µs@ISA = qw(Exporter);
81800ns@EXPORT = qw(encode_qp decode_qp);
9
101400ns$VERSION = "3.08";
11
12342µs2103µs
# spent 57µs (11+46) within MIME::QuotedPrint::BEGIN@12 which was called: # once (11µs+46µs) by C4::Letters::BEGIN@23 at line 12
use MIME::Base64; # will load XS version of {en,de}code_qp()
# spent 57µs making 1 call to MIME::QuotedPrint::BEGIN@12 # spent 46µs making 1 call to Exporter::import
13
1411µs*encode = \&encode_qp;
151600ns*decode = \&decode_qp;
16
1715µs1;
18
19__END__