HomeSort by: relevance | last modified time | path
    Searched defs:stack_size (Results 1 - 25 of 92) sorted by relevancy

1 2 3 4

  /src/external/bsd/jemalloc.old/dist/src/
cache_bin.c 12 size_t stack_size = (size_t)ncached_max * sizeof(void *); local
13 assert(stack_size < ((size_t)1 << (sizeof(cache_bin_sz_t) * 8)));
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_fake_stack_test.cc 48 uptr stack_size = 1UL << stack_size_log; local
53 uptr num_flags = stack_size / frame_size;
95 const uptr stack_size = 1 << stack_size_log; local
100 EXPECT_EQ(base + 0*stack_size + 64 * 7, fs->GetFrame(stack_size_log, 0, 7U));
101 EXPECT_EQ(base + 1*stack_size + 128 * 3, fs->GetFrame(stack_size_log, 1, 3U));
102 EXPECT_EQ(base + 2*stack_size + 256 * 5, fs->GetFrame(stack_size_log, 2, 5U));
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_thread.cc 24 uptr stack_size = 0; local
25 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, local
27 stack_top_ = stack_bottom_ + stack_size;
  /src/external/bsd/jemalloc/dist/src/
cache_bin.c 13 size_t stack_size = (size_t)ncached_max * sizeof(void *); local
14 assert(stack_size < ((size_t)1 << (sizeof(cache_bin_sz_t) * 8)));
  /src/tests/lib/libc/sys/
t_fork.c 279 const size_t stack_size = 1024 * 1024; local
282 stack = malloc(stack_size);
288 stack_base = (char *)stack + stack_size;
t_ptrace_clone_wait.h 45 const size_t stack_size = 1024 * 1024; local
48 stack = malloc(stack_size);
54 stack_base = (char *)stack + stack_size;
343 const size_t stack_size = 1024 * 1024; local
346 stack = malloc(stack_size);
352 stack_base = (char *)stack + stack_size;
690 const size_t stack_size = 1024 * 1024; local
693 stack = malloc(stack_size);
699 stack_base = (char *)stack + stack_size;
  /src/external/gpl3/gcc/dist/libsanitizer/lsan/
lsan_posix.cpp 51 uptr stack_size = 0; local
53 GetThreadStackAndTls(tid == kMainTid, &args.stack_begin, &stack_size,
55 args.stack_end = args.stack_begin + stack_size;
  /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan_posix.cpp 49 uptr stack_size = 0; local
51 GetThreadStackAndTls(tid == kMainTid, &args.stack_begin, &stack_size,
53 args.stack_end = args.stack_begin + stack_size;
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_fuchsia.cc 87 uptr stack_bottom, stack_size; member in struct:__asan::AsanThread::InitOptions
94 uptr stack_size) {
106 const AsanThread::InitOptions options = {stack_bottom, stack_size};
121 CHECK_NE(options->stack_size, 0);
123 stack_top_ = options->stack_bottom + options->stack_size;
147 uptr stack_size) {
156 stack_bottom, stack_size);
207 size_t stack_size) {
210 reinterpret_cast<uptr>(stack_base), stack_size);
asan_rtems.cc 96 uptr stack_bottom, stack_size, tls_bottom, tls_size; member in struct:__asan::AsanThread::InitOptions
102 uptr stack_bottom, uptr stack_size,
112 const AsanThread::InitOptions options = {stack_bottom, stack_size,
125 CHECK_NE(options->stack_size, 0);
127 stack_top_ = options->stack_bottom + options->stack_size;
143 uptr stack_bottom, uptr stack_size,
153 stack_bottom, stack_size, tls_bottom, tls_size);
193 PoisonShadow(thread->stack_bottom(), thread->stack_size(), 0);
234 void *stack_base, size_t stack_size,
238 reinterpret_cast<uptr>(stack_base), stack_size,
    [all...]
asan_rtl.cc 566 uptr tls_addr, tls_size, stack_size; local
567 GetThreadStackAndTls(/*main=*/false, &bottom, &stack_size, &tls_addr,
569 top = bottom + stack_size;
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_thread.cc 82 uptr stack_size = 0; local
84 GetThreadStackAndTls(tid == 0, &args.stack_begin, &stack_size,
86 args.stack_end = args.stack_begin + stack_size;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_unwind_linux_libcdep.cc 36 uptr stack_size; member in struct:__sanitizer::__anon4141
  /src/usr.bin/dc/
stack.c 97 stack_size(const struct stack *stack) function
  /src/usr.bin/sort/
radix_sort.c 77 int stack_size = 512; local
88 s = emalloc(stack_size * sizeof *s);
130 if (sp + nc > s + stack_size) {
131 stack_size *= 2;
132 sp1 = erealloc(s, stack_size * sizeof *s);
  /src/external/gpl2/diffutils/dist/lib/
c-stack.c 116 size_t stack_size = user_context->uc_stack.ss_size; local
122 if (s < stack_size + page_size)
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_unwind_linux_libcdep.cpp 37 uptr stack_size; member in struct:__sanitizer::__anon14622::__anon14623
  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_thread.h 46 uptr stack_size() { return stack_top() - stack_bottom(); } function in class:__hwasan::Thread
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_unwind_linux_libcdep.cpp 37 uptr stack_size; member in struct:__sanitizer::__anon17022::__anon17023
  /src/external/gpl3/binutils/dist/libiberty/
splay-tree.c 214 int stack_ptr, stack_size; local
221 stack_size = INITIAL_STACK_SIZE;
223 stack = XNEWVEC (splay_tree_node, stack_size);
230 if (stack_ptr == stack_size)
232 stack_size *= 2;
233 stack = XRESIZEVEC (splay_tree_node, stack, stack_size);
  /src/external/gpl3/binutils.old/dist/libiberty/
splay-tree.c 214 int stack_ptr, stack_size; local
221 stack_size = INITIAL_STACK_SIZE;
223 stack = XNEWVEC (splay_tree_node, stack_size);
230 if (stack_ptr == stack_size)
232 stack_size *= 2;
233 stack = XRESIZEVEC (splay_tree_node, stack, stack_size);
  /src/external/gpl3/gcc/dist/libiberty/
splay-tree.c 214 int stack_ptr, stack_size; local
221 stack_size = INITIAL_STACK_SIZE;
223 stack = XNEWVEC (splay_tree_node, stack_size);
230 if (stack_ptr == stack_size)
232 stack_size *= 2;
233 stack = XRESIZEVEC (splay_tree_node, stack, stack_size);
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_fuchsia.cpp 117 uptr stack_bottom, stack_size; member in struct:__asan::AsanThread::InitOptions
142 CHECK_NE(options->stack_size, 0);
144 stack_top_ = options->stack_bottom + options->stack_size;
175 uptr stack_size) {
189 const AsanThread::InitOptions options = {stack_bottom, stack_size};
256 size_t stack_size) {
259 reinterpret_cast<uptr>(stack_base), stack_size);
asan_rtl.cpp 571 uptr tls_addr, tls_size, stack_size; local
572 GetThreadStackAndTls(/*main=*/false, &bottom, &stack_size, &tls_addr,
574 top = bottom + stack_size;
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_thread.h 46 uptr stack_size() { return stack_top() - stack_bottom(); } function in class:__hwasan::Thread

Completed in 25 milliseconds

1 2 3 4