Searched defs:alpha_first (Results 1 - 5 of 5) sorted by relevance

/external/webp/src/dsp/
H A Dalpha_processing_neon.c42 static void ApplyAlphaMultiply_NEON(uint8_t* rgba, int alpha_first, argument
48 if (alpha_first) {
64 uint8_t* const rgb = rgba + (alpha_first ? 1 : 0);
65 const uint8_t* const alpha = rgba + (alpha_first ? 0 : 3);
H A Dalpha_processing.c224 static void ApplyAlphaMultiply_C(uint8_t* rgba, int alpha_first, argument
227 uint8_t* const rgb = rgba + (alpha_first ? 1 : 0);
228 const uint8_t* const alpha = rgba + (alpha_first ? 0 : 3);
H A Dalpha_processing_sse2.c177 static void ApplyAlphaMultiply_SSE2(uint8_t* rgba, int alpha_first, argument
186 if (!alpha_first) {
197 uint8_t* const rgb = rgba + (alpha_first ? 1 : 0);
198 const uint8_t* const alpha = rgba + (alpha_first ? 0 : 3);
/external/webp/src/dec/
H A Dio_dec.c185 const int alpha_first = local
191 uint8_t* const dst = base_rgba + (alpha_first ? 0 : 3);
198 WebPApplyAlphaMultiply(base_rgba, alpha_first,
408 const int alpha_first = local
410 uint8_t* dst = base_rgba + (alpha_first ? 0 : 3);
425 WebPApplyAlphaMultiply(base_rgba, alpha_first,
/external/libpng/contrib/libtests/
H A Dpngvalid.c6022 unsigned int alpha_first :1; /* Alpha at start, not end */ member in struct:image_pixel
6117 if ((colour_type & 4) != 0 && format != 0 && format->alpha_first)
6145 if (format == 0 || !format->alpha_first)
6172 this->alpha_first = 0;
8515 that->alpha_first = 1;
8641 that->alpha_first = data.flags == PNG_FILLER_BEFORE;
8702 that->alpha_first = data.flags == PNG_FILLER_BEFORE;

Completed in 401 milliseconds