/external/valgrind/main/memcheck/tests/linux/ |
lsframe2.vgtest | 2 vgopts: --main-stacksize=68500000
|
lsframe1.vgtest | 2 vgopts: --main-stacksize=67200000 --max-stackframe=67200000
|
lsframe1.c | 4 generates a very large stack, --main-stacksize=67200000
|
lsframe2.c | 4 --main-stacksize=67117057 (on amd64-linux) or above, but works fine
|
/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;
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_linux_libcdep.cc | 51 // Get stacksize from rlimit, but clip it so that it does not overlap 53 uptr stacksize = rl.rlim_cur; local 54 if (stacksize > end - prev_end) 55 stacksize = end - prev_end; 59 if (stacksize > kMaxThreadStackSize) 60 stacksize = kMaxThreadStackSize; 62 *stack_bottom = end - stacksize; 68 uptr stacksize = 0; local 70 pthread_attr_getstack(&attr, &stackaddr, (size_t*)&stacksize); 73 CHECK_LE(stacksize, kMaxThreadStackSize); // Sanity check 267 size_t stacksize = 0; local [all...] |
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
pthread_attr_setstacksize.c | 42 pthread_attr_setstacksize (pthread_attr_t * attr, size_t stacksize) 53 * stacksize 76 * EINVAL 'attr' is invalid or stacksize too 88 if (stacksize < PTHREAD_STACK_MIN) 101 (*attr)->stacksize = stacksize;
|
pthread_attr_getstacksize.c | 46 pthread_attr_getstacksize (const pthread_attr_t * attr, size_t * stacksize) 57 * stacksize 91 *stacksize = (*attr)->stacksize;
|
create.c | 93 unsigned int stackSize; 145 stackSize = (unsigned int)a->stacksize; 185 * Default stackSize 187 stackSize = PTHREAD_STACK_MIN; 208 stackSize, /* default stack size */ 241 (HANDLE) _beginthread (ptw32_threadStart, stackSize, /* default stack size */
|
/libcore/libdvm/src/main/java/java/lang/ |
VMThread.java | 27 native static void create(Thread t, long stackSize); 42 void start(long stackSize) { 43 VMThread.create(thread, stackSize);
|
/external/valgrind/main/memcheck/tests/ |
supp_unknown.stderr.exp | 9 main thread stack using the --main-stacksize= flag.
|
supp_unknown.stderr.exp-kfail | 8 main thread stack using the --main-stacksize= flag.
|
/external/valgrind/main/none/tests/linux/ |
blockfault.stderr.exp | 9 main thread stack using the --main-stacksize= flag.
|
/external/proguard/src/proguard/classfile/attribute/visitor/ |
StackSizeComputer.java | 54 private int stackSize; 150 stackSize = 0; 210 stackSize -= 1; 264 stackSize = 1; 301 int initialStackSize = stackSize; 304 if (maxStackSize < stackSize) 306 maxStackSize = stackSize; 323 stackSize+" - "+ 326 (stackSize+stackPushCount-stackPopCount)+": "+ 331 stackSize -= instruction.stackPopCount(clazz) [all...] |
/bionic/libc/arch-x86/bionic/ |
_exit_with_stack_teardown.S | 4 // void _exit_with_stack_teardown(void *stackBase, int stackSize, int *retCode) 16 mov 8(%esp), %ecx /* stackSize */
|
/frameworks/av/libvideoeditor/osal/inc/ |
M4OSA_Thread_priv.h | 37 M4OSA_UInt32 stackSize; /* thread stackSize in bytes */
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_new.py | 113 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,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_new.py | 113 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/llvm/lib/Target/Mips/ |
Mips16FrameLowering.cpp | 37 uint64_t StackSize = MFI->getStackSize(); 40 if (StackSize == 0 && !MFI->adjustsStack()) return; 47 TII.makeFrame(Mips::SP, StackSize, MBB, MBBI); 49 // emit ".cfi_def_cfa_offset StackSize" 54 MCCFIInstruction::createDefCfaOffset(AdjustSPLabel, -StackSize)); 84 uint64_t StackSize = MFI->getStackSize(); 86 if (!StackSize) 94 // assumes stacksize multiple of 8 95 TII.restoreFrame(Mips::SP, StackSize, MBB, MBBI);
|
/external/llvm/test/CodeGen/X86/ |
tailcall-stackalign.ll | 18 ; expect match subl [stacksize] here
|
/external/chromium_org/ppapi/utility/threading/ |
simple_thread.cc | 57 size_t stacksize) 60 stacksize_(stacksize),
|
simple_thread.h | 32 explicit SimpleThread(const InstanceHandle& instance, size_t stacksize); 61 SimpleThread(const SimpleThread&, size_t stacksize);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
testutil.h | 48 // (If you're curious why this takes a stacksize and the others don't, 49 // it's because the one client of this fn wanted to specify stacksize. :-) ) 53 extern "C" void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
testutil.h | 48 // (If you're curious why this takes a stacksize and the others don't, 49 // it's because the one client of this fn wanted to specify stacksize. :-) ) 53 extern "C" void RunManyThreadsWithId(void (*fn)(int), int count, int stacksize);
|