Home
last modified time | relevance | path

Searched refs:red_and_blue (Results 1 – 2 of 2) sorted by relevance

/external/webp/src/dsp/
Dlossless_common.h162 const uint32_t red_and_blue = (a & 0x00ff00ffu) + (b & 0x00ff00ffu); in VP8LAddPixels() local
163 return (alpha_and_green & 0xff00ff00u) | (red_and_blue & 0x00ff00ffu); in VP8LAddPixels()
171 const uint32_t red_and_blue = in VP8LSubPixels() local
173 return (alpha_and_green & 0xff00ff00u) | (red_and_blue & 0x00ff00ffu); in VP8LSubPixels()
/external/webp/src/enc/
Ddelta_palettization_enc.c267 const uint32_t red_and_blue = (*a & 0x00ff00ffu) + (b & 0x00ff00ffu); in AddPixelsEq() local
268 *a = (alpha_and_green & 0xff00ff00u) | (red_and_blue & 0x00ff00ffu); in AddPixelsEq()