Home
last modified time | relevance | path

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

/external/libchrome/base/strings/
Dstringprintf.cc53 typename StringType::value_type stack_buf[1024]; in StringAppendVT() local
61 int result = vsnprintfT(stack_buf, arraysize(stack_buf), format, ap_copy); in StringAppendVT()
64 if (result >= 0 && result < static_cast<int>(arraysize(stack_buf))) { in StringAppendVT()
66 dst->append(stack_buf, result); in StringAppendVT()
71 int mem_length = arraysize(stack_buf); in StringAppendVT()
/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/libchrome/sandbox/linux/services/
Dcredentials.cc97 char stack_buf[PTHREAD_STACK_MIN] ALIGNAS(16); in ChrootToSafeEmptyDir() local
101 void* stack = stack_buf + sizeof(stack_buf); in ChrootToSafeEmptyDir()
/external/libchrome/base/process/
Dlaunch_posix.cc700 char stack_buf[PTHREAD_STACK_MIN] ALIGNAS(16); in CloneAndLongjmpInChild() local
704 void* stack = stack_buf + sizeof(stack_buf); in CloneAndLongjmpInChild()