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/base/process/
Dlaunch_posix.cc728 alignas(16) char stack_buf[PTHREAD_STACK_MIN]; in CloneAndLongjmpInChild() local
733 void* stack = stack_buf + sizeof(stack_buf); in CloneAndLongjmpInChild()
/external/python/cpython3/Modules/
D_functoolsmodule.c135 PyObject **stack, **stack_buf = NULL; in partial_fastcall() local
152 stack_buf = PyMem_Malloc(nargs2 * sizeof(PyObject *)); in partial_fastcall()
153 if (stack_buf == NULL) { in partial_fastcall()
157 stack = stack_buf; in partial_fastcall()
170 PyMem_Free(stack_buf); in partial_fastcall()