Lines Matching refs:b1
37 blend_gamma(uint16 b1, uint16 b2, uint16 b3, uint8 ba, // bottom components in blend_gamma() argument
43 *d1 = kInverseGammaTable[(b1 * destAlpha + t1 * ta) / 255]; in blend_gamma()
52 *d1 = kInverseGammaTable[(b1 * alphaDest + t1 * alphaSrc) / alphaTemp]; in blend_gamma()
61 blend(uint8 b1, uint8 b2, uint8 b3, uint8 ba, // bottom components in blend() argument
70 uint16 gb1 = kGammaTable[b1]; in blend()
245 uint16 b1 = kGammaTable[bottom[0]]; in blend_pixels() local
251 bottom[0] = kInverseGammaTable[(b1 * invAlpha + t1 * mergeAlpha) / 255]; in blend_pixels()
274 uint16 b1 = kGammaTable[bottom[0]]; in blend_pixels_copy() local
280 dest[0] = kInverseGammaTable[(b1 * invAlpha + t1 * mergeAlpha) / 255]; in blend_pixels_copy()
309 uint16 b1 = kGammaTable[bottom[0]]; in blend_pixels_overlay() local
315 bottom[0] = kInverseGammaTable[(b1 * invAlpha + t1 * mergeAlpha) / 255]; in blend_pixels_overlay()
339 uint16 b1 = kGammaTable[bottom[0]]; in blend_pixels_overlay_copy() local
345 dest[0] = kInverseGammaTable[(b1 * invAlpha + t1 * mergeAlpha) / 255]; in blend_pixels_overlay_copy()