Searched refs:stackSize (Results 1 - 25 of 41) sorted by relevance

12

/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/asm/
H A DEdge.java45 int stackSize; field in class:Edge
H A DMethodWriter.java229 * <tt>stackSize</tt>.
231 private int stackSize; field in class:MethodWriter
238 * block plus <tt>stackSize</tt>.
624 int size = stackSize + SIZE[opcode];
628 stackSize = size;
647 int size = stackSize + 1;
651 stackSize = size;
671 int size = stackSize + SIZE[opcode];
675 stackSize = size;
712 int size = stackSize
1171 addSuccessor(final int stackSize, final Label successor) argument
[all...]
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/big-stack/
H A Dmain.c38 void foo(unsigned long long stackSize, char* stackStart) argument
43 intptr_t freeStackSpace = (buffer - sizeof(buffer)) - (stackStart - stackSize);
48 foo(stackSize, stackStart);
/macosx-10.10/libunwind-35.3/src/
H A DCompactUnwinder.hpp146 uint32_t stackSize = stackSizeEncoded*4; local
150 stackSize = subl + 4*stackAdjust;
219 uint64_t savedRegisters = registers.getSP() + stackSize - 4 - 4*regCount;
258 uint32_t stackSize; local
316 stackSize = stackValue * 4;
317 savedRegisters = registers.getSP() + stackSize - 4 - 4*0;
322 stackSize = stackValue * 4;
323 savedRegisters = registers.getSP() + stackSize - 4 - 4*1;
329 stackSize = stackValue * 4;
330 savedRegisters = registers.getSP() + stackSize
603 uint32_t stackSize = stackSizeEncoded*8; local
713 uint64_t stackSize; local
[all...]
/macosx-10.10/tcl-105/tcl/tcl/unix/
H A DtclUnixThrd.c83 int stackSize, /* Size of stack for the new thread */
96 if (stackSize != TCL_THREAD_STACK_DEFAULT) {
97 pthread_attr_setstacksize(&attr, (size_t) stackSize);
226 size_t stackSize = 0;
275 if (pthread_attr_getstacksize(&threadAttr, &stackSize) != 0) {
288 stackSize = pthread_get_stacksize_np(pthread_self());
295 return stackSize;
78 TclpThreadCreate( Tcl_ThreadId *idPtr, Tcl_ThreadCreateProc proc, ClientData clientData, int stackSize, int flags) argument
222 size_t stackSize = 0; local
H A DtclUnixInit.c1044 size_t stackSize = 0; /* The size of the current stack. */
1066 result = GetStackSize(&stackSize);
1077 if (stackSize || (tsdPtr->stackBound &&
1084 if (!stackSize) {
1089 result = GetStackSize(&stackSize);
1102 stackSize);
1105 stackSize);
1038 size_t stackSize = 0; /* The size of the current stack. */ local
/macosx-10.10/WTF-7600.1.24/wtf/
H A DStackBounds.cpp98 size_t stackSize = 0;
110 int rc = pthread_attr_getstack(&sattr, &stackBase, &stackSize);
115 m_origin = static_cast<char*>(stackBase) + stackSize;
/macosx-10.10/llvmCore-3425.0.34/lib/Target/MBlaze/
H A DMBlazeRegisterInfo.cpp147 int stackSize = MFI->getStackSize();
153 << "stackSize : " << stackSize << "\n"
161 int Offset = (spOffset < 0) ? (stackSize - spOffset) : spOffset;
/macosx-10.10/llvmCore-3425.0.34/lib/Target/Mips/
H A DMipsRegisterInfo.cpp174 uint64_t stackSize = MF.getFrameInfo()->getStackSize();
179 << "stackSize : " << stackSize << "\n");
181 eliminateFI(MI, i, FrameIndex, stackSize, spOffset);
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dbytestrieiterator.cpp111 int32_t stackSize=stack_->size(); local
112 int32_t length=stack_->elementAti(stackSize-1);
113 pos=bytes_+stack_->elementAti(stackSize-2);
114 stack_->setSize(stackSize-2);
H A Ducharstrieiterator.cpp110 int32_t stackSize=stack_->size(); local
111 int32_t length=stack_->elementAti(stackSize-1);
112 pos=uchars_+stack_->elementAti(stackSize-2);
113 stack_->setSize(stackSize-2);
/macosx-10.10/Security-57031.1.35/Security/include/security_asn1/
H A Dprthread.h116 ** "stackSize" the size of the stack, in bytes. The value can be zero
140 PRUint32 stackSize);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/Security/
H A Dprthread.h116 ** "stackSize" the size of the stack, in bytes. The value can be zero
140 PRUint32 stackSize);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/lib/
H A Dprthread.h116 ** "stackSize" the size of the stack, in bytes. The value can be zero
140 PRUint32 stackSize);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/security_asn1/
H A Dprthread.h116 ** "stackSize" the size of the stack, in bytes. The value can be zero
140 PRUint32 stackSize);
/macosx-10.10/tcl-105/tcl84/tcl/unix/
H A DtclUnixThrd.c81 TclpThreadCreate(idPtr, proc, clientData, stackSize, flags)
85 int stackSize; /* Size of stack for the new thread */
98 if (stackSize != TCL_THREAD_STACK_DEFAULT) {
99 pthread_attr_setstacksize(&attr, (size_t) stackSize);
/macosx-10.10/JavaScriptCore-7600.1.17/ftl/
H A DFTLStackMaps.h129 unsigned stackSize() const;
H A DFTLJITFinalizer.cpp138 m_plan.vm.updateFTLLargestStackSize(jitCode->stackmaps.stackSize());
/macosx-10.10/tcl-105/tcl/tcl/win/
H A DtclWinThrd.c150 int stackSize, /* Size of stack for the new thread. */
163 tHandle = (HANDLE) _beginthreadex(NULL, (unsigned) stackSize, proc,
166 tHandle = CreateThread(NULL, (DWORD) stackSize,
145 TclpThreadCreate( Tcl_ThreadId *idPtr, Tcl_ThreadCreateProc proc, ClientData clientData, int stackSize, int flags) argument
/macosx-10.10/JavaScriptCore-7600.1.17/heap/
H A DMachineStackMarker.cpp421 size_t stackSize = 0;
426 stackSize = ss.ss_size;
428 int rc = pthread_attr_getstack(&regs, &stackBase, &stackSize);
432 return static_cast<char*>(stackBase) + stackSize;
/macosx-10.10/cxxfilt-11/cxxfilt/include/nlm/
H A Dinternal.h159 /* The stackSize field contains the size of the stack in bytes, as
163 long stackSize; member in struct:nlm_internal_variable_header
/macosx-10.10/tcl-105/tcl84/tcl/win/
H A DtclWinThrd.c147 TclpThreadCreate(idPtr, proc, clientData, stackSize, flags)
151 int stackSize; /* Size of stack for the new thread */
160 tHandle = (HANDLE) _beginthreadex(NULL, (unsigned) stackSize, proc,
163 tHandle = CreateThread(NULL, (DWORD) stackSize,
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DConsoleClient.cpp149 size_t stackSize = isTraceMessage ? ScriptCallStack::maxCallStackSizeToCapture : 1; local
150 RefPtr<ScriptCallStack> callStack(createScriptCallStackForConsole(exec, stackSize));
/macosx-10.10/WebCore-7600.1.25/page/
H A DPageConsole.cpp151 size_t stackSize = type == MessageType::Trace ? ScriptCallStack::maxCallStackSizeToCapture : 1; local
152 RefPtr<ScriptCallStack> callStack(createScriptCallStackForConsole(exec, stackSize));
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXprofile.c82 int stackSize; /* Size of the stack. */ member in struct:profInfo_t
233 infoPtr->stackSize++;
277 stackArgv = (char **) ckalloc (sizeof (char *) * infoPtr->stackSize);
350 infoPtr->stackSize--;
1005 infoPtr->stackSize = 0;

Completed in 408 milliseconds

12