Lines Matching refs:num_pixels
174 int num_pixels, uint32_t* out) { in GENERATE_PREDICTOR_ADD()
177 for (i = 0; i < num_pixels; ++i) { in GENERATE_PREDICTOR_ADD()
244 void VP8LAddGreenToBlueAndRed_C(const uint32_t* src, int num_pixels, in VP8LAddGreenToBlueAndRed_C() argument
247 for (i = 0; i < num_pixels; ++i) { in VP8LAddGreenToBlueAndRed_C()
270 const uint32_t* src, int num_pixels, in VP8LTransformColorInverse_C() argument
273 for (i = 0; i < num_pixels; ++i) { in VP8LTransformColorInverse_C()
428 int num_pixels, uint8_t* dst) { in VP8LConvertBGRAToRGB_C() argument
429 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGB_C()
439 int num_pixels, uint8_t* dst) { in VP8LConvertBGRAToRGBA_C() argument
440 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGBA_C()
451 int num_pixels, uint8_t* dst) { in VP8LConvertBGRAToRGBA4444_C() argument
452 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGBA4444_C()
468 int num_pixels, uint8_t* dst) { in VP8LConvertBGRAToRGB565_C() argument
469 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGB565_C()
485 int num_pixels, uint8_t* dst) { in VP8LConvertBGRAToBGR_C() argument
486 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToBGR_C()
495 static void CopyOrSwap(const uint32_t* src, int num_pixels, uint8_t* dst, in CopyOrSwap() argument
498 const uint32_t* const src_end = src + num_pixels; in CopyOrSwap()
505 memcpy(dst, src, num_pixels * sizeof(*src)); in CopyOrSwap()
509 void VP8LConvertFromBGRA(const uint32_t* const in_data, int num_pixels, in VP8LConvertFromBGRA() argument
513 VP8LConvertBGRAToRGB(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
516 VP8LConvertBGRAToRGBA(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
519 VP8LConvertBGRAToRGBA(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
520 WebPApplyAlphaMultiply(rgba, 0, num_pixels, 1, 0); in VP8LConvertFromBGRA()
523 VP8LConvertBGRAToBGR(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
526 CopyOrSwap(in_data, num_pixels, rgba, 1); in VP8LConvertFromBGRA()
529 CopyOrSwap(in_data, num_pixels, rgba, 1); in VP8LConvertFromBGRA()
530 WebPApplyAlphaMultiply(rgba, 0, num_pixels, 1, 0); in VP8LConvertFromBGRA()
533 CopyOrSwap(in_data, num_pixels, rgba, 0); in VP8LConvertFromBGRA()
536 CopyOrSwap(in_data, num_pixels, rgba, 0); in VP8LConvertFromBGRA()
537 WebPApplyAlphaMultiply(rgba, 1, num_pixels, 1, 0); in VP8LConvertFromBGRA()
540 VP8LConvertBGRAToRGBA4444(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
543 VP8LConvertBGRAToRGBA4444(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
544 WebPApplyAlphaMultiply4444(rgba, num_pixels, 1, 0); in VP8LConvertFromBGRA()
547 VP8LConvertBGRAToRGB565(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()