HomeSort by relevance Sort by last modified time
    Searched refs:alpha_first (Results 1 - 6 of 6) sorted by null

  /external/webp/src/dsp/
alpha_processing_neon.c 42 static void ApplyAlphaMultiply_NEON(uint8_t* rgba, int alpha_first,
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);
alpha_processing_sse2.c 177 static void ApplyAlphaMultiply_SSE2(uint8_t* rgba, int alpha_first,
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);
alpha_processing.c 224 static void ApplyAlphaMultiply_C(uint8_t* rgba, int alpha_first,
227 uint8_t* const rgb = rgba + (alpha_first ? 1 : 0);
228 const uint8_t* const alpha = rgba + (alpha_first ? 0 : 3);
dsp.h 565 // alpha_first should be 0 for argb, 1 for rgba or bgra (where alpha is last).
567 uint8_t* rgba, int alpha_first, int w, int h, int stride);
  /external/webp/src/dec/
io_dec.c 185 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/
pngvalid.c 6022 unsigned int alpha_first :1; \/* Alpha at start, not end *\/ member in struct:image_pixel
    [all...]

Completed in 414 milliseconds