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

  /external/perfetto/include/perfetto/base/
string_writer.h 74 constexpr auto kMaxDigits = std::numeric_limits<uint64_t>::digits10 + 2;
75 constexpr auto kSizeNeeded = kMaxDigits > padding ? kMaxDigits : padding;
  /art/libartbase/base/
time_utils.cc 116 static constexpr size_t kMaxDigits = 30;
117 size_t avail_digits = kMaxDigits;
118 char fraction_buffer[kMaxDigits];
128 fraction_buffer[std::min(kMaxDigits - 1, max_fraction_digits)] = '\0';

Completed in 130 milliseconds