Lines Matching refs:ui32WordHeight

127 	PVRTuint32 ui32WordHeight=4;  in interpolateColours()  local
159 for (unsigned int y=0; y < ui32WordHeight; y++) in interpolateColours()
186 for (unsigned int y=0; y < ui32WordHeight; y++) in interpolateColours()
436 PVRTuint32 ui32WordHeight=4; in pvrtcGetDecompressedPixels() local
443 unpackModulations(R, 0, ui32WordHeight, i32ModulationValues, i32ModulationModes, ui8Bpp); in pvrtcGetDecompressedPixels()
444 …unpackModulations(S, ui32WordWidth, ui32WordHeight, i32ModulationValues, i32ModulationModes, ui8Bp… in pvrtcGetDecompressedPixels()
454 for (unsigned int y=0; y < ui32WordHeight; y++) in pvrtcGetDecompressedPixels()
458 …dulationValues(i32ModulationValues,i32ModulationModes,x+ui32WordWidth/2,y+ui32WordHeight/2,ui8Bpp); in pvrtcGetDecompressedPixels()
479 pColourData[y+x*ui32WordHeight].red = (PVRTuint8)result.red; in pvrtcGetDecompressedPixels()
480 pColourData[y+x*ui32WordHeight].green = (PVRTuint8)result.green; in pvrtcGetDecompressedPixels()
481 pColourData[y+x*ui32WordHeight].blue = (PVRTuint8)result.blue; in pvrtcGetDecompressedPixels()
482 pColourData[y+x*ui32WordHeight].alpha = (PVRTuint8)result.alpha; in pvrtcGetDecompressedPixels()
596 PVRTuint32 ui32WordHeight=4; in mapDecompressedData() local
600 for (unsigned int y=0; y < ui32WordHeight/2; y++) in mapDecompressedData()
604 pOutput[(((words.P[1] * ui32WordHeight) + y + ui32WordHeight/2) in mapDecompressedData()
607 pOutput[(((words.Q[1] * ui32WordHeight) + y + ui32WordHeight/2) in mapDecompressedData()
610 pOutput[(((words.R[1] * ui32WordHeight) + y) in mapDecompressedData()
611 …* width + words.R[0] *ui32WordWidth + x + ui32WordWidth/2)] = pWord[(y+ui32WordHeight/2)*ui32WordW… in mapDecompressedData()
613 pOutput[(((words.S[1] * ui32WordHeight) + y) in mapDecompressedData()
614 …* width + words.S[0] *ui32WordWidth + x)] = pWord[(y+ui32WordHeight/2)*ui32WordWidth+x+ui32Wor… in mapDecompressedData()
634 PVRTuint32 ui32WordHeight=4; in pvrtcDecompress() local
643 int i32NumYWords = (int)(ui32Height / ui32WordHeight); in pvrtcDecompress()
648 pPixels = (Pixel32*)malloc(ui32WordWidth*ui32WordHeight*sizeof(Pixel32)); in pvrtcDecompress()