OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:time_unit
(Results
1 - 5
of
5
) sorted by null
/external/valgrind/main/massif/
ms_print
41
my $
time_unit
;
383
# Read "
time_unit
:" line.
385
($line =~ /^
time_unit
:\s*(.*)$/) or
386
die("Line $.: missing '
time_unit
' line\n");
387
$
time_unit
= $1;
395
my $time_column = sprintf("%14s", "time($
time_unit
)");
601
if ($
time_unit
eq "i") { ($x_label, $x_unit) = i_max_label($end_time) }
602
elsif ($
time_unit
eq "ms") { ($x_label, $x_unit) = t_max_label($end_time) }
603
elsif ($
time_unit
eq "B") { ($x_label, $x_unit) = B_max_label($end_time) }
604
else { die "bad
time_unit
: $time_unit\n";
[
all
...]
ms_print.in
41
my $
time_unit
;
383
# Read "
time_unit
:" line.
385
($line =~ /^
time_unit
:\s*(.*)$/) or
386
die("Line $.: missing '
time_unit
' line\n");
387
$
time_unit
= $1;
395
my $time_column = sprintf("%14s", "time($
time_unit
)");
601
if ($
time_unit
eq "i") { ($x_label, $x_unit) = i_max_label($end_time) }
602
elsif ($
time_unit
eq "ms") { ($x_label, $x_unit) = t_max_label($end_time) }
603
elsif ($
time_unit
eq "B") { ($x_label, $x_unit) = B_max_label($end_time) }
604
else { die "bad
time_unit
: $time_unit\n";
[
all
...]
ms_main.c
99
time_unit
: ms
384
static const HChar* TimeUnit_to_string(TimeUnit
time_unit
)
386
switch (
time_unit
) {
[
all
...]
/art/runtime/
utils.h
327
std::string FormatDuration(uint64_t nano_duration, TimeUnit
time_unit
,
334
uint64_t GetNsToTimeUnitDivisor(TimeUnit
time_unit
);
utils.cc
501
uint64_t GetNsToTimeUnitDivisor(TimeUnit
time_unit
) {
506
switch (
time_unit
) {
519
std::string FormatDuration(uint64_t nano_duration, TimeUnit
time_unit
,
522
uint64_t divisor = GetNsToTimeUnitDivisor(
time_unit
);
523
switch (
time_unit
) {
[
all
...]
Completed in 83 milliseconds