Searched refs:stack_buf (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/Analysis/
H A Dinline.c73 char stack_buf[100]; local
74 char *pos = return_buf(stack_buf);
79 char stack_buf[100]; local
80 char *x = stack_buf;
/external/chromium/base/
H A Dstringprintf.cc45 typename StringType::value_type stack_buf[1024]; local
53 int result = vsnprintfT(stack_buf, arraysize(stack_buf), format, ap_copy);
56 if (result >= 0 && result < static_cast<int>(arraysize(stack_buf))) {
58 dst->append(stack_buf, result);
63 int mem_length = arraysize(stack_buf);
/external/chromium_org/base/strings/
H A Dstringprintf.cc48 typename StringType::value_type stack_buf[1024]; local
56 int result = vsnprintfT(stack_buf, arraysize(stack_buf), format, ap_copy);
59 if (result >= 0 && result < static_cast<int>(arraysize(stack_buf))) {
61 dst->append(stack_buf, result);
66 int mem_length = arraysize(stack_buf);
/external/chromium_org/third_party/npapi/npspy/common/
H A Dformat.cpp118 typename StringType::value_type stack_buf[1024]; local
126 int result = vsnprintf(stack_buf, arraysize(stack_buf), format, ap_copy);
129 if (result >= 0 && result < static_cast<int>(arraysize(stack_buf))) {
131 dst->append(stack_buf, result);
136 int mem_length = arraysize(stack_buf);

Completed in 205 milliseconds