Searched refs:stacksize (Results 1 - 13 of 13) sorted by relevance

/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A Dsanitizer_linux_libcdep.cc93 // Get stacksize from rlimit, but clip it so that it does not overlap
95 uptr stacksize = rl.rlim_cur; local
96 if (stacksize > end - prev_end)
97 stacksize = end - prev_end;
101 if (stacksize > kMaxThreadStackSize)
102 stacksize = kMaxThreadStackSize;
104 *stack_bottom = end - stacksize;
110 uptr stacksize = 0; local
112 my_pthread_attr_getstack(&attr, &stackaddr, (size_t*)&stacksize);
115 CHECK_LE(stacksize, kMaxThreadStackSiz
321 size_t stacksize = 0; local
[all...]
H A Dsanitizer_mac.cc157 uptr stacksize = pthread_get_stacksize_np(pthread_self()); local
162 stacksize == (1 << 19)) {
167 stacksize = rl.rlim_cur;
169 stacksize = kMaxThreadStackSize;
174 *stack_bottom = *stack_top - stacksize;
/haiku-buildtools/gcc/libgomp/
H A Denv.c1031 handle_omp_display_env (unsigned long stacksize, int wait_policy) argument
1146 fprintf (stderr, " OMP_STACKSIZE = '%lu'\n", stacksize);
1164 fprintf (stderr, " GOMP_STACKSIZE = '%lu'\n", stacksize);
1181 unsigned long thread_limit_var, stacksize; local
1266 if (parse_stacksize ("OMP_STACKSIZE", &stacksize)
1267 || parse_stacksize ("GOMP_STACKSIZE", &stacksize))
1271 err = pthread_attr_setstacksize (&gomp_thread_attr, stacksize);
1276 if (stacksize < PTHREAD_STACK_MIN)
1289 handle_omp_display_env (stacksize, wait_policy);
H A Dteam.c693 size_t stacksize; local
696 if (! pthread_attr_getstacksize (&gomp_thread_attr, &stacksize))
697 pthread_attr_setstacksize (&thread_attr, stacksize);
/haiku-buildtools/binutils/include/mach-o/
H A Dexternal.h339 unsigned char stacksize[8]; /* Initial stack size, if no null. */ member in struct:mach_o_entry_point_command_external
/haiku-buildtools/binutils/bfd/
H A Dmach-o.h540 bfd_uint64_t stacksize; member in struct:bfd_mach_o_main_command
H A Dmach-o.c1229 bfd_h_put_64 (abfd, cmd->stacksize, raw.stacksize);
3187 cmd->command.main.stacksize = 0;
4520 cmd->stacksize = bfd_get_64 (abfd, raw.stacksize);
H A Delf32-lm32.c2568 sec->size = info->stacksize >= 0 ? info->stacksize : 0;
H A Delflink.c5847 if (info->stacksize)
5856 info->stacksize = h->root.u.def.value;
5859 if (!info->stacksize)
5862 info->stacksize = default_size;
5873 info->stacksize >= 0 ? info->stacksize : 0,
5963 if (notesec || info->stacksize > 0)
H A Delf.c4919 if (info->stacksize > 0)
4921 m->p_size = info->stacksize;
/haiku-buildtools/binutils/include/
H A Dbfdlink.h497 bfd_signed_vma stacksize;
495 bfd_signed_vma stacksize; member in struct:bfd_link_info
/haiku-buildtools/binutils/binutils/
H A Dod-macho.c1642 printf_uint64 (entry->stacksize);
/haiku-buildtools/gcc/libsanitizer/tsan/
H A Dtsan_interceptors.cc55 extern "C" int pthread_attr_setstacksize(void *attr, uptr stacksize);

Completed in 301 milliseconds