OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:my_uint_len
(Results
1 - 4
of
4
) sorted by null
/external/google-breakpad/src/common/linux/
linux_libc_support_unittest.cc
93
ASSERT_EQ(
my_uint_len
(0), 1U);
94
ASSERT_EQ(
my_uint_len
(2), 1U);
95
ASSERT_EQ(
my_uint_len
(5), 1U);
96
ASSERT_EQ(
my_uint_len
(9), 1U);
97
ASSERT_EQ(
my_uint_len
(10), 2U);
98
ASSERT_EQ(
my_uint_len
(99), 2U);
99
ASSERT_EQ(
my_uint_len
(100), 3U);
100
ASSERT_EQ(
my_uint_len
(101), 3U);
101
ASSERT_EQ(
my_uint_len
(1000), 4U);
103
ASSERT_EQ(
my_uint_len
(18446744073709551615LLU), 20U)
[
all
...]
linux_libc_support.h
56
extern unsigned
my_uint_len
(uintmax_t i);
60
// large enough to hold the resulting string. Call |
my_uint_len
| to get the
63
// i_len: the length of the integer in base 10 (see |
my_uint_len
|).
linux_libc_support.cc
99
unsigned
my_uint_len
(uintmax_t i) {
function
114
// large enough to hold the resulting string. Call |
my_uint_len
| to get the
117
// i_len: the length of the integer in base 10 (see |
my_uint_len
|).
/external/google-breakpad/src/client/linux/minidump_writer/
linux_ptrace_dumper.cc
120
const unsigned pid_len =
my_uint_len
(pid);
Completed in 235 milliseconds