← Index
NYTProf Performance Profile   « line view »
For flows_to_es.pl
  Run on Mon May 9 23:27:59 2016
Reported on Mon May 9 23:28:09 2016

Filename/usr/share/perl/5.18/integer.pm
StatementsExecuted 4 statements in 10µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1113µs3µsinteger::::importinteger::import
0000s0sinteger::::unimportinteger::unimport
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package integer;
2
31500nsour $VERSION = '1.00';
4
51200ns$integer::hint_bits = 0x1;
6
7
# spent 3µs within integer::import which was called: # once (3µs+0s) by URI::_punycode::BEGIN@10 at line 10 of URI/_punycode.pm
sub import {
817µs $^H |= $integer::hint_bits;
9}
10
11sub unimport {
12 $^H &= ~$integer::hint_bits;
13}
14
1513µs1;