Lines Matching refs:UINT_32
104 UINT_32 SIAddrLib::HwlGetPipes( in HwlGetPipes()
108 UINT_32 numPipes; in HwlGetPipes()
132 UINT_32 SIAddrLib::GetPipePerSurf( in GetPipePerSurf()
136 UINT_32 numPipes = 0; in GetPipePerSurf()
179 UINT_32 SIAddrLib::ComputePipeFromCoord( in ComputePipeFromCoord()
180 UINT_32 x, ///< [in] x coordinate in ComputePipeFromCoord()
181 UINT_32 y, ///< [in] y coordinate in ComputePipeFromCoord()
182 UINT_32 slice, ///< [in] slice index in ComputePipeFromCoord()
184 UINT_32 pipeSwizzle, ///< [in] pipe swizzle in ComputePipeFromCoord()
189 UINT_32 pipe; in ComputePipeFromCoord()
190 UINT_32 pipeBit0 = 0; in ComputePipeFromCoord()
191 UINT_32 pipeBit1 = 0; in ComputePipeFromCoord()
192 UINT_32 pipeBit2 = 0; in ComputePipeFromCoord()
193 UINT_32 pipeBit3 = 0; in ComputePipeFromCoord()
194 UINT_32 sliceRotation; in ComputePipeFromCoord()
195 UINT_32 numPipes = 0; in ComputePipeFromCoord()
197 UINT_32 tx = x / MicroTileWidth; in ComputePipeFromCoord()
198 UINT_32 ty = y / MicroTileHeight; in ComputePipeFromCoord()
199 UINT_32 x3 = _BIT(tx,0); in ComputePipeFromCoord()
200 UINT_32 x4 = _BIT(tx,1); in ComputePipeFromCoord()
201 UINT_32 x5 = _BIT(tx,2); in ComputePipeFromCoord()
202 UINT_32 x6 = _BIT(tx,3); in ComputePipeFromCoord()
203 UINT_32 y3 = _BIT(ty,0); in ComputePipeFromCoord()
204 UINT_32 y4 = _BIT(ty,1); in ComputePipeFromCoord()
205 UINT_32 y5 = _BIT(ty,2); in ComputePipeFromCoord()
206 UINT_32 y6 = _BIT(ty,3); in ComputePipeFromCoord()
295 UINT_32 microTileThickness = ComputeSurfaceThickness(tileMode); in ComputePipeFromCoord()
331 UINT_32 elemIdx, ///< [in] per pipe element index within a macro tile in ComputeTileCoordFromPipeAndElemIdx()
332 UINT_32 pipe, ///< [in] pipe index in ComputeTileCoordFromPipeAndElemIdx()
334 UINT_32 pitchInMacroTile, ///< [in] surface pitch in macro tile in ComputeTileCoordFromPipeAndElemIdx()
335 UINT_32 x, ///< [in] x coordinate of the (0,0) tile in a macro tile in ComputeTileCoordFromPipeAndElemIdx()
336 UINT_32 y, ///< [in] y coordinate of the (0,0) tile in a macro tile in ComputeTileCoordFromPipeAndElemIdx()
337 UINT_32* pX, ///< [out] x coordinate in ComputeTileCoordFromPipeAndElemIdx()
338 UINT_32* pY ///< [out] y coordinate in ComputeTileCoordFromPipeAndElemIdx()
341 UINT_32 pipebit0 = _BIT(pipe,0); in ComputeTileCoordFromPipeAndElemIdx()
342 UINT_32 pipebit1 = _BIT(pipe,1); in ComputeTileCoordFromPipeAndElemIdx()
343 UINT_32 pipebit2 = _BIT(pipe,2); in ComputeTileCoordFromPipeAndElemIdx()
344 UINT_32 pipebit3 = _BIT(pipe,3); in ComputeTileCoordFromPipeAndElemIdx()
345 UINT_32 elemIdx0 = _BIT(elemIdx,0); in ComputeTileCoordFromPipeAndElemIdx()
346 UINT_32 elemIdx1 = _BIT(elemIdx,1); in ComputeTileCoordFromPipeAndElemIdx()
347 UINT_32 elemIdx2 = _BIT(elemIdx,2); in ComputeTileCoordFromPipeAndElemIdx()
348 UINT_32 x3 = 0; in ComputeTileCoordFromPipeAndElemIdx()
349 UINT_32 x4 = 0; in ComputeTileCoordFromPipeAndElemIdx()
350 UINT_32 x5 = 0; in ComputeTileCoordFromPipeAndElemIdx()
351 UINT_32 x6 = 0; in ComputeTileCoordFromPipeAndElemIdx()
352 UINT_32 y3 = 0; in ComputeTileCoordFromPipeAndElemIdx()
353 UINT_32 y4 = 0; in ComputeTileCoordFromPipeAndElemIdx()
354 UINT_32 y5 = 0; in ComputeTileCoordFromPipeAndElemIdx()
355 UINT_32 y6 = 0; in ComputeTileCoordFromPipeAndElemIdx()
587 UINT_32 SIAddrLib::TileCoordToMaskElementIndex( in TileCoordToMaskElementIndex()
588 UINT_32 tx, ///< [in] x coord, in Tiles in TileCoordToMaskElementIndex()
589 UINT_32 ty, ///< [in] y coord, in Tiles in TileCoordToMaskElementIndex()
591 UINT_32* macroShift, ///< [out] macro shift in TileCoordToMaskElementIndex()
592 UINT_32* elemIdxBits ///< [out] tile offset bits in TileCoordToMaskElementIndex()
595 UINT_32 elemIdx = 0; in TileCoordToMaskElementIndex()
596 UINT_32 elemIdx0, elemIdx1, elemIdx2; in TileCoordToMaskElementIndex()
597 UINT_32 tx0, tx1; in TileCoordToMaskElementIndex()
598 UINT_32 ty0, ty1; in TileCoordToMaskElementIndex()
728 UINT_32* pMacroWidth, ///< [out] macro tile width in HwlComputeTileDataWidthAndHeightLinear()
729 UINT_32* pMacroHeight, ///< [out] macro tile height in HwlComputeTileDataWidthAndHeightLinear()
730 UINT_32 bpp, ///< [in] bits per pixel in HwlComputeTileDataWidthAndHeightLinear()
735 UINT_32 macroWidth; in HwlComputeTileDataWidthAndHeightLinear()
736 UINT_32 macroHeight; in HwlComputeTileDataWidthAndHeightLinear()
771 UINT_32 pitch, ///< [in] pitch in HwlComputeHtileBytes()
772 UINT_32 height, ///< [in] height in HwlComputeHtileBytes()
773 UINT_32 bpp, ///< [in] bits per pixel in HwlComputeHtileBytes()
775 UINT_32 numSlices, ///< [in] number of slices in HwlComputeHtileBytes()
777 UINT_32 baseAlign ///< [in] base alignments in HwlComputeHtileBytes()
794 UINT_32 pitch, ///< [in] pitch in HwlComputeXmaskAddrFromCoord()
795 UINT_32 height, ///< [in] height in HwlComputeXmaskAddrFromCoord()
796 UINT_32 x, ///< [in] x coord in HwlComputeXmaskAddrFromCoord()
797 UINT_32 y, ///< [in] y coord in HwlComputeXmaskAddrFromCoord()
798 UINT_32 slice, ///< [in] slice/depth index in HwlComputeXmaskAddrFromCoord()
799 UINT_32 numSlices, ///< [in] number of slices in HwlComputeXmaskAddrFromCoord()
800 UINT_32 factor, ///< [in] factor that indicates cmask(2) or htile(1) in HwlComputeXmaskAddrFromCoord()
805 UINT_32* pBitPosition ///< [out] bit position inside a byte in HwlComputeXmaskAddrFromCoord()
808 UINT_32 tx = x / MicroTileWidth; in HwlComputeXmaskAddrFromCoord()
809 UINT_32 ty = y / MicroTileHeight; in HwlComputeXmaskAddrFromCoord()
810 UINT_32 newPitch; in HwlComputeXmaskAddrFromCoord()
811 UINT_32 newHeight; in HwlComputeXmaskAddrFromCoord()
813 UINT_32 macroWidth; in HwlComputeXmaskAddrFromCoord()
814 UINT_32 macroHeight; in HwlComputeXmaskAddrFromCoord()
816 UINT_32 pBaseAlign; in HwlComputeXmaskAddrFromCoord()
817 UINT_32 tileNumPerPipe; in HwlComputeXmaskAddrFromCoord()
818 UINT_32 elemBits; in HwlComputeXmaskAddrFromCoord()
863 const UINT_32 pitchInTile = newPitch / MicroTileWidth; in HwlComputeXmaskAddrFromCoord()
864 const UINT_32 heightInTile = newHeight / MicroTileWidth; in HwlComputeXmaskAddrFromCoord()
867 UINT_32 microX; in HwlComputeXmaskAddrFromCoord()
868 UINT_32 microY; in HwlComputeXmaskAddrFromCoord()
870 UINT_32 microShift; in HwlComputeXmaskAddrFromCoord()
872 UINT_32 elemIdxBits; in HwlComputeXmaskAddrFromCoord()
873 UINT_32 elemIdx = in HwlComputeXmaskAddrFromCoord()
876 UINT_32 numPipes = HwlGetPipes(pTileInfo); in HwlComputeXmaskAddrFromCoord()
886 UINT_32 sliceBits = pitchInTile * heightInTile; in HwlComputeXmaskAddrFromCoord()
897 const UINT_32 macroWidthInTile = macroWidth / MicroTileWidth; // Now in unit of Tiles in HwlComputeXmaskAddrFromCoord()
898 const UINT_32 macroHeightInTile = macroHeight / MicroTileHeight; in HwlComputeXmaskAddrFromCoord()
899 const UINT_32 pitchInCL = pitchInTile / macroWidthInTile; in HwlComputeXmaskAddrFromCoord()
900 const UINT_32 heightInCL = heightInTile / macroHeightInTile; in HwlComputeXmaskAddrFromCoord()
902 const UINT_32 macroX = x / macroWidth; in HwlComputeXmaskAddrFromCoord()
903 const UINT_32 macroY = y / macroHeight; in HwlComputeXmaskAddrFromCoord()
904 const UINT_32 macroNumber = macroX + macroY * pitchInCL + slice * pitchInCL * heightInCL; in HwlComputeXmaskAddrFromCoord()
928 UINT_32 pipe = ComputePipeFromCoord(x, y, 0, ADDR_TM_2D_TILED_THIN1, 0, FALSE, pTileInfo); in HwlComputeXmaskAddrFromCoord()
932 *pBitPosition = static_cast<UINT_32>(addrInBits) % 8; in HwlComputeXmaskAddrFromCoord()
954 UINT_32 bitPosition, ///< [in] bitPosition in a byte in HwlComputeXmaskCoordFromAddr()
955 UINT_32 pitch, ///< [in] pitch in HwlComputeXmaskCoordFromAddr()
956 UINT_32 height, ///< [in] height in HwlComputeXmaskCoordFromAddr()
957 UINT_32 numSlices, ///< [in] number of slices in HwlComputeXmaskCoordFromAddr()
958 UINT_32 factor, ///< [in] factor that indicates cmask or htile in HwlComputeXmaskCoordFromAddr()
963 UINT_32* pX, ///< [out] x coord in HwlComputeXmaskCoordFromAddr()
964 UINT_32* pY, ///< [out] y coord in HwlComputeXmaskCoordFromAddr()
965 UINT_32* pSlice ///< [out] slice index in HwlComputeXmaskCoordFromAddr()
968 UINT_32 newPitch; in HwlComputeXmaskCoordFromAddr()
969 UINT_32 newHeight; in HwlComputeXmaskCoordFromAddr()
971 UINT_32 clWidth; in HwlComputeXmaskCoordFromAddr()
972 UINT_32 clHeight; in HwlComputeXmaskCoordFromAddr()
973 UINT_32 tileNumPerPipe; in HwlComputeXmaskCoordFromAddr()
1020 const UINT_32 pitchInTile = newPitch / MicroTileWidth; in HwlComputeXmaskCoordFromAddr()
1021 const UINT_32 heightInTile = newHeight / MicroTileWidth; in HwlComputeXmaskCoordFromAddr()
1022 const UINT_32 pitchInMacroTile = pitchInTile / 4; in HwlComputeXmaskCoordFromAddr()
1023 UINT_32 macroShift; in HwlComputeXmaskCoordFromAddr()
1024 UINT_32 elemIdxBits; in HwlComputeXmaskCoordFromAddr()
1028 const UINT_32 numPipes = HwlGetPipes(pTileInfo); in HwlComputeXmaskCoordFromAddr()
1029 const UINT_32 pipe = (UINT_32)((addr / m_pipeInterleaveBytes) % numPipes); in HwlComputeXmaskCoordFromAddr()
1034 UINT_32 tileIndex; in HwlComputeXmaskCoordFromAddr()
1037 tileIndex = (UINT_32)(localOffset * 2 + (bitPosition != 0)); in HwlComputeXmaskCoordFromAddr()
1041 tileIndex = (UINT_32)(localOffset / 4); in HwlComputeXmaskCoordFromAddr()
1044 UINT_32 macroOffset; in HwlComputeXmaskCoordFromAddr()
1047 UINT_32 sliceSizeInTile = pitchInTile * heightInTile; in HwlComputeXmaskCoordFromAddr()
1052 sliceSizeInTile = PowTwoAlign(sliceSizeInTile, static_cast<UINT_32>(sliceBytes) / 64); in HwlComputeXmaskCoordFromAddr()
1059 const UINT_32 clWidthInTile = clWidth / MicroTileWidth; // Now in unit of Tiles in HwlComputeXmaskCoordFromAddr()
1060 const UINT_32 clHeightInTile = clHeight / MicroTileHeight; in HwlComputeXmaskCoordFromAddr()
1061 const UINT_32 pitchInCL = pitchInTile / clWidthInTile; in HwlComputeXmaskCoordFromAddr()
1062 const UINT_32 heightInCL = heightInTile / clHeightInTile; in HwlComputeXmaskCoordFromAddr()
1063 const UINT_32 clIndex = tileIndex / tileNumPerPipe; in HwlComputeXmaskCoordFromAddr()
1065 UINT_32 clX = clIndex % pitchInCL; in HwlComputeXmaskCoordFromAddr()
1066 UINT_32 clY = (clIndex % (heightInCL * pitchInCL)) / pitchInCL; in HwlComputeXmaskCoordFromAddr()
1075 UINT_32 elemIdx = macroOffset & 7; in HwlComputeXmaskCoordFromAddr()
1082 UINT_32 pipebit1 = _BIT(pipe,1); in HwlComputeXmaskCoordFromAddr()
1083 UINT_32 pipebit2 = _BIT(pipe,2); in HwlComputeXmaskCoordFromAddr()
1084 UINT_32 pipebit3 = _BIT(pipe,3); in HwlComputeXmaskCoordFromAddr()
1117 UINT_32 macroX; in HwlComputeXmaskCoordFromAddr()
1118 UINT_32 macroY; in HwlComputeXmaskCoordFromAddr()
1127 const UINT_32 clWidthInMacroTile = clWidth / (MicroTileWidth * 4); in HwlComputeXmaskCoordFromAddr()
1135 UINT_32 microX; in HwlComputeXmaskCoordFromAddr()
1136 UINT_32 microY; in HwlComputeXmaskCoordFromAddr()
1153 UINT_32 SIAddrLib::HwlGetPitchAlignmentLinear( in HwlGetPitchAlignmentLinear()
1154 UINT_32 bpp, ///< [in] bits per pixel in HwlGetPitchAlignmentLinear()
1158 UINT_32 pitchAlign; in HwlGetPitchAlignmentLinear()
1187 UINT_32 bpp, ///< [in] bits per pixel in HwlGetSizeAdjustmentLinear()
1188 UINT_32 numSamples, ///< [in] number of samples in HwlGetSizeAdjustmentLinear()
1189 UINT_32 baseAlign, ///< [in] base alignment in HwlGetSizeAdjustmentLinear()
1190 UINT_32 pitchAlign, ///< [in] pitch alignment in HwlGetSizeAdjustmentLinear()
1191 UINT_32* pPitch, ///< [in/out] pointer to pitch in HwlGetSizeAdjustmentLinear()
1192 UINT_32* pHeight, ///< [in/out] pointer to height in HwlGetSizeAdjustmentLinear()
1193 UINT_32* pHeightAlign ///< [in/out] pointer to height align in HwlGetSizeAdjustmentLinear()
1203 UINT_32 pitch = *pPitch; in HwlGetSizeAdjustmentLinear()
1204 UINT_32 height = *pHeight; in HwlGetSizeAdjustmentLinear()
1206 UINT_32 pixelsPerPipeInterleave = m_pipeInterleaveBytes / BITS_TO_BYTES(bpp); in HwlGetSizeAdjustmentLinear()
1207 UINT_32 sliceAlignInPixel = pixelsPerPipeInterleave < 64 ? 64 : pixelsPerPipeInterleave; in HwlGetSizeAdjustmentLinear()
1220 UINT_32 heightAlign = 1; in HwlGetSizeAdjustmentLinear()
1246 UINT_32 SIAddrLib::HwlPreHandleBaseLvl3xPitch( in HwlPreHandleBaseLvl3xPitch()
1248 UINT_32 expPitch ///< [in] pitch in HwlPreHandleBaseLvl3xPitch()
1278 UINT_32 SIAddrLib::HwlPostHandleBaseLvl3xPitch( in HwlPostHandleBaseLvl3xPitch()
1280 UINT_32 expPitch ///< [in] pitch in HwlPostHandleBaseLvl3xPitch()
1307 UINT_32 SIAddrLib::HwlGetPitchAlignmentMicroTiled( in HwlGetPitchAlignmentMicroTiled()
1309 UINT_32 bpp, ///< [in] bits per pixel in HwlGetPitchAlignmentMicroTiled()
1311 UINT_32 numSamples ///< [in] number of samples in HwlGetPitchAlignmentMicroTiled()
1314 UINT_32 pitchAlign; in HwlGetPitchAlignmentMicroTiled()
1340 UINT_32 thickness, ///< [in] thickness in HwlGetSizeAdjustmentMicroTiled()
1341 UINT_32 bpp, ///< [in] bits per pixel in HwlGetSizeAdjustmentMicroTiled()
1343 UINT_32 numSamples, ///< [in] number of samples in HwlGetSizeAdjustmentMicroTiled()
1344 UINT_32 baseAlign, ///< [in] base alignment in HwlGetSizeAdjustmentMicroTiled()
1345 UINT_32 pitchAlign, ///< [in] pitch alignment in HwlGetSizeAdjustmentMicroTiled()
1346 UINT_32* pPitch, ///< [in/out] pointer to pitch in HwlGetSizeAdjustmentMicroTiled()
1347 UINT_32* pHeight ///< [in/out] pointer to height in HwlGetSizeAdjustmentMicroTiled()
1353 UINT_32 pitch = *pPitch; in HwlGetSizeAdjustmentMicroTiled()
1354 UINT_32 height = *pHeight; in HwlGetSizeAdjustmentMicroTiled()
1419 UINT_32 uChipFamily, ///< [in] chip family defined in atiih.h in HwlConvertChipFamily()
1420 UINT_32 uChipRevision) ///< [in] chip revision defined in "asic_family"_id.h in HwlConvertChipFamily()
1453 UINT_32 bpp, ///< [in] Bits per pixel in HwlSetupTileInfo()
1454 UINT_32 pitch, ///< [in] Pitch in pixels in HwlSetupTileInfo()
1455 UINT_32 height, ///< [in] Height in pixels in HwlSetupTileInfo()
1456 UINT_32 numSamples, ///< [in] Number of samples in HwlSetupTileInfo()
1463 UINT_32 thickness = ComputeSurfaceThickness(tileMode); in HwlSetupTileInfo()
1644 UINT_32 fmaskPixelSize = bpp * numSamples; in HwlSetupTileInfo()
1951 UINT_32 SIAddrLib::HwlComputeXmaskCoordYFrom8Pipe( in HwlComputeXmaskCoordYFrom8Pipe()
1952 UINT_32 pipe, ///< [in] pipe id in HwlComputeXmaskCoordYFrom8Pipe()
1953 UINT_32 x ///< [in] tile coord x, which is original x coord / 8 in HwlComputeXmaskCoordYFrom8Pipe()
1975 UINT_32* pX, ///< [in/out] x coordinate in HwlComputeSurfaceCoord2DFromBankPipe()
1976 UINT_32* pY, ///< [in/out] y coordinate in HwlComputeSurfaceCoord2DFromBankPipe()
1977 UINT_32 slice, ///< [in] slice index in HwlComputeSurfaceCoord2DFromBankPipe()
1978 UINT_32 bank, ///< [in] bank number in HwlComputeSurfaceCoord2DFromBankPipe()
1979 UINT_32 pipe, ///< [in] pipe number in HwlComputeSurfaceCoord2DFromBankPipe()
1980 UINT_32 bankSwizzle,///< [in] bank swizzle in HwlComputeSurfaceCoord2DFromBankPipe()
1981 UINT_32 pipeSwizzle,///< [in] pipe swizzle in HwlComputeSurfaceCoord2DFromBankPipe()
1982 UINT_32 tileSlices, ///< [in] slices in a micro tile in HwlComputeSurfaceCoord2DFromBankPipe()
1987 UINT_32 xBit; in HwlComputeSurfaceCoord2DFromBankPipe()
1988 UINT_32 yBit; in HwlComputeSurfaceCoord2DFromBankPipe()
1989 UINT_32 yBit3 = 0; in HwlComputeSurfaceCoord2DFromBankPipe()
1990 UINT_32 yBit4 = 0; in HwlComputeSurfaceCoord2DFromBankPipe()
1991 UINT_32 yBit5 = 0; in HwlComputeSurfaceCoord2DFromBankPipe()
1992 UINT_32 yBit6 = 0; in HwlComputeSurfaceCoord2DFromBankPipe()
1994 UINT_32 xBit3 = 0; in HwlComputeSurfaceCoord2DFromBankPipe()
1995 UINT_32 xBit4 = 0; in HwlComputeSurfaceCoord2DFromBankPipe()
1996 UINT_32 xBit5 = 0; in HwlComputeSurfaceCoord2DFromBankPipe()
1998 UINT_32 numPipes = GetPipePerSurf(pTileInfo->pipeConfig); in HwlComputeSurfaceCoord2DFromBankPipe()
2015 UINT_32 yBitTemp = 0; in HwlComputeSurfaceCoord2DFromBankPipe()
2021 UINT_32 yBitToCheck = QLog2(pTileInfo->banks) - 1; in HwlComputeSurfaceCoord2DFromBankPipe()
2037 UINT_32 xTile; //x in micro tile in HwlComputeSurfaceCoord2DFromBankPipe()
2038 UINT_32 x3 = 0; in HwlComputeSurfaceCoord2DFromBankPipe()
2039 UINT_32 x4 = 0; in HwlComputeSurfaceCoord2DFromBankPipe()
2040 UINT_32 x5 = 0; in HwlComputeSurfaceCoord2DFromBankPipe()
2041 UINT_32 x6 = 0; in HwlComputeSurfaceCoord2DFromBankPipe()
2042 UINT_32 y = *pY; in HwlComputeSurfaceCoord2DFromBankPipe()
2044 UINT_32 pipeBit0 = _BIT(pipe,0); in HwlComputeSurfaceCoord2DFromBankPipe()
2045 UINT_32 pipeBit1 = _BIT(pipe,1); in HwlComputeSurfaceCoord2DFromBankPipe()
2046 UINT_32 pipeBit2 = _BIT(pipe,2); in HwlComputeSurfaceCoord2DFromBankPipe()
2048 UINT_32 y3 = _BIT(y, 3); in HwlComputeSurfaceCoord2DFromBankPipe()
2049 UINT_32 y4 = _BIT(y, 4); in HwlComputeSurfaceCoord2DFromBankPipe()
2050 UINT_32 y5 = _BIT(y, 5); in HwlComputeSurfaceCoord2DFromBankPipe()
2051 UINT_32 y6 = _BIT(y, 6); in HwlComputeSurfaceCoord2DFromBankPipe()
2054 UINT_32 bankBit00 = _BIT(bank,0); in HwlComputeSurfaceCoord2DFromBankPipe()
2055 UINT_32 bankBit0 = 0; in HwlComputeSurfaceCoord2DFromBankPipe()
2138 UINT_32 SIAddrLib::HwlPreAdjustBank( in HwlPreAdjustBank()
2139 UINT_32 tileX, ///< [in] x coordinate in unit of tile in HwlPreAdjustBank()
2140 UINT_32 bank, ///< [in] bank in HwlPreAdjustBank()
2147 UINT_32 bankBit0 = _BIT(bank, 0); in HwlPreAdjustBank()
2148 UINT_32 x4 = _BIT(tileX, 1); in HwlPreAdjustBank()
2149 UINT_32 x5 = _BIT(tileX, 2); in HwlPreAdjustBank()
2237 UINT_32 nextPitch; in HwlCheckLastMacroTiledLvl()
2238 UINT_32 nextHeight; in HwlCheckLastMacroTiledLvl()
2239 UINT_32 nextSlices; in HwlCheckLastMacroTiledLvl()
2305 UINT_32 numSlices, ///< [in] current number of slices in HwlDegradeThickTileMode()
2306 UINT_32* pBytesPerTile ///< [in/out] pointer to bytes per slice in HwlDegradeThickTileMode()
2348 UINT_32 index ///< [in] Tile index in GetTileSetting()
2479 else if (static_cast<UINT_32>(index) >= m_noOfEntries) in HwlSetupTileCfg()
2525 UINT_32 regValue, ///< [in] GB_TILE_MODE register in ReadGbTileMode()
2540 UINT_32 regArrayMode = gbTileMode.f.array_mode; in ReadGbTileMode()
2565 const UINT_32* pCfg, ///< [in] Pointer to table of tile configs in InitTileSettingTable()
2566 UINT_32 noOfEntries ///< [in] Numbe of entries in the table above in InitTileSettingTable()
2586 for (UINT_32 i = 0; i < m_noOfEntries; i++) in InitTileSettingTable()
2674 UINT_32 SIAddrLib::HwlComputeFmaskBits( in HwlComputeFmaskBits()
2676 UINT_32* pNumSamples in HwlComputeFmaskBits()
2679 UINT_32 numSamples = pIn->numSamples; in HwlComputeFmaskBits()
2680 UINT_32 numFrags = GetNumFragments(numSamples, pIn->numFrags); in HwlComputeFmaskBits()
2681 UINT_32 bpp; in HwlComputeFmaskBits()