Searched defs:stacksize (Results 1 - 11 of 11) sorted by relevance

/external/markdown/
H A Dtest-markdown.py61 def stacksize(since=0.0): function
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-amd64-darwin.c291 Addr stacksize, Addr flags, Addr sp)
297 // 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);
317 vex->guest_R8 = stacksize;
328 Addr stack = VG_PGROUNDUP(sp) - stacksize;
329 tst->client_stack_highest_word = stack+stacksize;
330 tst->client_stack_szB = stacksize;
334 stack+stacksize, pthread_structsize,
338 stack, stacksize,
392 SizeT stacksize; local
463 stacksize
290 pthread_hijack(Addr self, Addr kport, Addr func, Addr func_arg, Addr stacksize, Addr flags, Addr sp) argument
[all...]
H A Dsyswrap-x86-darwin.c266 " push %edi\n" // stacksize
278 Addr stacksize, Addr flags, Addr sp)
284 // 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);
305 vex->guest_EDI = stacksize;
316 Addr stack = VG_PGROUNDUP(sp) - stacksize;
317 tst->client_stack_highest_word = stack+stacksize;
318 tst->client_stack_szB = stacksize;
322 stack+stacksize, pthread_structsize,
326 stack, stacksize,
387 SizeT stacksize; local
277 pthread_hijack(Addr self, Addr kport, Addr func, Addr func_arg, Addr stacksize, Addr flags, Addr sp) argument
[all...]
/external/valgrind/main/coregrind/m_initimg/
H A Dinitimg-darwin.c332 unsigned stacksize; /* total client stack size */ local
388 stacksize =
398 if (0) VG_(printf)("stacksize = %d\n", stacksize);
401 client_SP = clstack_end - stacksize;
420 VG_(printf)("stringsize=%d auxsize=%d stacksize=%d maxsize=0x%x\n"
423 stringsize, auxsize, stacksize, (Int)clstack_max_size,
H A Dinitimg-linux.c403 unsigned stacksize; /* total client stack size */ local
469 stacksize =
479 if (0) VG_(printf)("stacksize = %d\n", stacksize);
482 client_SP = clstack_end - stacksize;
499 VG_(printf)("stringsize=%d auxsize=%d stacksize=%d maxsize=0x%x\n"
502 stringsize, auxsize, stacksize, (Int)clstack_max_size,
568 "This may be the result of a very large --main-stacksize=\n");
895 notice of the --main-stacksize value. This makes it possible
897 simply by specifying --main-stacksize
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_linux.cc292 // Get stacksize from rlimit, but clip it so that it does not overlap
294 size_t stacksize = rl.rlim_cur; local
295 if (stacksize > end - prev_end)
296 stacksize = end - prev_end;
297 if (stacksize > kMaxThreadStackSize)
298 stacksize = kMaxThreadStackSize;
300 stack_bottom_ = end - stacksize;
306 size_t stacksize = 0; local
308 pthread_attr_getstack(&attr, &stackaddr, &stacksize);
311 stack_top_ = (uintptr_t)stackaddr + stacksize;
[all...]
/external/valgrind/main/coregrind/m_ume/
H A Dmacho.c356 vki_size_t stacksize = VG_PGROUNDUP(default_stack_size()); local
357 vm_address_t stackbase = VG_PGROUNDDN(stack_end-stacksize);
360 res = VG_(am_mmap_anon_fixed_client)(stackbase, stacksize, VKI_PROT_READ|VKI_PROT_WRITE|VKI_PROT_EXEC);
361 check_mmap(res, stackbase, stacksize, "load_unixthread1");
/external/opencv/cv/src/
H A Dcvconvhull.cpp50 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/javassist/src/main/javassist/
H A DCtClassType.java1464 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 DBytecode.java129 * <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/valgrind/tsan/
H A Dts_valgrind_intercepts.c646 size_t stacksize = 0; local
657 stacksize = pthread_get_stacksize_np(me);
660 size_t, stacksize);
663 pthread_attr_getstack(&attr, &stackaddr, &stacksize);
666 void*, (char*)stackaddr + stacksize,
667 size_t, stacksize);
670 DO_CREQ_v_W(TSREQ_THR_STACK_TOP, void*, &stacksize);

Completed in 1709 milliseconds