← 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:43 2013

Filename/usr/lib/perl/5.10/MIME/QuotedPrint.pm
StatementsExecuted 16 statements in 266µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11135µs81µsMIME::QuotedPrint::::BEGIN@3MIME::QuotedPrint::BEGIN@3
11115µs67µsMIME::QuotedPrint::::BEGIN@12MIME::QuotedPrint::BEGIN@12
11110µs96µ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
3386µs2128µs
# spent 81µs (35+47) within MIME::QuotedPrint::BEGIN@3 which was called: # once (35µs+47µs) by C4::Letters::BEGIN@23 at line 3
use strict;
# spent 81µs making 1 call to MIME::QuotedPrint::BEGIN@3 # spent 47µs making 1 call to strict::import
4392µs2181µs
# spent 96µs (10+85) within MIME::QuotedPrint::BEGIN@4 which was called: # once (10µs+85µs) by C4::Letters::BEGIN@23 at line 4
use vars qw(@ISA @EXPORT $VERSION);
# spent 96µs making 1 call to MIME::QuotedPrint::BEGIN@4 # spent 86µs making 1 call to vars::import
5
611µsrequire Exporter;
7114µs@ISA = qw(Exporter);
812µs@EXPORT = qw(encode_qp decode_qp);
9
101800ns$VERSION = "3.08";
11
12358µs2118µs
# spent 67µs (15+51) within MIME::QuotedPrint::BEGIN@12 which was called: # once (15µs+51µs) by C4::Letters::BEGIN@23 at line 12
use MIME::Base64; # will load XS version of {en,de}code_qp()
# spent 67µs making 1 call to MIME::QuotedPrint::BEGIN@12 # spent 52µs making 1 call to Exporter::import
13
1412µs*encode = \&encode_qp;
1511µs*decode = \&decode_qp;
16
1719µs1;
18
19__END__