Lines Matching refs:stackBase
56 ASSERTMSG( (sPtr->stackBase != 0), MTX_INITSTACK_2 ); in MTXInitStack()
86 ASSERTMSG( (sPtr->stackBase != 0), MTX_PUSH_2 ); in MTXPush()
92 sPtr->stackPtr = sPtr->stackBase; in MTXPush()
99 if( (u32)((sPtr->stackPtr - sPtr->stackBase) / MTX_PTR_OFFSET) >= in MTXPush()
139 ASSERTMSG( (sPtr->stackBase != 0), MTX_PUSHFWD_2 ); in MTXPushFwd()
145 sPtr->stackPtr = sPtr->stackBase; in MTXPushFwd()
152 if( (u32)((sPtr->stackPtr - sPtr->stackBase) / MTX_PTR_OFFSET) >= in MTXPushFwd()
198 ASSERTMSG( (sPtr->stackBase != 0), MTX_PUSHINV_2 ); in MTXPushInv()
207 sPtr->stackPtr = sPtr->stackBase; in MTXPushInv()
214 if( (u32)((sPtr->stackPtr - sPtr->stackBase) / MTX_PTR_OFFSET) >= in MTXPushInv()
261 ASSERTMSG( (sPtr->stackBase != 0), MTX_PUSHINVXPOSE_2 ); in MTXPushInvXpose()
271 sPtr->stackPtr = sPtr->stackBase; in MTXPushInvXpose()
278 if( (u32)((sPtr->stackPtr - sPtr->stackBase) / MTX_PTR_OFFSET) >= in MTXPushInvXpose()
310 ASSERTMSG( (sPtr->stackBase != 0), MTX_POP_2 ); in MTXPop()
318 else if( sPtr->stackBase == sPtr->stackPtr ) in MTXPop()
348 ASSERTMSG( (sPtr->stackBase != 0), MTX_GETSTACKPTR_2 ); in MTXGetStackPtr()