Searched refs:stacksize (Results 1 - 25 of 58) sorted by relevance

123

/external/javassist/src/main/javassist/
H A DCtNewWrappedConstructor.java55 int stacksize, stacksize2;
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);
H A DCtNewWrappedMethod.java59 int stacksize = makeBody0(clazz, classfile, wrappedBody, isStatic,
61 code.setMaxStack(stacksize);
83 int stacksize = compileParameterList(code, parameters,
117 if (stacksize < stacksize2 + 2)
118 stacksize = stacksize2 + 2;
120 return stacksize;
H A DCtField.java998 int stacksize;
1006 stacksize = 4;
1008 stacksize = compileStringParameter(code) + 4;
1011 stacksize += CtNewWrappedMethod.compileParameterList(code,
1016 return stacksize;
1046 int stacksize = 2;
1051 stacksize += compileStringParameter(code);
1056 return stacksize;
1094 int stacksize;
1100 stacksize
[all...]
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/ltp/include/
H A Dtst_clone.h33 void *arg, size_t stacksize);
/external/valgrind/coregrind/m_syswrap/
H A Dsyswrap-x86-darwin.c265 " 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
276 pthread_hijack(Addr self, Addr kport, Addr func, Addr func_arg, Addr stacksize, Addr flags, Addr sp) argument
[all...]
H A Dsyswrap-amd64-darwin.c337 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
530 stacksize
336 pthread_hijack(Addr self, Addr kport, Addr func, Addr func_arg, Addr stacksize, Addr flags, Addr sp) argument
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_new.py113 stacksize = c.co_stacksize
126 d = new.code(argcount, nlocals, stacksize, flags, codestring,
131 d = new.code(argcount, nlocals, stacksize, flags, codestring,
137 -argcount, nlocals, stacksize, flags, codestring,
142 argcount, -nlocals, stacksize, flags, codestring,
147 argcount, nlocals, stacksize, flags, codestring,
154 d = new.code(argcount, nlocals, stacksize, flags, codestring,
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
H A D1-5.c111 long stacksize = sysconf(_SC_THREAD_STACK_MIN); /* make sure we touch the current stack memory */ local
135 if (((long)&current) - ((long)arg) >= stacksize) {
143 if (((long)arg) - ((long)&current) >= stacksize) {
/external/ltp/testcases/kernel/sched/pthreads/
H A Dpth_str02.c115 size_t stacksize = 1046528; local
125 if (pthread_attr_setstacksize(&attr, stacksize))
/external/syslinux/core/lwip/src/arch/
H A Dsys_arch.c127 void *arg, int stacksize, int prio)
129 return start_thread(name, stacksize, prio, thread, arg);
126 sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int prio) argument
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux_libcdep.cc98 // 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, kMaxThreadStackSiz
[all...]
H A Dsanitizer_posix_libcdep.cc310 uptr stacksize = 0; local
311 my_pthread_attr_getstack(attr, (void**)&stackaddr, &stacksize);
312 // GLibC will return (0 - stacksize) as the stack address in the case when
313 // stacksize is set, but stackaddr is not.
314 bool stack_set = (stackaddr != 0) && (stackaddr + stacksize != 0);
317 if (stacksize < minstacksize) {
319 if (stacksize != 0) {
320 VPrintf(1, "Sanitizer: increasing stacksize %zu->%zu\n", stacksize,
326 "%zu < %zu\n", stacksize, minstacksiz
[all...]
H A Dsanitizer_mac.cc251 uptr stacksize = pthread_get_stacksize_np(pthread_self()); local
256 stacksize == (1 << 19)) {
261 stacksize = rl.rlim_cur;
263 stacksize = kMaxThreadStackSize;
268 *stack_bottom = *stack_top - stacksize;
/external/dng_sdk/source/
H A Ddng_pthread.cpp250 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) argument
291 (*attr)->stacksize = stacksize;
298 int dng_pthread_attr_getstacksize(const dng_pthread_attr_t *attr, size_t *stacksize) argument
300 if (attr == NULL || (*attr) == NULL || stacksize == NULL)
303 *stacksize = (*attr)->stacksize;
325 size_t stacksize local
[all...]
H A Ddng_pthread.h103 int dng_pthread_attr_setstacksize(dng_pthread_attr_t *attr, size_t stacksize);
104 int dng_pthread_attr_getstacksize(const dng_pthread_attr_t *attr, size_t *stacksize);
/external/valgrind/memcheck/tests/solaris/
H A Dthr_daemon_exit_standalone.c97 static void *allocate_stack(size_t stacksize) { argument
115 [SIZE] "g" (stacksize), [SYSNO] "n" (SYS_mmap)
130 [SIZE] "g" (stacksize), [SYSNO] "n" (SYS_mmap)
/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/skia/third_party/lua/src/
H A Dlstate.c137 L1->stacksize = BASIC_STACK_SIZE;
141 L1->stack_last = L1->stack + L1->stacksize - EXTRA_STACK;
158 luaM_freearray(L, L->stack, L->stacksize); /* free stack array */
206 L->stacksize = 0;
/external/syslinux/com32/lua/src/
H A Dlstate.c142 L1->stacksize = BASIC_STACK_SIZE;
146 L1->stack_last = L1->stack + L1->stacksize - EXTRA_STACK;
163 luaM_freearray(L, L->stack, L->stacksize); /* free stack array */
213 L->stacksize = 0;
/external/valgrind/coregrind/m_initimg/
H A Dinitimg-darwin.c325 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,
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_linux_test.cc220 size_t stacksize; local
221 pthread_attr_getstack(&attr, &stackaddr, &stacksize);
222 return (void *)((uptr)stackaddr + stacksize - descr_addr);
/external/pcre/dist2/src/
H A Dpcre2_jit_compile.c286 int stacksize; member in struct:bracketpos_backtrack
7703 int stacksize; local
7711 stacksize = needs_control_head ? 1 : 0;
7713 stacksize++;
7715 if (stacksize > 0)
7716 free_stack(common, stacksize);
7733 stacksize = (ket != OP_KET || has_alternatives) ? 2 : 1;
7734 OP2(SLJIT_ADD, STACK_TOP, 0, SLJIT_MEM1(SLJIT_SP), private_data_ptr, SLJIT_IMM, (framesize + stacksize) * sizeof(sljit_sw));
7748 static SLJIT_INLINE int match_capture_common(compiler_common *common, int stacksize, int offset, int private_data_ptr) argument
7756 OP1(SLJIT_MOV, SLJIT_MEM1(STACK_TOP), STACK(stacksize), TMP
7834 int i, stacksize; local
8383 int stacksize; local
9900 int opcode, stacksize, alt_count, alt_max; local
[all...]
/external/ltp/testcases/misc/math/float/
H A Dmain.c110 size_t stacksize = 2093056; local
220 if (pthread_attr_setstacksize(&newattr, stacksize))
/external/python/cpython2/Lib/plat-mac/
H A Dcfmfile.py116 self.stacksize,
133 self.stacksize,

Completed in 837 milliseconds

123