Searched refs:stackBound (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/tcl-105/tcl/tcl/unix/
H A DtclUnixInit.c79 int *stackBound; /* The current stack boundary */ member in struct:ThreadSpecificData
1072 tsdPtr->stackBound = NULL;
1077 if (stackSize || (tsdPtr->stackBound &&
1078 ((stackGrowsDown && (&result < tsdPtr->stackBound)) ||
1079 (!stackGrowsDown && (&result > tsdPtr->stackBound))))) {
1095 tsdPtr->stackBound = NULL;
1101 tsdPtr->stackBound = (int *) ((char *)tsdPtr->outerVarPtr -
1104 tsdPtr->stackBound = (int *) ((char *)tsdPtr->outerVarPtr +
1110 *stackBoundPtr = tsdPtr->stackBound;
/macosx-10.10.1/tcl-105/tcl/tcl/win/
H A DtclWin32Dll.c23 int *stackBound; /* The current stack boundary */ member in struct:ThreadSpecificData
569 if (!tsdPtr->stackBound
570 || ((UINT_PTR)&tsdPtr < (UINT_PTR)tsdPtr->stackBound)) {
588 if (!tsdPtr->stackBound) {
589 tsdPtr->stackBound =
602 tsdPtr->stackBound =
608 *stackBoundPtr = tsdPtr->stackBound;
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclBasic.c346 stackGrowsDown = TclpGetCStackParams(&((iPtr)->stackBound))
349 ? ((localIntPtr) > (iPtr)->stackBound) \
350 : ((localIntPtr) < (iPtr)->stackBound) \
354 TclpGetCStackParams(&((iPtr)->stackBound))
357 (!(iPtr)->stackBound || (localIntPtr) < (iPtr)->stackBound)
360 ((localIntPtr) > (iPtr)->stackBound)
H A DtclInt.h1939 int *stackBound; /* Pointer to the limit stack address member in struct:Interp

Completed in 187 milliseconds