← Index
Performance Profile   « block view • line view • sub view »
For /wise/base/deliv/dev/bin/getfix
  Run on Thu May 20 15:30:03 2010
Reported on Thu May 20 16:25:31 2010

File/opt/wise/lib/perl5/5.10.0/locale.pm
Statements Executed5
Total Time1.3e-05 seconds

Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1111.1e-51.1e-5locale::import
1118.0e-68.0e-6locale::unimport

LineStmts.Exclusive
Time
Avg.Code
1package locale;
2
311.0e-61.0e-6our $VERSION = '1.00';
4
5=head1 NAME
6
7locale - Perl pragma to use and avoid POSIX locales for built-in operations
8
9=head1 SYNOPSIS
10
11 @x = sort @y; # ASCII sorting order
12 {
13 use locale;
14 @x = sort @y; # Locale-defined sorting order
15 }
16 @x = sort @y; # ASCII sorting order again
17
18=head1 DESCRIPTION
19
20This pragma tells the compiler to enable (or disable) the use of POSIX
21locales for built-in operations (LC_CTYPE for regular expressions, and
22LC_COLLATE for string comparison). Each "use locale" or "no locale"
23affects statements to the end of the enclosing BLOCK.
24
25See L<perllocale> for more detailed information on how Perl supports
26locales.
27
28=cut
29
3011.0e-61.0e-6$locale::hint_bits = 0x4;
31
32
# spent 11µs within locale::import which was called # once (11µs+0) by DBD::SQLite::dr::BEGIN or DBD::SQLite::dr::connect or DBD::SQLite::dr::__ANON__[/wise/base/static/lib/perl5/site_perl/5.10.0/x86_64-linux-thread-multi/DBD/SQLite.pm:91] at line 91 of /wise/base/static/lib/perl5/site_perl/5.10.0/x86_64-linux-thread-multi/DBD/SQLite.pm
sub import {
3314.0e-64.0e-6 $^H |= $locale::hint_bits;
34}
35
36
# spent 8µs within locale::unimport which was called # once (8µs+0) by DBIx::Class::Schema::load_classes at line 294 of /wise/base/static/lib/perl5/site_perl/5.10.0/DBIx/Class/Schema.pm
sub unimport {
3713.0e-63.0e-6 $^H &= ~$locale::hint_bits;
38}
39
4014.0e-64.0e-61;