Lines Matching refs:argb
246 const uint32_t argb = src[i]; in VP8LAddGreenToBlueAndRed_C() local
247 const uint32_t green = ((argb >> 8) & 0xff); in VP8LAddGreenToBlueAndRed_C()
248 uint32_t red_blue = (argb & 0x00ff00ffu); in VP8LAddGreenToBlueAndRed_C()
251 dst[i] = (argb & 0xff00ff00u) | red_blue; in VP8LAddGreenToBlueAndRed_C()
272 const uint32_t argb = src[i]; in VP8LTransformColorInverse_C() local
273 const uint32_t green = argb >> 8; in VP8LTransformColorInverse_C()
274 const uint32_t red = argb >> 16; in VP8LTransformColorInverse_C()
276 int new_blue = argb & 0xff; in VP8LTransformColorInverse_C()
282 dst[i] = (argb & 0xff00ff00u) | (new_red << 16) | (new_blue); in VP8LTransformColorInverse_C()
429 const uint32_t argb = *src++; in VP8LConvertBGRAToRGB_C() local
430 *dst++ = (argb >> 16) & 0xff; in VP8LConvertBGRAToRGB_C()
431 *dst++ = (argb >> 8) & 0xff; in VP8LConvertBGRAToRGB_C()
432 *dst++ = (argb >> 0) & 0xff; in VP8LConvertBGRAToRGB_C()
440 const uint32_t argb = *src++; in VP8LConvertBGRAToRGBA_C() local
441 *dst++ = (argb >> 16) & 0xff; in VP8LConvertBGRAToRGBA_C()
442 *dst++ = (argb >> 8) & 0xff; in VP8LConvertBGRAToRGBA_C()
443 *dst++ = (argb >> 0) & 0xff; in VP8LConvertBGRAToRGBA_C()
444 *dst++ = (argb >> 24) & 0xff; in VP8LConvertBGRAToRGBA_C()
452 const uint32_t argb = *src++; in VP8LConvertBGRAToRGBA4444_C() local
453 const uint8_t rg = ((argb >> 16) & 0xf0) | ((argb >> 12) & 0xf); in VP8LConvertBGRAToRGBA4444_C()
454 const uint8_t ba = ((argb >> 0) & 0xf0) | ((argb >> 28) & 0xf); in VP8LConvertBGRAToRGBA4444_C()
469 const uint32_t argb = *src++; in VP8LConvertBGRAToRGB565_C() local
470 const uint8_t rg = ((argb >> 16) & 0xf8) | ((argb >> 13) & 0x7); in VP8LConvertBGRAToRGB565_C()
471 const uint8_t gb = ((argb >> 5) & 0xe0) | ((argb >> 3) & 0x1f); in VP8LConvertBGRAToRGB565_C()
486 const uint32_t argb = *src++; in VP8LConvertBGRAToBGR_C() local
487 *dst++ = (argb >> 0) & 0xff; in VP8LConvertBGRAToBGR_C()
488 *dst++ = (argb >> 8) & 0xff; in VP8LConvertBGRAToBGR_C()
489 *dst++ = (argb >> 16) & 0xff; in VP8LConvertBGRAToBGR_C()
498 const uint32_t argb = *src++; in CopyOrSwap() local
499 WebPUint32ToMem(dst, BSwap32(argb)); in CopyOrSwap()
500 dst += sizeof(argb); in CopyOrSwap()