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
679
double
unit_amount
= static_cast<double>(bytes);
local
682
while (
unit_amount
>= kKilo &&
684
unit_amount
/= kKilo;
689
if (bytes != 0 && dimension > 0 &&
unit_amount
< 100) {
690
base::snprintf(buf, arraysize(buf), "%.1lf%s",
unit_amount
,
693
base::snprintf(buf, arraysize(buf), "%.0lf%s",
unit_amount
,
[
all
...]
Completed in 131 milliseconds