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

1 2

  /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...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-x86-darwin.c 266 " 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
    [all...]
syswrap-amd64-darwin.c 321 Addr stacksize, Addr flags, Addr sp)
327 // 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);
347 vex->guest_R8 = stacksize;
358 Addr stack = VG_PGROUNDUP(sp) - stacksize;
359 tst->client_stack_highest_word = stack+stacksize;
360 tst->client_stack_szB = stacksize;
364 stack+stacksize, pthread_structsize,
368 stack, stacksize,
422 SizeT stacksize; local
493 stacksize = 512*1024; // wq stacks are always DEFAULT_STACK_SIZ
    [all...]
priv_syswrap-darwin.h 631 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/compiler-rt/lib/sanitizer_common/
sanitizer_linux.cc 195 // Get stacksize from rlimit, but clip it so that it does not overlap
197 uptr stacksize = rl.rlim_cur; local
198 if (stacksize > end - prev_end)
199 stacksize = end - prev_end;
203 if (stacksize > kMaxThreadStackSize)
204 stacksize = kMaxThreadStackSize;
206 *stack_bottom = end - stacksize;
211 uptr stacksize = 0; local
213 pthread_attr_getstack(&attr, &stackaddr, (size_t*)&stacksize);
216 *stack_top = (uptr)stackaddr + stacksize;
    [all...]
sanitizer_mac.cc 130 uptr stacksize = pthread_get_stacksize_np(pthread_self()); local
133 *stack_bottom = *stack_top - stacksize;
  /external/bluetooth/bluedroid/gki/common/
gki_debug.c 111 int j, stacksize; local
115 stacksize = (int) gki_cb.com.OSStackSize[task];
119 for(j = 0; j < stacksize; j++)
  /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/valgrind/main/coregrind/m_initimg/
initimg-darwin.c 332 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,
initimg-linux.c 403 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");
906 notice of the --main-stacksize value. This makes it possible
908 simply by specifying --main-stacksize. *
    [all...]
  /external/valgrind/main/coregrind/m_ume/
macho.c 366 vki_size_t stacksize = VG_PGROUNDUP(default_stack_size()); local
367 vm_address_t stackbase = VG_PGROUNDDN(stack_end-stacksize);
370 res = VG_(am_mmap_anon_fixed_client)(stackbase, stacksize, VKI_PROT_READ|VKI_PROT_WRITE|VKI_PROT_EXEC);
371 check_mmap(res, stackbase, stacksize, "load_unixthread1");
569 err = handle_lcmain ( &stack_start, &stack_end, epcmd->stacksize );
  /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/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
gki_ulinux.c 210 ** stacksize - (input) size of the stack allocated for the task
219 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize, void* pCondVar, void* pMutex)
227 GKI_TRACE_5 ("GKI_create_task func=0x%x id=%d name=%s stack=0x%x stackSize=%d", task_entry, task_id, taskname, stack, stacksize);
299 stacksize);
    [all...]
  /external/libnfc-nci/src/gki/ulinux/
gki_ulinux.c 207 ** stacksize - (input) size of the stack allocated for the task
216 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize, void* pCondVar, void* pMutex)
224 GKI_TRACE_5 ("GKI_create_task func=0x%x id=%d name=%s stack=0x%x stackSize=%d", task_entry, task_id, taskname, stack, stacksize);
296 stacksize);
    [all...]
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 828 extern "C" int pthread_attr_setstacksize(void *attr, uptr stacksize);
829 extern "C" int pthread_attr_getstacksize(void *attr, uptr *stacksize);
839 uptr stacksize = 0; local
840 pthread_attr_getstacksize(attr, &stacksize);
843 if (stacksize < minstacksize) {
845 Printf("MemorySanitizer: increasing stacksize %zu->%zu\n", stacksize,
  /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/bluetooth/bluedroid/gki/ulinux/
gki_ulinux.c 234 ** stacksize - (input) size of the stack allocated for the task
243 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize)
252 (char*) taskname, (int) stack, (int)stacksize);
327 (int)stacksize);
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 47 extern "C" int pthread_attr_setstacksize(void *attr, uptr stacksize);
48 extern "C" int pthread_attr_getstacksize(void *attr, uptr *stacksize);
741 uptr stacksize = 0; local
742 pthread_attr_getstacksize(attr, &stacksize);
745 if (stacksize < minstacksize) {
746 DPrintf("ThreadSanitizer: stacksize %zu->%zu\n", stacksize, minstacksize);
    [all...]

Completed in 581 milliseconds

1 2