Lines Matching refs:ida
121 Sk4f ida = Sk4f(1) - da; in colordodge_4f() local
124 Sk4f dstover = d + s * ida; in colordodge_4f()
125 Sk4f otherwise = sa * Sk4f::Min(da, (d * sa) / (sa - s)) + s * ida + d * isa; in colordodge_4f()
138 Sk4f ida = Sk4f(1) - da; in colorburn_4f() local
141 Sk4f dstover = d + s * ida; in colorburn_4f()
142 Sk4f otherwise = sa * (da - Sk4f::Min(da, (da - d) * sa / s)) + s * ida + d * isa; in colorburn_4f()
155 Sk4f ida = Sk4f(1) - da; in softlight_4f() local
172 return color_alpha(s * ida + d * isa + (s2 <= sa).thenElse(darkSrc, liteSrc), // Case 1 or 2/3? in softlight_4f()
428 unsigned ida = 255 - da; in dstatop_modeproc() local
431 SkAlphaMulAlpha(ida, SkGetPackedR32(src)) + in dstatop_modeproc()
433 SkAlphaMulAlpha(ida, SkGetPackedG32(src)) + in dstatop_modeproc()
435 SkAlphaMulAlpha(ida, SkGetPackedB32(src)) + in dstatop_modeproc()
444 unsigned ida = 255 - da; in xor_modeproc() local
447 SkAlphaMulAlpha(ida, SkGetPackedR32(src)) + in xor_modeproc()
449 SkAlphaMulAlpha(ida, SkGetPackedG32(src)) + in xor_modeproc()
451 SkAlphaMulAlpha(ida, SkGetPackedB32(src)) + in xor_modeproc()