Lines Matching full:argb
140 const uint32_t argb = ptr[x];
141 if (argb < 0xff000000u) { // alpha < 255
142 if (argb <= 0x00ffffffu) { // alpha == 0
145 const uint32_t alpha = (argb >> 24) & 0xff;
147 uint32_t out = argb & 0xff000000u;
148 out |= Mult(argb >> 0, scale) << 0;
149 out |= Mult(argb >> 8, scale) << 8;
150 out |= Mult(argb >> 16, scale) << 16;
319 static int ExtractAlpha(const uint8_t* argb, int argb_stride,
327 const uint8_t alpha_value = argb[4 * i];
331 argb += argb_stride;