HomeSort by relevance Sort by last modified time
    Searched defs:stacksize (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
1-5.c 111 long stacksize = sysconf(_SC_THREAD_STACK_MIN); /* make sure we touch the current stack memory */ local
135 if (((long)&current) - ((long)arg) >= stacksize) {
143 if (((long)arg) - ((long)&current) >= stacksize) {
3-2.c 119 long stacksize = sysconf(_SC_THREAD_STACK_MIN); /* make sure we touch the current stack memory */ local
155 if (((long)&current) - ((long)arg) >= stacksize) {
163 if (((long)arg) - ((long)&current) >= stacksize) {
451 ("Changing the stacksize after the thread was created changed the running thread stack size");
488 "Failed to set stacksize back");
  /external/javassist/src/main/javassist/
CtNewWrappedConstructor.java 55 int stacksize, stacksize2; local
62 stacksize = 1;
66 stacksize = code.addLoadParameters(parameters, 1) + 1;
71 stacksize = compileParameterList(code, parameters, 1);
82 if (stacksize < stacksize2)
83 stacksize = stacksize2;
94 if (stacksize < stacksize2)
95 stacksize = stacksize2;
98 code.setMaxStack(stacksize);
CtNewWrappedMethod.java 59 int stacksize = makeBody0(clazz, classfile, wrappedBody, isStatic, local
61 code.setMaxStack(stacksize);
83 int stacksize = compileParameterList(code, parameters, local
117 if (stacksize < stacksize2 + 2)
118 stacksize = stacksize2 + 2;
120 return stacksize;
  /external/markdown/
test-markdown.py 61 def stacksize(since=0.0): function
  /external/valgrind/coregrind/m_syswrap/
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 = 512*1024; // wq stacks are always DEFAULT_STACK_SIZ
    [all...]
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
    [all...]
  /external/ltp/testcases/kernel/sched/pthreads/
pth_str02.c 115 size_t stacksize = 1046528; local
125 if (pthread_attr_setstacksize(&attr, stacksize))
  /external/compiler-rt/lib/sanitizer_common/tests/
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/
main.c 110 size_t stacksize = 2093056; local
220 if (pthread_attr_setstacksize(&newattr, stacksize))
  /external/valgrind/coregrind/m_initimg/
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,
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.
    [all...]
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
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
codeobject.c 44 PyCode_New(int argcount, int nlocals, int stacksize, int flags,
84 co->co_stacksize = stacksize;
138 0, /* stacksize */
223 "code(argcount, nlocals, stacksize, flags, codestring, constants, names,\n\
233 int stacksize; local
248 &argcount, &nlocals, &stacksize, &flags,
292 co = (PyObject *)PyCode_New(argcount, nlocals, stacksize, flags,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
codeobject.c 44 PyCode_New(int argcount, int nlocals, int stacksize, int flags,
84 co->co_stacksize = stacksize;
138 0, /* stacksize */
223 "code(argcount, nlocals, stacksize, flags, codestring, constants, names,\n\
233 int stacksize; local
248 &argcount, &nlocals, &stacksize, &flags,
292 co = (PyObject *)PyCode_New(argcount, nlocals, stacksize, flags,
  /external/compiler-rt/lib/sanitizer_common/
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, kMaxThreadStackSize); // Sanity check
    [all...]
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, minstacksize)
    [all...]
  /external/valgrind/coregrind/m_ume/
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/opencv/cv/src/
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] = pnext
    [all...]
  /external/python/cpython2/Objects/
codeobject.c 93 PyCode_New(int argcount, int nlocals, int stacksize, int flags,
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/python/cpython3/Objects/
codeobject.c 106 int nlocals, int stacksize, int flags,
179 co->co_stacksize = stacksize;
235 0, /* stacksize */
319 "code(argcount, kwonlyargcount, nlocals, stacksize, flags, codestring,\n\
331 int stacksize; local
347 &nlocals, &stacksize, &flags,
398 nlocals, stacksize, flags,
  /external/syslinux/core/fs/pxe/
pxe.h 50 uint16_t stacksize; member in struct:pxenv_t
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lstate.h 163 int stacksize; member in struct:lua_State
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
marshal.c 1002 int stacksize; local
1020 stacksize = (int)r_long(p);
1052 argcount, nlocals, stacksize, flags,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
marshal.c 1007 int stacksize; local
1025 stacksize = (int)r_long(p);
1057 argcount, nlocals, stacksize, flags,
    [all...]

Completed in 921 milliseconds

1 2 3