Lines Matching refs:Pixel
187 static int sal_Shift( Pixel nMask ) in sal_Shift()
198 static int sal_significantBits( Pixel nMask ) in sal_significantBits()
200 int nRotate = sizeof(Pixel)*4; in sal_significantBits()
2924 SalColor SalVisual::GetTCColor( Pixel nPixel ) const in GetTCColor()
2934 Pixel r = nPixel & red_mask; in GetTCColor()
2935 Pixel g = nPixel & green_mask; in GetTCColor()
2936 Pixel b = nPixel & blue_mask; in GetTCColor()
2957 Pixel SalVisual::GetTCPixel( SalColor nSalColor ) const in GetTCPixel()
2960 return (Pixel)nSalColor; in GetTCPixel()
2962 Pixel r = (Pixel)SALCOLOR_RED( nSalColor ); in GetTCPixel()
2963 Pixel g = (Pixel)SALCOLOR_GREEN( nSalColor ); in GetTCPixel()
2964 Pixel b = (Pixel)SALCOLOR_BLUE( nSalColor ); in GetTCPixel()
3218 Pixel i; in GetPalette()
3244 Pixel nUsed ) in sal_Lookup()
3277 SalColor SalColormap::GetColor( Pixel nPixel ) const in GetColor()
3340 Pixel SalColormap::GetPixel( SalColor nSalColor ) const in GetPixel()
3362 for( Pixel i = 0; i < m_nUsed; i++ ) in GetPixel()