Lines Matching refs:szByte
120 void GX_LoadTexEx(GXVRamTex tex, const void *pSrc, u32 destSlotAddr, u32 szByte) in GX_LoadTexEx() argument
125 SDK_ALIGN4_ASSERT(szByte); in GX_LoadTexEx()
140 GX_RegionCheck_Tex(tex, destSlotAddr, destSlotAddr + szByte); in GX_LoadTexEx()
150 if (destSlotAddr + szByte < szBlk1) in GX_LoadTexEx()
167 (void *)((u8 *)pSrc + sz), pLCDC2, szByte - sz, NULL, NULL); in GX_LoadTexEx()
172 GXi_DmaCopy32Async(GXi_DmaId, pSrc, pLCDC, szByte, NULL, NULL); in GX_LoadTexEx()
277 void GX_LoadTex(const void *pSrc, u32 destSlotAddr, u32 szByte) in GX_LoadTex() argument
284 SDK_ALIGN4_ASSERT(szByte); in GX_LoadTex()
290 GX_RegionCheck_Tex(sTex, destSlotAddr, destSlotAddr + szByte); in GX_LoadTex()
300 if (destSlotAddr + szByte < sSzTexBlk1) in GX_LoadTex()
317 (void *)((u8 *)pSrc + sz), pLCDC2, szByte - sz, NULL, NULL); in GX_LoadTex()
322 GXi_DmaCopy32Async(GXi_DmaId, pSrc, pLCDC, szByte, NULL, NULL); in GX_LoadTex()
389 void GX_LoadTexPlttEx(GXVRamTexPltt texPltt, const void *pSrc, u32 destSlotAddr, u32 szByte) in GX_LoadTexPlttEx() argument
401 SDK_ALIGN4_ASSERT(szByte); in GX_LoadTexPlttEx()
406 GX_RegionCheck_TexPltt(texPltt, destSlotAddr, destSlotAddr + szByte); in GX_LoadTexPlttEx()
409 GXi_DmaCopy32Async(GXi_DmaId, pSrc, (void *)(base + destSlotAddr), szByte, NULL, NULL); in GX_LoadTexPlttEx()
477 void GX_LoadTexPltt(const void *pSrc, u32 destSlotAddr, u32 szByte) in GX_LoadTexPltt() argument
483 SDK_ALIGN4_ASSERT(szByte); in GX_LoadTexPltt()
488 GX_RegionCheck_TexPltt(sTexPltt, destSlotAddr, destSlotAddr + szByte); in GX_LoadTexPltt()
492 pSrc, (void *)(sTexPlttLCDCBlk + destSlotAddr), szByte, NULL, NULL); in GX_LoadTexPltt()
588 void GX_LoadClearImageColor(const void *pSrc, u32 szByte) in GX_LoadClearImageColor() argument
593 SDK_ALIGN4_ASSERT(szByte); in GX_LoadClearImageColor()
595 SDK_ASSERT(szByte <= 0x20000 /* HW_VRAM_A_SIZE or HW_VRAM_C_SIZE */ ); in GX_LoadClearImageColor()
597 GXi_DmaCopy32Async(GXi_DmaId, pSrc, (void *)(sClrImgLCDCBlk), szByte, NULL, NULL); in GX_LoadClearImageColor()
614 void GX_LoadClearImageDepth(const void *pSrc, u32 szByte) in GX_LoadClearImageDepth() argument
619 SDK_ALIGN4_ASSERT(szByte); in GX_LoadClearImageDepth()
621 SDK_ASSERT(szByte <= 0x20000 /* HW_VRAM_A_SIZE or HW_VRAM_C_SIZE */ ); in GX_LoadClearImageDepth()
626 szByte, NULL, NULL); in GX_LoadClearImageDepth()