← Index
NYTProf Performance Profile   « line view »
For /usr/local/bin/sa-learn
  Run on Tue Nov 7 05:38:10 2017
Reported on Tue Nov 7 06:16:04 2017

Filename/usr/local/lib/perl5/5.24/mach/MIME/QuotedPrint.pm
StatementsExecuted 13 statements in 346µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11141µs59µsMIME::QuotedPrint::::BEGIN@3MIME::QuotedPrint::BEGIN@3
11130µs244µsMIME::QuotedPrint::::BEGIN@4MIME::QuotedPrint::BEGIN@4
11128µs192µsMIME::QuotedPrint::::BEGIN@12MIME::QuotedPrint::BEGIN@12
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
3270µs277µs
# spent 59µs (41+18) within MIME::QuotedPrint::BEGIN@3 which was called: # once (41µs+18µs) by Razor2::Preproc::deNewline::BEGIN@2 at line 3
use strict;
# spent 59µs making 1 call to MIME::QuotedPrint::BEGIN@3 # spent 18µs making 1 call to strict::import
42127µs2459µs
# spent 244µs (30+214) within MIME::QuotedPrint::BEGIN@4 which was called: # once (30µs+214µs) by Razor2::Preproc::deNewline::BEGIN@2 at line 4
use vars qw(@ISA @EXPORT $VERSION);
# spent 244µs making 1 call to MIME::QuotedPrint::BEGIN@4 # spent 214µs making 1 call to vars::import
5
612µsrequire Exporter;
7116µs@ISA = qw(Exporter);
813µs@EXPORT = qw(encode_qp decode_qp);
9
1012µs$VERSION = "3.13";
11
122104µs2355µs
# spent 192µs (28+164) within MIME::QuotedPrint::BEGIN@12 which was called: # once (28µs+164µs) by Razor2::Preproc::deNewline::BEGIN@2 at line 12
use MIME::Base64; # will load XS version of {en,de}code_qp()
# spent 192µs making 1 call to MIME::QuotedPrint::BEGIN@12 # spent 164µs making 1 call to Exporter::import
13
1417µs*encode = \&encode_qp;
1512µs*decode = \&decode_qp;
16
17113µs1;
18
19__END__