OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FormatDuration
(Results
1 - 4
of
4
) sorted by null
/art/runtime/base/
histogram-inl.h
167
os << (interval * 100) << "% C.I. " <<
FormatDuration
(Percentile(per_0, data) * kAdjust, unit);
168
os << "-" <<
FormatDuration
(Percentile(per_1, data) * kAdjust, unit) << " ";
169
os << "Avg: " <<
FormatDuration
(Mean() * kAdjust, unit) << " Max: ";
170
os <<
FormatDuration
(Max() * kAdjust, unit) << "\n";
timing_logger.cc
188
os << name_ << ": " << std::setw(8) <<
FormatDuration
(split_time, tu) << " "
/art/runtime/
utils.h
237
std::string
FormatDuration
(uint64_t nano_duration, TimeUnit time_unit);
utils.cc
464
return
FormatDuration
(nano_duration, GetAppropriateTimeUnit(nano_duration));
501
std::string
FormatDuration
(uint64_t nano_duration, TimeUnit time_unit) {
[
all
...]
Completed in 2309 milliseconds