OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mem_length
(Results
1 - 2
of
2
) sorted by null
/external/libweave/third_party/chromium/base/strings/
stringprintf.cc
63
int
mem_length
= arraysize(stack_buf);
local
75
mem_length
*= 2;
79
mem_length
= result + 1;
82
if (
mem_length
> 32 * 1024 * 1024) {
90
std::vector<typename StringType::value_type> mem_buf(
mem_length
);
95
result = vsnprintfT(&mem_buf[0],
mem_length
, format, ap_copy);
98
if ((result >= 0) && (result <
mem_length
)) {
/external/libchrome/base/strings/
stringprintf.cc
71
int
mem_length
= arraysize(stack_buf);
local
83
mem_length
*= 2;
87
mem_length
= result + 1;
90
if (
mem_length
> 32 * 1024 * 1024) {
98
std::vector<typename StringType::value_type> mem_buf(
mem_length
);
103
result = vsnprintfT(&mem_buf[0],
mem_length
, format, ap_copy);
106
if ((result >= 0) && (result <
mem_length
)) {
Completed in 108 milliseconds