← 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:01:06 2013

Filename/usr/lib/perl/5.10/MIME/Base64.pm
StatementsExecuted 15 statements in 395µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11119µs24µsMIME::Base64::::BEGIN@3MIME::Base64::BEGIN@3
1118µs55µsMIME::Base64::::BEGIN@4MIME::Base64::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::Base64;
2
3339µs228µs
# spent 24µs (19+4) within MIME::Base64::BEGIN@3 which was called: # once (19µs+4µs) by C4::Letters::BEGIN@23 at line 3
use strict;
# spent 24µs making 1 call to MIME::Base64::BEGIN@3 # spent 4µs making 1 call to strict::import
4379µs2102µs
# spent 55µs (8+47) within MIME::Base64::BEGIN@4 which was called: # once (8µs+47µs) by C4::Letters::BEGIN@23 at line 4
use vars qw(@ISA @EXPORT $VERSION);
# spent 55µs making 1 call to MIME::Base64::BEGIN@4 # spent 47µs making 1 call to vars::import
5
61800nsrequire Exporter;
718µs@ISA = qw(Exporter);
81700ns@EXPORT = qw(encode_base64 decode_base64);
9
101500ns$VERSION = '3.08';
11
121600nsrequire XSLoader;
131256µs1240µsXSLoader::load('MIME::Base64', $VERSION);
# spent 240µs making 1 call to XSLoader::load
14
1512µs*encode = \&encode_base64;
161500ns*decode = \&decode_base64;
17
1818µs1;
19
20__END__