Lines Matching refs:sR
291 Uint32 sR, sG, sB; in _putPixelAlpha() local
320 sR = sColor.r; in _putPixelAlpha()
324 R = dR + ((sR - dR) * alpha >> 8); in _putPixelAlpha()
378 sR = (color >> Rshift) & 0xFF; in _putPixelAlpha()
383 *(pixel + Rshift8) = sR; in _putPixelAlpha()
391 R = dR + ((sR - dR) * alpha >> 8); in _putPixelAlpha()
600 Uint32 sR, sG, sB, sA; in _filledRectAlpha() local
617 sR = sColor.r; in _filledRectAlpha()
634 R = dR + ((sR - dR) * alpha >> 8); in _filledRectAlpha()
655 sR = (color & Rmask); in _filledRectAlpha()
673 R = (dR + ((sR - dR) * alpha >> 8)) & Rmask; in _filledRectAlpha()
702 sR = (color >> Rshift) & 0xff; in _filledRectAlpha()
712 *(pixel + Rshift8) = sR; in _filledRectAlpha()
720 R = dR + ((sR - dR) * alpha >> 8); in _filledRectAlpha()
749 sR = (color & Rmask) >> Rshift; in _filledRectAlpha()
767 R = ((dR + ((sR - dR) * alpha >> 8)) << Rshift) & Rmask; in _filledRectAlpha()