Lines Matching refs:info
587 void G3_BeginMakeDL(GXDLInfo *info, void *ptr, u32 length);
588 u32 G3_EndMakeDL(GXDLInfo *info);
589 static void *G3_GetDLStart(const GXDLInfo *info);
590 static u32 G3_GetDLLength(const GXDLInfo *info);
591 static u32 G3_GetDLSize(const GXDLInfo *info);
611 static inline void *G3_GetDLStart(const GXDLInfo *info) in G3_GetDLStart() argument
613 return (void *)info->bottom; in G3_GetDLStart()
626 static inline u32 G3_GetDLLength(const GXDLInfo *info) in G3_GetDLLength() argument
628 return info->length; in G3_GetDLLength()
641 static inline u32 G3_GetDLSize(const GXDLInfo *info) in G3_GetDLSize() argument
643 SDK_ASSERT((u32)info->bottom < (u32)info->curr_param); in G3_GetDLSize()
644 if ((u32)info->curr_cmd & 3) in G3_GetDLSize()
646 return (u32)((u32)info->curr_param - (u32)info->bottom); in G3_GetDLSize()
650 return (u32)((u32)info->curr_cmd - (u32)info->bottom); in G3_GetDLSize()