/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;
|
CtField.java | 998 int stacksize; local 1046 int stacksize = 2; local 1094 int stacksize; local 1139 int stacksize = 1; local [all...] |
CtClassType.java | 1464 int stacksize = 0; local 1549 int stacksize = makeFieldInitializer(init, params); local 1585 int stacksize = 0; local [all...] |
/bionic/libc/bionic/ |
libc_init_common.c | 67 unsigned stacksize = 128 * 1024; local 68 unsigned stackbottom = stacktop - stacksize; 71 pthread_attr_setstack(&thread_attr, (void*)stackbottom, stacksize);
|
/external/valgrind/main/coregrind/m_syswrap/ |
syswrap-amd64-darwin.c | 289 Addr stacksize, Addr flags, Addr sp) 295 // 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); 315 vex->guest_R8 = stacksize; 326 Addr stack = VG_PGROUNDUP(sp) - stacksize; 327 tst->client_stack_highest_word = stack+stacksize; 328 tst->client_stack_szB = stacksize; 332 stack+stacksize, pthread_structsize, 336 stack, stacksize, 390 SizeT stacksize; local 441 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_word = stack+stacksize; 317 tst->client_stack_szB = stacksize; 321 stack+stacksize, pthread_structsize, 325 stack, stacksize, 386 SizeT stacksize; local [all...] |
priv_syswrap-darwin.h | 617 Addr stacksize, Addr flags, Addr sp);
|
/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/valgrind/main/coregrind/m_initimg/ |
initimg-darwin.c | 331 unsigned stacksize; /* total client stack size */ local 387 stacksize = 397 if (0) VG_(printf)("stacksize = %d\n", stacksize); 400 client_SP = clstack_end - stacksize; 419 VG_(printf)("stringsize=%d auxsize=%d stacksize=%d maxsize=0x%x\n" 422 stringsize, auxsize, stacksize, (Int)clstack_max_size,
|
initimg-linux.c | 407 unsigned stacksize; /* total client stack size */ local 473 stacksize = 483 if (0) VG_(printf)("stacksize = %d\n", stacksize); 486 client_SP = clstack_end - stacksize; 503 VG_(printf)("stringsize=%d auxsize=%d stacksize=%d maxsize=0x%x\n" 506 stringsize, auxsize, stacksize, (Int)clstack_max_size, 572 "This may be the result of a very large --main-stacksize=\n"); 884 notice of the --main-stacksize value. This makes it possible 886 simply by specifying --main-stacksize. * [all...] |
/external/valgrind/main/coregrind/m_ume/ |
macho.c | 356 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/openssl/crypto/threads/ |
netware.bat | 32 set LFLAGS=-msgstyle gcc -zerobss -stacksize 32768 -nostdlib -sym internal
|
/external/javassist/src/main/javassist/bytecode/ |
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) { 140 maxStack = stacksize; 797 int stacksize = 0; local 801 stacksize += addLoad(stacksize + offset, params[i]); 804 return stacksize; [all...] |
/external/javassist/src/main/javassist/util/proxy/ |
ProxyFactory.java | 1194 int stacksize = 0; local [all...] |
/external/markdown/ |
test-markdown.py | 61 def stacksize(since=0.0): function
|
/external/valgrind/tsan/ |
ts_valgrind_intercepts.c | 646 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); [all...] |