Lines Matching refs:s32

139 int     G3X_GetMtxStackLevelPV(s32 *level);     // read: GXSTAT(8-12), GXSTAT(14)
140 int G3X_GetMtxStackLevelPJ(s32 *level); // read: GXSTAT(13), GXSTAT(14)
146 int G3X_GetBoxTestResult(s32 *in); // read: GXSTAT(0-1)
163 static s32 G3X_IsMtxStackOverflow(s32 *overflow);
164 static s32 G3X_IsLineBufferUnderflow(void);
165 static s32 G3X_IsListRamOverflow(void);
166 static s32 G3X_IsGeometryBusy(void);
173 static s32 G3X_GetPolygonListRamCount(void);
174 static s32 G3X_GetVtxListRamCount(void);
175 static s32 G3X_GetRenderedLineCount(void);
176 static s32 G3X_GetCommandFifoCount(void);
387 static inline s32 G3X_IsMtxStackOverflow(s32 *overflow) in G3X_IsMtxStackOverflow()
395 *overflow = (s32)(reg_G3X_GXSTAT & REG_G3X_GXSTAT_SE_MASK); in G3X_IsMtxStackOverflow()
412 static inline s32 G3X_IsLineBufferUnderflow(void) in G3X_IsLineBufferUnderflow()
428 static inline s32 G3X_IsListRamOverflow(void) in G3X_IsListRamOverflow()
444 static inline s32 G3X_IsGeometryBusy(void) in G3X_IsGeometryBusy()
446 return (s32)(reg_G3X_GXSTAT & REG_G3X_GXSTAT_B_MASK); in G3X_IsGeometryBusy()
506 static inline s32 G3X_GetPolygonListRamCount(void) in G3X_GetPolygonListRamCount()
521 static inline s32 G3X_GetVtxListRamCount(void) in G3X_GetVtxListRamCount()
536 static inline s32 G3X_GetRenderedLineCount(void) in G3X_GetRenderedLineCount()
551 static inline s32 G3X_GetCommandFifoCount(void) in G3X_GetCommandFifoCount()
553 return (s32)((reg_G3X_GXSTAT & REG_G3X_GXSTAT_FIFOCNT_MASK) >> REG_G3X_GXSTAT_FIFOCNT_SHIFT); in G3X_GetCommandFifoCount()