Lines Matching refs:argb
506 const int argb = argb_data[i]; in VP8LSubtractGreenFromBlueAndRed_C() local
507 const int green = (argb >> 8) & 0xff; in VP8LSubtractGreenFromBlueAndRed_C()
508 const uint32_t new_r = (((argb >> 16) & 0xff) - green) & 0xff; in VP8LSubtractGreenFromBlueAndRed_C()
509 const uint32_t new_b = (((argb >> 0) & 0xff) - green) & 0xff; in VP8LSubtractGreenFromBlueAndRed_C()
510 argb_data[i] = (argb & 0xff00ff00u) | (new_r << 16) | new_b; in VP8LSubtractGreenFromBlueAndRed_C()
522 const uint32_t argb = data[i]; in VP8LTransformColor_C() local
523 const uint32_t green = argb >> 8; in VP8LTransformColor_C()
524 const uint32_t red = argb >> 16; in VP8LTransformColor_C()
526 int new_blue = argb & 0xff; in VP8LTransformColor_C()
532 data[i] = (argb & 0xff00ff00u) | (new_red << 16) | (new_blue); in VP8LTransformColor_C()
537 uint32_t argb) { in TransformColorRed() argument
538 const uint32_t green = argb >> 8; in TransformColorRed()
539 int new_red = argb >> 16; in TransformColorRed()
546 uint32_t argb) { in TransformColorBlue() argument
547 const uint32_t green = argb >> 8; in TransformColorBlue()
548 const uint32_t red = argb >> 16; in TransformColorBlue()
549 uint8_t new_blue = argb; in TransformColorBlue()
555 void VP8LCollectColorRedTransforms_C(const uint32_t* argb, int stride, in VP8LCollectColorRedTransforms_C() argument
561 ++histo[TransformColorRed(green_to_red, argb[x])]; in VP8LCollectColorRedTransforms_C()
563 argb += stride; in VP8LCollectColorRedTransforms_C()
567 void VP8LCollectColorBlueTransforms_C(const uint32_t* argb, int stride, in VP8LCollectColorBlueTransforms_C() argument
574 ++histo[TransformColorBlue(green_to_blue, red_to_blue, argb[x])]; in VP8LCollectColorBlueTransforms_C()
576 argb += stride; in VP8LCollectColorBlueTransforms_C()