Lines Matching refs:stackBase
81 ASSERTMSG( (sPtr->stackBase != 0), MTX_INITSTACK_2 ); in MTXInitStack()
111 ASSERTMSG( (sPtr->stackBase != 0), MTX_PUSH_2 ); in MTXPush()
117 sPtr->stackPtr = sPtr->stackBase; in MTXPush()
124 if( (u32)((sPtr->stackPtr - sPtr->stackBase) / MTX_PTR_OFFSET) >= in MTXPush()
164 ASSERTMSG( (sPtr->stackBase != 0), MTX_PUSHFWD_2 ); in MTXPushFwd()
170 sPtr->stackPtr = sPtr->stackBase; in MTXPushFwd()
177 if( (u32)((sPtr->stackPtr - sPtr->stackBase) / MTX_PTR_OFFSET) >= in MTXPushFwd()
223 ASSERTMSG( (sPtr->stackBase != 0), MTX_PUSHINV_2 ); in MTXPushInv()
232 sPtr->stackPtr = sPtr->stackBase; in MTXPushInv()
239 if( (u32)((sPtr->stackPtr - sPtr->stackBase) / MTX_PTR_OFFSET) >= in MTXPushInv()
286 ASSERTMSG( (sPtr->stackBase != 0), MTX_PUSHINVXPOSE_2 ); in MTXPushInvXpose()
296 sPtr->stackPtr = sPtr->stackBase; in MTXPushInvXpose()
303 if( (u32)((sPtr->stackPtr - sPtr->stackBase) / MTX_PTR_OFFSET) >= in MTXPushInvXpose()
335 ASSERTMSG( (sPtr->stackBase != 0), MTX_POP_2 ); in MTXPop()
343 else if( sPtr->stackBase == sPtr->stackPtr ) in MTXPop()
373 ASSERTMSG( (sPtr->stackBase != 0), MTX_GETSTACKPTR_2 ); in MTXGetStackPtr()