Home
last modified time | relevance | path

Searched refs:stacksize (Results 1 – 25 of 55) sorted by relevance

123

/external/javassist/src/main/javassist/
DCtNewWrappedConstructor.java55 int stacksize, stacksize2; in makeBody() local
62 stacksize = 1; in makeBody()
66 stacksize = code.addLoadParameters(parameters, 1) + 1; in makeBody()
71 stacksize = compileParameterList(code, parameters, 1); in makeBody()
82 if (stacksize < stacksize2) in makeBody()
83 stacksize = stacksize2; in makeBody()
94 if (stacksize < stacksize2) in makeBody()
95 stacksize = stacksize2; in makeBody()
98 code.setMaxStack(stacksize); in makeBody()
DCtNewWrappedMethod.java59 int stacksize = makeBody0(clazz, classfile, wrappedBody, isStatic, in makeBody() local
61 code.setMaxStack(stacksize); in makeBody()
83 int stacksize = compileParameterList(code, parameters, in makeBody0() local
117 if (stacksize < stacksize2 + 2) in makeBody0()
118 stacksize = stacksize2 + 2; in makeBody0()
120 return stacksize; in makeBody0()
DCtField.java998 int stacksize; in compile() local
1006 stacksize = 4; in compile()
1008 stacksize = compileStringParameter(code) + 4; in compile()
1011 stacksize += CtNewWrappedMethod.compileParameterList(code, in compile()
1016 return stacksize; in compile()
1046 int stacksize = 2; in compileIfStatic() local
1051 stacksize += compileStringParameter(code); in compileIfStatic()
1056 return stacksize; in compileIfStatic()
1094 int stacksize; in compile() local
1100 stacksize = 2; in compile()
[all …]
DCtClassType.java1464 int stacksize = 0; in modifyClassConstructor() local
1472 if (stacksize < s) in modifyClassConstructor()
1473 stacksize = s; in modifyClassConstructor()
1478 modifyClassConstructor(cf, code, stacksize, 0); in modifyClassConstructor()
1482 int stacksize, int localsize) in modifyClassConstructor() argument
1488 code.setMaxStack(stacksize); in modifyClassConstructor()
1508 if (maxstack < stacksize) in modifyClassConstructor()
1509 codeAttr.setMaxStack(stacksize); in modifyClassConstructor()
1549 int stacksize = makeFieldInitializer(init, params); in modifyConstructors() local
1550 insertAuxInitializer(codeAttr, init, stacksize); in modifyConstructors()
[all …]
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
Dpthread_attr_setstacksize.c42 pthread_attr_setstacksize (pthread_attr_t * attr, size_t stacksize) in pthread_attr_setstacksize() argument
88 if (stacksize < PTHREAD_STACK_MIN) in pthread_attr_setstacksize()
101 (*attr)->stacksize = stacksize; in pthread_attr_setstacksize()
Dpthread_attr_getstacksize.c46 pthread_attr_getstacksize (const pthread_attr_t * attr, size_t * stacksize) in pthread_attr_getstacksize() argument
91 *stacksize = (*attr)->stacksize; in pthread_attr_getstacksize()
/external/valgrind/main/coregrind/m_syswrap/
Dsyswrap-x86-darwin.c278 Addr stacksize, Addr flags, Addr sp) in pthread_hijack() argument
305 vex->guest_EDI = stacksize; in pthread_hijack()
316 Addr stack = VG_PGROUNDUP(sp) - stacksize; in pthread_hijack()
317 tst->client_stack_highest_word = stack+stacksize; in pthread_hijack()
318 tst->client_stack_szB = stacksize; in pthread_hijack()
322 stack+stacksize, pthread_structsize, in pthread_hijack()
326 stack, stacksize, in pthread_hijack()
387 SizeT stacksize; in wqthread_hijack() local
454 stacksize = 512*1024; // wq stacks are always DEFAULT_STACK_SIZE in wqthread_hijack()
455 stack = VG_PGROUNDUP(sp) - stacksize; in wqthread_hijack()
[all …]
Dsyswrap-amd64-darwin.c321 Addr stacksize, Addr flags, Addr sp) in pthread_hijack() argument
347 vex->guest_R8 = stacksize; in pthread_hijack()
358 Addr stack = VG_PGROUNDUP(sp) - stacksize; in pthread_hijack()
359 tst->client_stack_highest_word = stack+stacksize; in pthread_hijack()
360 tst->client_stack_szB = stacksize; in pthread_hijack()
364 stack+stacksize, pthread_structsize, in pthread_hijack()
368 stack, stacksize, in pthread_hijack()
422 SizeT stacksize; in wqthread_hijack() local
504 stacksize = 512*1024; // wq stacks are always DEFAULT_STACK_SIZE in wqthread_hijack()
505 stack = VG_PGROUNDUP(sp) - stacksize; in wqthread_hijack()
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_linux_libcdep.cc96 uptr stacksize = rl.rlim_cur; in GetThreadStackTopAndBottom() local
97 if (stacksize > end - prev_end) in GetThreadStackTopAndBottom()
98 stacksize = end - prev_end; in GetThreadStackTopAndBottom()
102 if (stacksize > kMaxThreadStackSize) in GetThreadStackTopAndBottom()
103 stacksize = kMaxThreadStackSize; in GetThreadStackTopAndBottom()
105 *stack_bottom = end - stacksize; in GetThreadStackTopAndBottom()
111 uptr stacksize = 0; in GetThreadStackTopAndBottom() local
113 my_pthread_attr_getstack(&attr, &stackaddr, (size_t*)&stacksize); in GetThreadStackTopAndBottom()
116 CHECK_LE(stacksize, kMaxThreadStackSize); // Sanity check. in GetThreadStackTopAndBottom()
117 *stack_top = (uptr)stackaddr + stacksize; in GetThreadStackTopAndBottom()
[all …]
Dsanitizer_mac.cc159 uptr stacksize = pthread_get_stacksize_np(pthread_self()); in GetThreadStackTopAndBottom() local
164 stacksize == (1 << 19)) { in GetThreadStackTopAndBottom()
169 stacksize = rl.rlim_cur; in GetThreadStackTopAndBottom()
171 stacksize = kMaxThreadStackSize; in GetThreadStackTopAndBottom()
176 *stack_bottom = *stack_top - stacksize; in GetThreadStackTopAndBottom()
/external/opencv/cv/src/
Dcvconvhull.cpp50 int stacksize = 3; in icvSklansky_32s() local
85 stack[stacksize] = pnext; in icvSklansky_32s()
86 stacksize++; in icvSklansky_32s()
99 stack[stacksize-2] = pnext; in icvSklansky_32s()
101 pprev = stack[stacksize-4]; in icvSklansky_32s()
102 stacksize--; in icvSklansky_32s()
109 stack[stacksize-1] = pnext; in icvSklansky_32s()
113 return --stacksize; in icvSklansky_32s()
123 int stacksize = 3; in icvSklansky_32f() local
158 stack[stacksize] = pnext; in icvSklansky_32f()
[all …]
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
Dtestutil.cc138 void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize) { in RunManyThreadsWithId() argument
145 hThread[i] = CreateThread(NULL, stacksize, RunFunctionInThreadWithId, in RunManyThreadsWithId()
200 void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize) { in RunManyThreadsWithId() argument
203 pthread_attr_setstacksize(&attr, stacksize); in RunManyThreadsWithId()
Dtestutil.h53 extern "C" void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
Dtestutil.cc138 void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize) { in RunManyThreadsWithId() argument
145 hThread[i] = CreateThread(NULL, stacksize, RunFunctionInThreadWithId, in RunManyThreadsWithId()
200 void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize) { in RunManyThreadsWithId() argument
203 pthread_attr_setstacksize(&attr, stacksize); in RunManyThreadsWithId()
Dtestutil.h53 extern "C" void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize);
/external/chromium_org/ppapi/utility/threading/
Dsimple_thread.h32 explicit SimpleThread(const InstanceHandle& instance, size_t stacksize);
61 SimpleThread(const SimpleThread&, size_t stacksize);
Dsimple_thread.cc57 size_t stacksize) in SimpleThread() argument
60 stacksize_(stacksize), in SimpleThread()
/external/valgrind/main/coregrind/m_initimg/
Dinitimg-darwin.c332 unsigned stacksize; /* total client stack size */ in setup_client_stack() local
388 stacksize = in setup_client_stack()
398 if (0) VG_(printf)("stacksize = %d\n", stacksize); in setup_client_stack()
401 client_SP = clstack_end - stacksize; in setup_client_stack()
423 stringsize, auxsize, stacksize, (Int)clstack_max_size, in setup_client_stack()
/external/chromium_org/third_party/skia/third_party/lua/src/
Dlstate.c137 L1->stacksize = BASIC_STACK_SIZE; in stack_init()
141 L1->stack_last = L1->stack + L1->stacksize - EXTRA_STACK; in stack_init()
158 luaM_freearray(L, L->stack, L->stacksize); /* free stack array */ in freestack()
206 L->stacksize = 0; in preinit_state()
/external/valgrind/main/memcheck/tests/linux/
Dlsframe2.vgtest2 vgopts: --main-stacksize=68500000
Dlsframe1.vgtest2 vgopts: --main-stacksize=67200000 --max-stackframe=67200000
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_linux_test.cc220 size_t stacksize; in thread_descriptor_size_test_func() local
221 pthread_attr_getstack(&attr, &stackaddr, &stacksize); in thread_descriptor_size_test_func()
222 return (void *)((uptr)stackaddr + stacksize - descr_addr); in thread_descriptor_size_test_func()
/external/libnfc-nci/src/gki/common/
Dgki_debug.c110 int j, stacksize; in gki_calc_stack() local
114 stacksize = (int) gki_cb.com.OSStackSize[task]; in gki_calc_stack()
118 for(j = 0; j < stacksize; j++) in gki_calc_stack()
/external/bluetooth/bluedroid/gki/common/
Dgki_debug.c111 int j, stacksize; in gki_calc_stack() local
115 stacksize = (int) gki_cb.com.OSStackSize[task]; in gki_calc_stack()
119 for(j = 0; j < stacksize; j++) in gki_calc_stack()
/external/libnfc-nci/halimpl/bcm2079x/gki/common/
Dgki_debug.c110 int j, stacksize; in gki_calc_stack() local
114 stacksize = (int) gki_cb.com.OSStackSize[task]; in gki_calc_stack()
118 for(j = 0; j < stacksize; j++) in gki_calc_stack()

123