/external/javassist/src/main/javassist/ |
D | CtNewWrappedConstructor.java | 55 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()
|
D | CtNewWrappedMethod.java | 59 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()
|
D | CtField.java | 998 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 …]
|
D | CtClassType.java | 1464 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/valgrind/coregrind/m_syswrap/ |
D | syswrap-x86-darwin.c | 277 Addr stacksize, Addr flags, Addr sp) in pthread_hijack() argument 304 vex->guest_EDI = stacksize; in pthread_hijack() 315 Addr stack = VG_PGROUNDUP(sp) - stacksize; in pthread_hijack() 316 tst->client_stack_highest_byte = stack+stacksize-1; in pthread_hijack() 317 tst->client_stack_szB = stacksize; in pthread_hijack() 321 stack+stacksize, pthread_structsize, in pthread_hijack() 325 stack, stacksize, in pthread_hijack() 386 SizeT stacksize; in wqthread_hijack() local 477 stacksize = 512*1024; // wq stacks are always DEFAULT_STACK_SIZE in wqthread_hijack() 478 stack = VG_PGROUNDUP(sp) - stacksize; in wqthread_hijack() [all …]
|
D | syswrap-amd64-darwin.c | 337 Addr stacksize, Addr flags, Addr sp) in pthread_hijack() argument 363 vex->guest_R8 = stacksize; in pthread_hijack() 374 Addr stack = VG_PGROUNDUP(sp) - stacksize; in pthread_hijack() 375 tst->client_stack_highest_byte = stack+stacksize-1; in pthread_hijack() 376 tst->client_stack_szB = stacksize; in pthread_hijack() 380 stack+stacksize, pthread_structsize, in pthread_hijack() 384 stack, stacksize, in pthread_hijack() 438 SizeT stacksize; in wqthread_hijack() local 529 stacksize = 512*1024; // wq stacks are always DEFAULT_STACK_SIZE in wqthread_hijack() 530 stack = VG_PGROUNDUP(sp) - stacksize; in wqthread_hijack() [all …]
|
/external/opencv/cv/src/ |
D | cvconvhull.cpp | 50 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/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_linux_libcdep.cc | 100 uptr stacksize = rl.rlim_cur; in GetThreadStackTopAndBottom() local 101 if (stacksize > end - prev_end) in GetThreadStackTopAndBottom() 102 stacksize = end - prev_end; in GetThreadStackTopAndBottom() 106 if (stacksize > kMaxThreadStackSize) in GetThreadStackTopAndBottom() 107 stacksize = kMaxThreadStackSize; in GetThreadStackTopAndBottom() 109 *stack_bottom = end - stacksize; in GetThreadStackTopAndBottom() 115 uptr stacksize = 0; in GetThreadStackTopAndBottom() local 117 my_pthread_attr_getstack(&attr, &stackaddr, &stacksize); in GetThreadStackTopAndBottom() 120 CHECK_LE(stacksize, kMaxThreadStackSize); // Sanity check. in GetThreadStackTopAndBottom() 121 *stack_top = (uptr)stackaddr + stacksize; in GetThreadStackTopAndBottom()
|
D | sanitizer_posix_libcdep.cc | 300 uptr stacksize = 0; in AdjustStackSize() local 301 my_pthread_attr_getstack(attr, (void**)&stackaddr, &stacksize); in AdjustStackSize() 304 bool stack_set = (stackaddr != 0) && (stackaddr + stacksize != 0); in AdjustStackSize() 307 if (stacksize < minstacksize) { in AdjustStackSize() 309 if (stacksize != 0) { in AdjustStackSize() 310 VPrintf(1, "Sanitizer: increasing stacksize %zu->%zu\n", stacksize, in AdjustStackSize() 316 "%zu < %zu\n", stacksize, minstacksize); in AdjustStackSize()
|
D | sanitizer_mac.cc | 219 uptr stacksize = pthread_get_stacksize_np(pthread_self()); in GetThreadStackTopAndBottom() local 224 stacksize == (1 << 19)) { in GetThreadStackTopAndBottom() 229 stacksize = rl.rlim_cur; in GetThreadStackTopAndBottom() 231 stacksize = kMaxThreadStackSize; in GetThreadStackTopAndBottom() 236 *stack_bottom = *stack_top - stacksize; in GetThreadStackTopAndBottom()
|
/external/dng_sdk/source/ |
D | dng_pthread.cpp | 250 size_t stacksize; member 263 newAttrs->stacksize = 0; in dng_pthread_attr_init() 286 int dng_pthread_attr_setstacksize(dng_pthread_attr_t *attr, size_t stacksize) in dng_pthread_attr_setstacksize() argument 291 (*attr)->stacksize = stacksize; in dng_pthread_attr_setstacksize() 298 int dng_pthread_attr_getstacksize(const dng_pthread_attr_t *attr, size_t *stacksize) in dng_pthread_attr_getstacksize() argument 300 if (attr == NULL || (*attr) == NULL || stacksize == NULL) in dng_pthread_attr_getstacksize() 303 *stacksize = (*attr)->stacksize; in dng_pthread_attr_getstacksize() 325 size_t stacksize = 0; in dng_pthread_create() local 328 dng_pthread_attr_getstacksize (attrs, &stacksize); in dng_pthread_create() 333 result = _beginthreadex(NULL, (unsigned)stacksize, trampoline, args.get(), 0, &threadID); in dng_pthread_create()
|
D | dng_pthread.h | 96 int dng_pthread_attr_setstacksize(dng_pthread_attr_t *attr, size_t stacksize); 97 int dng_pthread_attr_getstacksize(const dng_pthread_attr_t *attr, size_t *stacksize);
|
/external/valgrind/memcheck/tests/solaris/ |
D | thr_daemon_exit_standalone.c | 93 static void *allocate_stack(size_t stacksize) { in allocate_stack() argument 111 [SIZE] "g" (stacksize), [SYSNO] "n" (SYS_mmap) in allocate_stack() 126 [SIZE] "g" (stacksize), [SYSNO] "n" (SYS_mmap) in allocate_stack()
|
D | lsframe2.vgtest | 2 vgopts: -q --main-stacksize=68500000
|
D | lsframe1.vgtest | 2 vgopts: -q --main-stacksize=67200000 --max-stackframe=67200000
|
/external/pcre/dist/ |
D | pcre_jit_compile.c | 272 int stacksize; member 6859 int stacksize; in match_once_common() local 6867 stacksize = needs_control_head ? 1 : 0; in match_once_common() 6869 stacksize++; in match_once_common() 6870 free_stack(common, stacksize); in match_once_common() 6887 stacksize = (ket != OP_KET || has_alternatives) ? 2 : 1; in match_once_common() 6888 …TOP, 0, SLJIT_MEM1(SLJIT_SP), private_data_ptr, SLJIT_IMM, (framesize + stacksize) * sizeof(sljit_… in match_once_common() 6902 static SLJIT_INLINE int match_capture_common(compiler_common *common, int stacksize, int offset, in… in match_capture_common() argument 6910 OP1(SLJIT_MOV, SLJIT_MEM1(STACK_TOP), STACK(stacksize), TMP1, 0); in match_capture_common() 6911 stacksize++; in match_capture_common() [all …]
|
/external/opencv3/modules/imgproc/src/ |
D | convhull.cpp | 54 int stacksize = 3; in Sklansky_() local 89 stack[stacksize] = pnext; in Sklansky_() 90 stacksize++; in Sklansky_() 103 stack[stacksize-2] = pnext; in Sklansky_() 105 pprev = stack[stacksize-4]; in Sklansky_() 106 stacksize--; in Sklansky_() 113 stack[stacksize-1] = pnext; in Sklansky_() 117 return --stacksize; in Sklansky_()
|
/external/valgrind/coregrind/m_initimg/ |
D | initimg-darwin.c | 325 unsigned stacksize; /* total client stack size */ in setup_client_stack() local 378 stacksize = in setup_client_stack() 388 if (0) VG_(printf)("stacksize = %d\n", stacksize); in setup_client_stack() 391 client_SP = clstack_end + 1 - stacksize; in setup_client_stack() 413 stringsize, auxsize, stacksize, (Int)clstack_max_size, in setup_client_stack()
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_linux_test.cc | 220 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/valgrind/memcheck/tests/linux/ |
D | lsframe2.vgtest | 2 vgopts: --main-stacksize=68500000
|
D | lsframe1.vgtest | 2 vgopts: --main-stacksize=67200000 --max-stackframe=67200000
|
/external/libnfc-nci/src/gki/common/ |
D | gki_debug.c | 110 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/libnfc-nci/halimpl/bcm2079x/gki/common/ |
D | gki_debug.c | 110 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/javassist/src/main/javassist/bytecode/ |
D | Bytecode.java | 138 public Bytecode(ConstPool cp, int stacksize, int localvars) { in Bytecode() argument 140 maxStack = stacksize; in Bytecode() 797 int stacksize = 0; in addLoadParameters() local 801 stacksize += addLoad(stacksize + offset, params[i]); in addLoadParameters() 804 return stacksize; in addLoadParameters()
|
/external/valgrind/memcheck/tests/ |
D | err_disable4.vgtest | 2 vgopts: -q --num-callers=3 --valgrind-stacksize=131072
|