/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
|
/bionic/libc/arch-x86/bionic/ |
_exit_with_stack_teardown.S | 3 // void _exit_with_stack_teardown(void* stackBase, size_t stackSize) 7 mov 8(%esp), %ecx // stackSize
|
/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/fonttools/Lib/fontTools/misc/ |
xmlReader.py | 23 self.stackSize = 0 52 stackSize = self.stackSize 53 self.stackSize = stackSize + 1 54 if not stackSize: 63 elif stackSize == 1: 96 elif stackSize == 2: 105 if self.stackSize > 1: 109 self.stackSize = self.stackSize - [all...] |
/external/llvm/test/CodeGen/AArch64/ |
arm64-stack-no-frame.ll | 10 ; CHECK: sub sp, sp, #[[STACKSIZE:[0-9]+]] 18 ; CHECK: add sp, sp, #[[STACKSIZE]]
|
/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 */
|
/bionic/libc/arch-mips/bionic/ |
syscall.S | 35 #define STACKSIZE 2*4 47 subu sp, STACKSIZE 51 addu sp, 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 | 56 private int stackSize; 149 stackSize = 0; 209 stackSize -= 1; 263 stackSize = 1; 300 int initialStackSize = stackSize; 303 if (maxStackSize < stackSize) 305 maxStackSize = stackSize; 322 stackSize+" - "+ 325 (stackSize+stackPushCount-stackPopCount)+": "+ 330 stackSize -= instruction.stackPopCount(clazz) [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_linux_libcdep.cc | 94 // Get stacksize from rlimit, but clip it so that it does not overlap 96 uptr stacksize = rl.rlim_cur; local 97 if (stacksize > end - prev_end) 98 stacksize = end - prev_end; 102 if (stacksize > kMaxThreadStackSize) 103 stacksize = kMaxThreadStackSize; 105 *stack_bottom = end - stacksize; 111 uptr stacksize = 0; local 113 my_pthread_attr_getstack(&attr, &stackaddr, (size_t*)&stacksize); 116 CHECK_LE(stacksize, kMaxThreadStackSize); // Sanity check 443 size_t stacksize = 0; local [all...] |
/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 | 42 uint64_t StackSize = MFI->getStackSize(); 45 if (StackSize == 0 && !MFI->adjustsStack()) return; 52 TII.makeFrame(Mips::SP, StackSize, MBB, MBBI); 54 // emit ".cfi_def_cfa_offset StackSize" 56 MCCFIInstruction::createDefCfaOffset(nullptr, -StackSize)); 89 uint64_t StackSize = MFI->getStackSize(); 91 if (!StackSize) 99 // assumes stacksize multiple of 8 100 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);
|