← Index
NYTProf Performance Profile   « line view »
For /usr/local/bin/sa-learn
  Run on Sun Nov 5 03:09:29 2017
Reported on Mon Nov 6 13:20:48 2017

Filename/usr/local/lib/perl5/5.24/mach/MIME/QuotedPrint.pm
StatementsExecuted 13 statements in 308µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11140µs51µsMIME::QuotedPrint::::BEGIN@3MIME::QuotedPrint::BEGIN@3
11134µs156µsMIME::QuotedPrint::::BEGIN@12MIME::QuotedPrint::BEGIN@12
11119µs170µ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
3263µs262µs
# spent 51µs (40+11) within MIME::QuotedPrint::BEGIN@3 which was called: # once (40µs+11µs) by Razor2::Preproc::deNewline::BEGIN@2 at line 3
use strict;
# spent 51µs making 1 call to MIME::QuotedPrint::BEGIN@3 # spent 11µs making 1 call to strict::import
42100µs2320µs
# spent 170µs (19+151) within MIME::QuotedPrint::BEGIN@4 which was called: # once (19µs+151µs) by Razor2::Preproc::deNewline::BEGIN@2 at line 4
use vars qw(@ISA @EXPORT $VERSION);
# spent 170µs making 1 call to MIME::QuotedPrint::BEGIN@4 # spent 151µs making 1 call to vars::import
5
613µsrequire Exporter;
7112µs@ISA = qw(Exporter);
812µs@EXPORT = qw(encode_qp decode_qp);
9
1012µs$VERSION = "3.13";
11
122107µs2278µs
# spent 156µs (34+122) within MIME::QuotedPrint::BEGIN@12 which was called: # once (34µs+122µs) by Razor2::Preproc::deNewline::BEGIN@2 at line 12
use MIME::Base64; # will load XS version of {en,de}code_qp()
# spent 156µs making 1 call to MIME::QuotedPrint::BEGIN@12 # spent 122µs making 1 call to Exporter::import
13
1413µs*encode = \&encode_qp;
1512µs*decode = \&decode_qp;
16
17113µs1;
18
19__END__