Searched refs:stack_buf (Results 1 – 5 of 5) sorted by relevance
/third_party/gn/src/base/strings/ |
D | stringprintf.cc | 44 typename StringType::value_type stack_buf[1024]; in StringAppendVT() local 52 int result = vsnprintfT(stack_buf, std::size(stack_buf), format, ap_copy); in StringAppendVT() 55 if (result >= 0 && result < static_cast<int>(std::size(stack_buf))) { in StringAppendVT() 57 dst->append(stack_buf, result); in StringAppendVT() 62 int mem_length = std::size(stack_buf); in StringAppendVT()
|
/third_party/gn/src/gn/ |
D | escape.cc | 65 operator char*() { return heap_buf ? heap_buf.get() : stack_buf; } in operator char*() 68 char stack_buf[kStackStringBufferSize]; member in __anonb7c91fa60111::StackOrHeapBuffer
|
/third_party/quickjs/ |
D | libregexp.c | 2059 StackInt *stack_buf; in push_state() local 2082 stack_buf = (StackInt *)(rs->buf + n); in push_state() 2084 stack_buf[i] = stack[i]; in push_state() 2505 StackInt *stack_buf; in lre_exec() local 2522 s->stack_size_max * sizeof(stack_buf[0]); in lre_exec() 2529 alloca_size = s->stack_size_max * sizeof(stack_buf[0]); in lre_exec() 2530 stack_buf = alloca(alloca_size); in lre_exec() 2531 ret = lre_exec_backtrack(s, capture, stack_buf, 0, bc_buf + RE_HEADER_LEN, in lre_exec()
|
D | quickjs.c | 16182 JSValue *local_buf, *stack_buf, *var_buf, *arg_buf, *sp, ret_val, *pval; in JS_CallInternal() local 16241 stack_buf = sf->var_buf + b->var_count; in JS_CallInternal() 16303 stack_buf = var_buf + b->var_count; in JS_CallInternal() 16304 sp = stack_buf; in JS_CallInternal() 17449 while (sp > stack_buf && in JS_CallInternal() 17453 if (unlikely(sp < stack_buf + 3)) { in JS_CallInternal() 18665 while (sp > stack_buf) { in JS_CallInternal()
|
/third_party/libsoup/libsoup/ |
D | soup-message-io.c | 609 guchar *stack_buf = NULL; in io_read() local 755 if (!stack_buf) in io_read() 756 stack_buf = alloca (RESPONSE_BLOCK_SIZE); in io_read() 758 stack_buf, in io_read()
|