Home | History | Annotate | Download | only in dsp

Lines Matching refs:argb

241     const uint32_t argb = data[i];
242 const uint32_t green = ((argb >> 8) & 0xff);
243 uint32_t red_blue = (argb & 0x00ff00ffu);
246 data[i] = (argb & 0xff00ff00u) | red_blue;
266 const uint32_t argb = data[i];
267 const uint32_t green = argb >> 8;
268 const uint32_t red = argb >> 16;
270 uint32_t new_blue = argb;
276 data[i] = (argb & 0xff00ff00u) | (new_red << 16) | (new_blue);
314 // We define two methods for ARGB data (uint32_t) and alpha-only data (uint8_t).
420 const uint32_t argb = *src++;
421 *dst++ = (argb >> 16) & 0xff;
422 *dst++ = (argb >> 8) & 0xff;
423 *dst++ = (argb >> 0) & 0xff;
431 const uint32_t argb = *src++;
432 *dst++ = (argb >> 16) & 0xff;
433 *dst++ = (argb >> 8) & 0xff;
434 *dst++ = (argb >> 0) & 0xff;
435 *dst++ = (argb >> 24) & 0xff;
443 const uint32_t argb = *src++;
444 const uint8_t rg = ((argb >> 16) & 0xf0) | ((argb >> 12) & 0xf);
445 const uint8_t ba = ((argb >> 0) & 0xf0) | ((argb >> 28) & 0xf);
460 const uint32_t argb = *src++;
461 const uint8_t rg = ((argb >> 16) & 0xf8) | ((argb >> 13) & 0x7);
462 const uint8_t gb = ((argb >> 5) & 0xe0) | ((argb >> 3) & 0x1f);
477 const uint32_t argb = *src++;
478 *dst++ = (argb >> 0) & 0xff;
479 *dst++ = (argb >> 8) & 0xff;
480 *dst++ = (argb >> 16) & 0xff;
489 const uint32_t argb = *src++;
493 WebPUint32ToMem(dst, BSwap32(argb));
495 dst[0] = (argb >> 24) & 0xff;
496 dst[1] = (argb >> 16) & 0xff;
497 dst[2] = (argb >> 8) & 0xff;
498 dst[3] = (argb >> 0) & 0xff;
501 dst[0] = (argb >> 0) & 0xff;
502 dst[1] = (argb >> 8) & 0xff;
503 dst[2] = (argb >> 16) & 0xff;
504 dst[3] = (argb >> 24) & 0xff;
506 dst += sizeof(argb);