/external/webp/src/dsp/ |
alpha_processing_sse2.c | 172 static void ApplyAlphaMultiply(uint8_t* rgba, int alpha_first, 180 if (!alpha_first) { 197 uint8_t* const rgb = rgba + (alpha_first ? 1 : 0); 198 const uint8_t* const alpha = rgba + (alpha_first ? 0 : 3);
|
alpha_processing.c | 220 static void ApplyAlphaMultiply(uint8_t* rgba, int alpha_first, 223 uint8_t* const rgb = rgba + (alpha_first ? 1 : 0); 224 const uint8_t* const alpha = rgba + (alpha_first ? 0 : 3);
|
dsp.h | 394 // alpha_first should be 0 for argb, 1 for rgba or bgra (where alpha is last). 396 uint8_t* rgba, int alpha_first, int w, int h, int stride);
|
/external/opencv3/3rdparty/libwebp/dsp/ |
upsampling.c | 253 static void ApplyAlphaMultiply(uint8_t* rgba, int alpha_first, 256 uint8_t* const rgb = rgba + (alpha_first ? 1 : 0); 257 const uint8_t* const alpha = rgba + (alpha_first ? 0 : 3);
|
dsp.h | 195 // alpha_first should be 0 for argb, 1 for rgba or bgra (where alpha is last). 197 uint8_t* rgba, int alpha_first, int w, int h, int stride);
|
/external/opencv3/3rdparty/libwebp/dec/ |
io.c | 220 const int alpha_first = local 226 uint8_t* dst = base_rgba + (alpha_first ? 0 : 3); 241 WebPApplyAlphaMultiply(base_rgba, alpha_first, 412 const int alpha_first = local 414 uint8_t* dst = base_rgba + (alpha_first ? 0 : 3); 433 WebPApplyAlphaMultiply(base_rgba, alpha_first,
|
/external/webp/src/dec/ |
io.c | 180 const int alpha_first = local 186 uint8_t* const dst = base_rgba + (alpha_first ? 0 : 3); 193 WebPApplyAlphaMultiply(base_rgba, alpha_first, 387 const int alpha_first = local 389 uint8_t* dst = base_rgba + (alpha_first ? 0 : 3); 404 WebPApplyAlphaMultiply(base_rgba, alpha_first,
|
/external/libpng/contrib/libtests/ |
pngvalid.c | 5647 unsigned int alpha_first :1; \/* Alpha at start, not end *\/ member in struct:image_pixel [all...] |