HomeSort by relevance Sort by last modified time
    Searched refs:kMaxDigits (Results 1 - 2 of 2) sorted by null

  /art/runtime/
utils.cc 542 static constexpr size_t kMaxDigits = 30;
543 size_t avail_digits = kMaxDigits;
544 char fraction_buffer[kMaxDigits];
554 fraction_buffer[std::min(kMaxDigits - 1, max_fraction_digits)] = '\0';
    [all...]
  /external/chromium_org/url/third_party/mozilla/
url_parse.cc 574 const int kMaxDigits = 5;
591 if (digits_comp.len > kMaxDigits)
595 char digits[kMaxDigits + 1]; // +1 for null terminator

Completed in 596 milliseconds