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