Home
last modified time | relevance | path

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

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