/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...] |
/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 529 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/libnfc-nci/halimpl/bcm2079x/gki/common/ |
gki_debug.c | 110 int j, stacksize; local 114 stacksize = (int) gki_cb.com.OSStackSize[task]; 118 for(j = 0; j < stacksize; j++)
|
/external/libnfc-nci/src/gki/common/ |
gki_debug.c | 110 int j, stacksize; local 114 stacksize = (int) gki_cb.com.OSStackSize[task]; 118 for(j = 0; j < stacksize; j++)
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_posix_libcdep.cc | 300 uptr stacksize = 0; local 301 my_pthread_attr_getstack(attr, (void**)&stackaddr, &stacksize); 302 // GLibC will return (0 - stacksize) as the stack address in the case when 303 // stacksize is set, but stackaddr is not. 304 bool stack_set = (stackaddr != 0) && (stackaddr + stacksize != 0); 307 if (stacksize < minstacksize) { 309 if (stacksize != 0) { 310 VPrintf(1, "Sanitizer: increasing stacksize %zu->%zu\n", stacksize, 316 "%zu < %zu\n", stacksize, minstacksize) [all...] |
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_mac.cc | 219 uptr stacksize = pthread_get_stacksize_np(pthread_self()); local 224 stacksize == (1 << 19)) { 229 stacksize = rl.rlim_cur; 231 stacksize = kMaxThreadStackSize; 236 *stack_bottom = *stack_top - 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/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 473 stacksize = 484 client_SP = clstack_end - stacksize; 502 VG_(printf)("stringsize=%lu, auxsize=%lu, stacksize=%lu, maxsize=%#lx\n" 505 stringsize, auxsize, stacksize, clstack_max_size, 568 "This may be the result of a very large --main-stacksize=\n"); 898 --main-stacksize value. This makes it possible to run programs with 900 --main-stacksize. */ 904 - If a larger --main-stacksize value is specified, use that instead. [all...] |
initimg-linux.c | 407 unsigned stacksize; /* total client stack size */ local 471 stacksize = 481 if (0) VG_(printf)("stacksize = %u\n", stacksize); 484 client_SP = clstack_end - stacksize; 497 VG_(printf)("stringsize=%u auxsize=%u stacksize=%u maxsize=0x%lx\n" 500 stringsize, auxsize, stacksize, clstack_max_size, 566 "This may be the result of a very large --main-stacksize=\n"); 947 notice of the --main-stacksize value. This makes it possible 949 simply by specifying --main-stacksize. * [all...] |
/external/valgrind/coregrind/m_ume/ |
macho.c | 380 vki_size_t stacksize = VG_PGROUNDUP(default_stack_size()); local 381 vm_address_t stackbase = VG_PGROUNDDN(stack_end+1-stacksize); 384 res = VG_(am_mmap_anon_fixed_client)(stackbase, stacksize, VKI_PROT_READ|VKI_PROT_WRITE|VKI_PROT_EXEC); 385 check_mmap(res, stackbase, stacksize, "load_unixthread1"); 583 err = handle_lcmain ( &stack_start, &stack_end, epcmd->stacksize );
|
/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/opencv3/modules/imgproc/src/ |
convhull.cpp | 54 int stacksize = 3; local 89 stack[stacksize] = pnext; 90 stacksize++; 103 stack[stacksize-2] = pnext; 105 pprev = stack[stacksize-4]; 106 stacksize--; 113 stack[stacksize-1] = pnext; 117 return --stacksize;
|
/external/dng_sdk/source/ |
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) 291 (*attr)->stacksize = stacksize; 298 int dng_pthread_attr_getstacksize(const dng_pthread_attr_t *attr, size_t *stacksize) 300 if (attr == NULL || (*attr) == NULL || stacksize == NULL) 303 *stacksize = (*attr)->stacksize; 325 size_t stacksize = 0 local [all...] |
/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...] |
/toolchain/binutils/binutils-2.25/include/mach-o/ |
external.h | 331 unsigned char stacksize[8]; /* Initial stack size, if no null. */ member in struct:mach_o_entry_point_command_external
|
/external/javassist/src/main/javassist/util/proxy/ |
ProxyFactory.java | 1194 int stacksize = 0; local [all...] |
/prebuilts/go/darwin-x86/src/cmd/yacc/ |
yacc.go | 175 var stacksize = 200 var 387 if stacksize < 1 { 722 fmt.Fprintf(ftable, "const %sMaxDepth = %v\n", prefix, stacksize) [all...] |
/prebuilts/go/linux-x86/src/cmd/yacc/ |
yacc.go | 175 var stacksize = 200 var 387 if stacksize < 1 { 722 fmt.Fprintf(ftable, "const %sMaxDepth = %v\n", prefix, stacksize) [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
mach-o.h | 535 bfd_uint64_t stacksize; member in struct:bfd_mach_o_main_command
|