/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_thread.cc | 24 uptr stack_size = 0; local in function:__msan::MsanThread::SetThreadStackAndTls 25 GetThreadStackAndTls(IsMainThread(), &stack_bottom_, &stack_size, 27 stack_top_ = stack_bottom_ + stack_size;
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/ |
asan_fake_stack_test.cc | 48 uptr stack_size = 1UL << stack_size_log; local in function:__asan::TEST 53 uptr num_flags = stack_size / frame_size; 95 const uptr stack_size = 1 << stack_size_log; local in function:__asan::TEST 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/tests/lib/libc/sys/ |
t_fork.c | 279 const size_t stack_size = 1024 * 1024; local in function:nested_raw 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 in function:clone_body 48 stack = malloc(stack_size); 54 stack_base = (char *)stack + stack_size; 343 const size_t stack_size = 1024 * 1024; variable in typeref:typename:const size_t 346 stack = malloc(stack_size); 352 stack_base = (char *)stack + stack_size; 690 const size_t stack_size = 1024 * 1024; variable in typeref:typename:const size_t 693 stack = malloc(stack_size); 699 stack_base = (char *)stack + 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 in function:__asan_handle_no_return 567 GetThreadStackAndTls(/*main=*/false, &bottom, &stack_size, &tls_addr, 569 top = bottom + stack_size;
|
asan_thread.cc | 187 uptr AsanThread::stack_size() { function in class:__asan::AsanThread 195 uptr stack_size = this->stack_size(); local in function:__asan::AsanThread::AsyncSignalSafeLazyInitFakeStack 196 if (stack_size == 0) // stack_size is not yet available, don't use FakeStack. 208 uptr stack_size_log = Log2(RoundUpToPowerOfTwo(stack_size)); 224 CHECK_EQ(this->stack_size(), 0U); 227 CHECK_GT(this->stack_size(), 0U); 293 uptr stack_size = 0; local in function:__asan::AsanThread::SetThreadStackAndTls 294 GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size, &tls_begin_ [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan_thread.cc | 82 uptr stack_size = 0; local in function:__lsan::ThreadStart 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::__anonda2a8b3f0108
|
sanitizer_posix_libcdep.cc | 116 rlim_t stack_size = getlim(RLIMIT_STACK); local in function:__sanitizer::StackSizeIsUnlimited 117 return (stack_size == RLIM_INFINITY);
|
/src/usr.bin/dc/ |
stack.c | 97 stack_size(const struct stack *stack) function in typeref:typename:size_t
|
/src/usr.bin/sort/ |
radix_sort.c | 77 int stack_size = 512; local in function:radix_sort 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/sys/compat/linux/common/ |
linux_sched.h | 124 uint64_t stack_size; /* Size of stack */ member in struct:linux_user_clone3_args
|
/src/sys/dev/ic/ |
aic79xxvar.h | 1231 u_int stack_size; member in struct:ahd_softc
|
aic7xxxvar.h | 1192 u_int stack_size; member in struct:ahc_softc
|