Searched refs:iG (Results 1 – 3 of 3) sorted by relevance
/frameworks/rs/toolkit/ |
D | Blend.cpp | 313 uint32_t iR = in->x, iG = in->y, iB = in->z, iA = in->w, in blend() local 316 out->y = (oG + iG) > 255 ? 255 : oG + iG; in blend() 334 int32_t iR = in->x, iG = in->y, iB = in->z, iA = in->w, in blend() local 337 out->y = (oG - iG) < 0 ? 0 : oG - iG; in blend()
|
/frameworks/rs/cpu_ref/ |
D | rsCpuIntrinsicBlend.cpp | 437 uint32_t iR = in->x, iG = in->y, iB = in->z, iA = in->w, in kernel() local 440 out->y = (oG + iG) > 255 ? 255 : oG + iG; in kernel() 458 int32_t iR = in->x, iG = in->y, iB = in->z, iA = in->w, in kernel() local 461 out->y = (oG - iG) < 0 ? 0 : oG - iG; in kernel()
|
/frameworks/base/core/java/com/android/internal/graphics/palette/ |
D | WuQuantizer.java | 130 int iG = (green >> bitsToRemove) + 1; in constructHistogram() local 132 int index = getIndex(iR, iG, iB); in constructHistogram()
|