OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:unit_amount
(Results
1 - 1
of
1
) sorted by null
/external/libchrome/base/strings/
string_util.cc
693
double
unit_amount
= static_cast<double>(bytes);
local
696
while (
unit_amount
>= kKilo &&
698
unit_amount
/= kKilo;
703
if (bytes != 0 && dimension > 0 &&
unit_amount
< 100) {
704
base::snprintf(buf, arraysize(buf), "%.1lf%s",
unit_amount
,
707
base::snprintf(buf, arraysize(buf), "%.0lf%s",
unit_amount
,
[
all
...]
Completed in 138 milliseconds