Lines Matching refs:max
78 static u32 GetTexBufferSizeEven ( u16 wd, u16 ht, u32 fmt, GXBool mm, u8 max );
79 static u32 GetTexBufferSizeOdd ( u16 wd, u16 ht, u32 fmt, GXBool mm, u8 max );
332 u8 max; in TexInit() local
352 max = (u8)tdp->textureHeader->maxLOD; in TexInit()
355 sizeEven = GetTexBufferSizeEven(wd, ht, fmt, mipMapFlag, max); in TexInit()
356 sizeOdd = GetTexBufferSizeOdd(wd, ht, fmt, mipMapFlag, max); in TexInit()
459 static u32 GetTexBufferSizeEven( u16 wd, u16 ht, u32 fmt, GXBool mm, u8 max ) in GetTexBufferSizeEven() argument
467 size = GXGetTexBufferSize(wd, ht, fmt, mm, (u8)(max+1)); in GetTexBufferSizeEven()
479 for ( i = 0 ; i <= max ; i += 2 ) in GetTexBufferSizeEven()
504 static u32 GetTexBufferSizeOdd( u16 wd, u16 ht, u32 fmt, GXBool mm, u8 max ) in GetTexBufferSizeOdd() argument
508 size = GXGetTexBufferSize(wd, ht, fmt, mm, (u8)(max+1)) in GetTexBufferSizeOdd()
509 - GetTexBufferSizeEven(wd, ht, fmt, mm, max); in GetTexBufferSizeOdd()