Lines Matching refs:alphaShift
591 int32 alphaShift, int32 alphaBits, uint32 redMask, uint32 greenMask, in ConvertBits64To32() argument
657 alphaShift -= 8; in ConvertBits64To32()
695 if (alphaShift > 0) in ConvertBits64To32()
696 result |= ((source >> alphaShift) & alphaMask); in ConvertBits64To32()
697 else if (alphaShift < 0) in ConvertBits64To32()
698 result |= ((source << -alphaShift) & alphaMask); in ConvertBits64To32()
730 int32 alphaShift, int32 alphaBits, uint32 redMask, uint32 greenMask, in ConvertBits() argument
856 if (alphaShift > 0) in ConvertBits()
857 result |= ((source >> alphaShift) & alphaMask); in ConvertBits()
858 else if (alphaShift < 0) in ConvertBits()
859 result |= ((source << -alphaShift) & alphaMask); in ConvertBits()
895 int32 alphaShift, int32 alphaBits, int32 srcBytesPerRow, in ConvertBits64() argument
904 alphaShift - 32, alphaBits, 0x00ff0000, 0x0000ff00, 0x000000ff, in ConvertBits64()
913 alphaShift - 8, alphaBits, 0x0000ff00, 0x00ff0000, 0xff000000, in ConvertBits64()
953 int32 alphaShift, int32 alphaBits, int32 srcBytesPerRow, in ConvertBits() argument
962 alphaShift - 32, alphaBits, 0x00ff0000, 0x0000ff00, 0x000000ff, in ConvertBits()
971 alphaShift - 8, alphaBits, 0x0000ff00, 0x00ff0000, 0xff000000, in ConvertBits()
1030 alphaShift - 16, alphaBits, 0x7c00, 0x03e0, 0x001f, 0x8000, in ConvertBits()
1068 alphaShift - 8, alphaBits, 0xff000000, 0x00ff0000, 0x0000ff00, in ConvertBits()