Searched defs:rgba4444 (Results 1 - 3 of 3) sorted by relevance

/external/webp/src/dsp/
H A Dalpha_processing.c257 static WEBP_INLINE void ApplyAlphaMultiply4444(uint8_t* rgba4444, argument
263 const uint32_t rg = rgba4444[2 * i + rg_byte_pos];
264 const uint32_t ba = rgba4444[2 * i + (rg_byte_pos ^ 1)];
270 rgba4444[2 * i + rg_byte_pos] = (r & 0xf0) | ((g >> 4) & 0x0f);
271 rgba4444[2 * i + (rg_byte_pos ^ 1)] = (b & 0xf0) | a;
273 rgba4444 += stride;
278 static void ApplyAlphaMultiply_16b(uint8_t* rgba4444, argument
281 ApplyAlphaMultiply4444(rgba4444, w, h, stride, 1);
283 ApplyAlphaMultiply4444(rgba4444, w, h, stride, 0);
H A Dyuv_sse2.c134 const __m128i rgba4444 = _mm_or_si128(rb2, ga2); local
135 _mm_storeu_si128((__m128i*)dst, rgba4444);
/external/skia/tests/
H A DReadPixelsTest.cpp496 static const uint16_t rgba4444[kNumPixels] = { 0xF00F, 0x0F0F, 0x00FF, 0xFFFF, 0x000F }; variable
518 return rgba4444;

Completed in 108 milliseconds