/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/ |
H A D | 1-5.c | 111 long stacksize = sysconf(_SC_THREAD_STACK_MIN); /* make sure we touch the current stack memory */ local 135 if (((long)¤t) - ((long)arg) >= stacksize) { 143 if (((long)arg) - ((long)¤t) >= stacksize) {
|
H A D | 3-2.c | 119 long stacksize = sysconf(_SC_THREAD_STACK_MIN); /* make sure we touch the current stack memory */ local 155 if (((long)¤t) - ((long)arg) >= stacksize) { 163 if (((long)arg) - ((long)¤t) >= stacksize) { 451 ("Changing the stacksize after the thread was created changed the running thread stack size"); 488 "Failed to set stacksize back");
|
/external/valgrind/memcheck/tests/solaris/ |
H A D | thr_daemon_exit_standalone.c | 97 static void *allocate_stack(size_t stacksize) { argument 115 [SIZE] "g" (stacksize), [SYSNO] "n" (SYS_mmap) 130 [SIZE] "g" (stacksize), [SYSNO] "n" (SYS_mmap)
|
/external/ltp/testcases/kernel/sched/pthreads/ |
H A D | pth_str02.c | 115 size_t stacksize = 1046528; local 125 if (pthread_attr_setstacksize(&attr, stacksize))
|
/external/syslinux/core/lwip/src/arch/ |
H A D | sys_arch.c | 127 void *arg, int stacksize, int prio) 129 return start_thread(name, stacksize, prio, thread, arg); 126 sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int prio) argument
|
/external/markdown/ |
H A D | test-markdown.py | 61 def stacksize(since=0.0): function
|
/external/valgrind/coregrind/m_syswrap/ |
H A D | syswrap-amd64-darwin.c | 337 Addr stacksize, Addr flags, Addr sp) 343 // VG_(printf)("pthread_hijack pthread %p, machthread %p, func %p, arg %p, stack %p, flags %p, stack %p\n", self, kport, func, func_arg, stacksize, flags, sp); 363 vex->guest_R8 = stacksize; 374 Addr stack = VG_PGROUNDUP(sp) - stacksize; 375 tst->client_stack_highest_byte = stack+stacksize-1; 376 tst->client_stack_szB = stacksize; 380 stack+stacksize, pthread_structsize, 384 stack, stacksize, 438 SizeT stacksize; local 530 stacksize 336 pthread_hijack(Addr self, Addr kport, Addr func, Addr func_arg, Addr stacksize, Addr flags, Addr sp) argument [all...] |
H A D | syswrap-x86-darwin.c | 265 " push %edi\n" // stacksize 277 Addr stacksize, Addr flags, Addr sp) 283 // VG_(printf)("pthread_hijack pthread %p, machthread %p, func %p, arg %p, stack %p, flags %p, stack %p\n", self, kport, func, func_arg, stacksize, flags, sp); 304 vex->guest_EDI = stacksize; 315 Addr stack = VG_PGROUNDUP(sp) - stacksize; 316 tst->client_stack_highest_byte = stack+stacksize-1; 317 tst->client_stack_szB = stacksize; 321 stack+stacksize, pthread_structsize, 325 stack, stacksize, 386 SizeT stacksize; local 276 pthread_hijack(Addr self, Addr kport, Addr func, Addr func_arg, Addr stacksize, Addr flags, Addr sp) argument [all...] |
/external/compiler-rt/lib/sanitizer_common/tests/ |
H A D | sanitizer_linux_test.cc | 220 size_t stacksize; local 221 pthread_attr_getstack(&attr, &stackaddr, &stacksize); 222 return (void *)((uptr)stackaddr + stacksize - descr_addr);
|
/external/ltp/testcases/misc/math/float/ |
H A D | main.c | 110 size_t stacksize = 2093056; local 220 if (pthread_attr_setstacksize(&newattr, stacksize))
|
/external/valgrind/coregrind/m_initimg/ |
H A D | initimg-darwin.c | 325 unsigned stacksize; /* total client stack size */ local 378 stacksize = 388 if (0) VG_(printf)("stacksize = %d\n", stacksize); 391 client_SP = clstack_end + 1 - stacksize; 410 VG_(printf)("stringsize=%d auxsize=%d stacksize=%d maxsize=0x%x\n" 413 stringsize, auxsize, stacksize, (Int)clstack_max_size,
|
H A D | initimg-solaris.c | 392 SizeT stacksize; /* total client stack size */ local 474 stacksize = 485 client_SP = clstack_end - stacksize; 503 VG_(printf)("stringsize=%lu, auxsize=%lu, stacksize=%lu, maxsize=%#lx\n" 506 stringsize, auxsize, stacksize, clstack_max_size, 569 "This may be the result of a very large --main-stacksize=\n"); 900 --main-stacksize value. This makes it possible to run programs with 902 --main-stacksize. */ 906 - If a larger --main-stacksize value is specified, use that instead.
|
H A D | initimg-linux.c | 406 unsigned stacksize; /* total client stack size */ local 470 stacksize = 480 if (0) VG_(printf)("stacksize = %u\n", stacksize); 483 client_SP = clstack_end - stacksize; 496 VG_(printf)("stringsize=%u auxsize=%u stacksize=%u maxsize=0x%lx\n" 499 stringsize, auxsize, stacksize, clstack_max_size, 565 "This may be the result of a very large --main-stacksize=\n"); 956 notice of the --main-stacksize value. This makes it possible 958 simply by specifying --main-stacksize [all...] |
/external/valgrind/coregrind/m_ume/ |
H A D | macho.c | 381 vki_size_t stacksize = VG_PGROUNDUP(default_stack_size()); local 382 vm_address_t stackbase = VG_PGROUNDDN(out_info->stack_end+1-stacksize); 385 res = VG_(am_mmap_anon_fixed_client)(stackbase, stacksize, VKI_PROT_READ|VKI_PROT_WRITE|VKI_PROT_EXEC); 386 check_mmap(res, stackbase, stacksize, "load_unixthread1"); 588 err = handle_lcmain(epcmd->stacksize, out_info);
|
/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_linux_libcdep.cc | 98 // Get stacksize from rlimit, but clip it so that it does not overlap 100 uptr stacksize = rl.rlim_cur; local 101 if (stacksize > end - prev_end) 102 stacksize = end - prev_end; 106 if (stacksize > kMaxThreadStackSize) 107 stacksize = kMaxThreadStackSize; 109 *stack_bottom = end - stacksize; 115 uptr stacksize = 0; local 117 my_pthread_attr_getstack(&attr, &stackaddr, &stacksize); 120 CHECK_LE(stacksize, kMaxThreadStackSiz [all...] |
H A D | sanitizer_posix_libcdep.cc | 310 uptr stacksize = 0; local 311 my_pthread_attr_getstack(attr, (void**)&stackaddr, &stacksize); 312 // GLibC will return (0 - stacksize) as the stack address in the case when 313 // stacksize is set, but stackaddr is not. 314 bool stack_set = (stackaddr != 0) && (stackaddr + stacksize != 0); 317 if (stacksize < minstacksize) { 319 if (stacksize != 0) { 320 VPrintf(1, "Sanitizer: increasing stacksize %zu->%zu\n", stacksize, 326 "%zu < %zu\n", stacksize, minstacksiz [all...] |
H A D | sanitizer_mac.cc | 251 uptr stacksize = pthread_get_stacksize_np(pthread_self()); local 256 stacksize == (1 << 19)) { 261 stacksize = rl.rlim_cur; 263 stacksize = kMaxThreadStackSize; 268 *stack_bottom = *stack_top - stacksize;
|
/external/opencv/cv/src/ |
H A D | cvconvhull.cpp | 50 int stacksize = 3; local 85 stack[stacksize] = pnext; 86 stacksize++; 99 stack[stacksize-2] = pnext; 101 pprev = stack[stacksize-4]; 102 stacksize--; 109 stack[stacksize-1] = pnext; 113 return --stacksize; 123 int stacksize = 3; local 158 stack[stacksize] [all...] |
/external/python/cpython2/Objects/ |
H A D | codeobject.c | 93 PyCode_New(int argcount, int nlocals, int stacksize, int flags, argument 124 co->co_stacksize = stacksize; 178 0, /* stacksize */ 263 "code(argcount, nlocals, stacksize, flags, codestring, constants, names,\n\ 273 int stacksize; local 288 &argcount, &nlocals, &stacksize, &flags, 332 co = (PyObject *)PyCode_New(argcount, nlocals, stacksize, flags,
|
/external/syslinux/core/fs/pxe/ |
H A D | pxe.h | 50 uint16_t stacksize; member in struct:pxenv_t
|
/external/dng_sdk/source/ |
H A D | dng_pthread.cpp | 250 size_t stacksize; member in struct:dng_pthread_attr_impl 263 newAttrs->stacksize = 0; 286 int dng_pthread_attr_setstacksize(dng_pthread_attr_t *attr, size_t stacksize) argument 291 (*attr)->stacksize = stacksize; 298 int dng_pthread_attr_getstacksize(const dng_pthread_attr_t *attr, size_t *stacksize) argument 300 if (attr == NULL || (*attr) == NULL || stacksize == NULL) 303 *stacksize = (*attr)->stacksize; 325 size_t stacksize local [all...] |
/external/javassist/src/main/javassist/ |
H A D | CtClassType.java | 1464 int stacksize = 0; 1472 if (stacksize < s) 1473 stacksize = s; 1478 modifyClassConstructor(cf, code, stacksize, 0); 1482 int stacksize, int localsize) 1488 code.setMaxStack(stacksize); 1508 if (maxstack < stacksize) 1509 codeAttr.setMaxStack(stacksize); 1549 int stacksize = makeFieldInitializer(init, params); 1550 insertAuxInitializer(codeAttr, init, stacksize); 1481 modifyClassConstructor(ClassFile cf, Bytecode code, int stacksize, int localsize) argument 1560 insertAuxInitializer(CodeAttribute codeAttr, Bytecode initializer, int stacksize) argument [all...] |
/external/javassist/src/main/javassist/bytecode/ |
H A D | Bytecode.java | 129 * <p>The parameters <code>stacksize</code> and <code>localvars</code> 135 * @param stacksize <code>max_stack</code>. 138 public Bytecode(ConstPool cp, int stacksize, int localvars) { argument 140 maxStack = stacksize; 797 int stacksize = 0; 801 stacksize += addLoad(stacksize + offset, params[i]); 804 return stacksize;
|
/external/python/cpython2/Python/ |
H A D | marshal.c | 1001 int stacksize; local 1019 stacksize = (int)r_long(p); 1051 argcount, nlocals, stacksize, flags,
|
/external/skia/third_party/lua/src/ |
H A D | lstate.h | 163 int stacksize; member in struct:lua_State
|