Searched refs:dst_blue (Results 1 – 11 of 11) sorted by relevance
77 int32_t dst_blue = src_blue - ((curve[src_blue] * icsb) >> 15); in ColorTemp() local79 int rgb_max = MAX3(dst_red, dst_green, dst_blue); in ColorTemp()84 dst_blue = dst_blue * invmax >> 8; in ColorTemp()87 *dst = (src_alpha << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red; in ColorTemp()
56 int dst_blue = (src->rgba8[0] * 557 + src->rgba8[1] * 1094 + src->rgba8[2] * 268) >> 11; in Sepia() local64 if (dst_blue > 255) { in Sepia()65 dst_blue = 255; in Sepia()68 *dst = (src->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red; in Sepia()
45 int dst_blue = kv + (((src->rgba8[2] - kv) * scale) >> 8); in BenSaturate() local47 *dst = (src->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red; in BenSaturate()97 int dst_blue = de * bmap[b] >> 8; in HerfSaturate() local99 int rgb_max = MAX3(dst_red, dst_green, dst_blue); in HerfSaturate()104 dst_blue = dst_blue * invmax >> 8; in HerfSaturate()107 *dst = (src->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red; in HerfSaturate()
69 int32_t dst_blue = (avg + tint_blue) >> kShiftBits; in Tint() local77 if (dst_blue > 255) { in Tint()78 dst_blue = 255; in Tint()81 *dst = (src->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red; in Tint()
84 int32_t dst_blue = src_blue + (diff_blue >> 16); in Backlight() local92 if (dst_blue > 255) { in Backlight()93 dst_blue = 255; in Backlight()96 *dst = (src_alpha << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red; in Backlight()
92 int dst_blue = (map[src->rgba8[2]] & 0xFF) << 16; in Warmify() local94 *dst = (src->rgba8[3] << 24) | dst_blue | dst_green | dst_red; in Warmify()
57 uint32_t dst_blue = 0xff - src->rgba8[2]; in Negative() local60 *dst = (src_alpha << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red; in Negative()
76 int dst_blue = src->rgba8[2] * 128 / 255 + 64; in CrossProcess() local78 *dst = (src->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red; in CrossProcess()
41 int dst_blue = p00[2] * coef1 + p10[2] * coef2 + p01[2] * coef3 + p11[2] * coef4; in BilinearPixelInterpolation() local48 if (dst_blue > 255) { in BilinearPixelInterpolation()49 dst_blue = 255; in BilinearPixelInterpolation()53 return p00[3] << 24 | (dst_blue << 16) | (dst_green << 8) | dst_red; in BilinearPixelInterpolation()
81 int dst_blue = b_table[energy]; in Duotone() local83 *dst = (src->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red; in Duotone()
239 uint32_t dst_blue = (sp->rgba8[2] * dst_energy) >> kShiftBits; in HEQ() local240 dp->rgba32 = (sp->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red; in HEQ()