Lines Matching refs:num_pixels
795 void VP8LSubtractGreenFromBlueAndRed_C(uint32_t* argb_data, int num_pixels) { in VP8LSubtractGreenFromBlueAndRed_C() argument
797 for (i = 0; i < num_pixels; ++i) { in VP8LSubtractGreenFromBlueAndRed_C()
808 void VP8LAddGreenToBlueAndRed_C(uint32_t* data, int num_pixels) { in VP8LAddGreenToBlueAndRed_C() argument
810 for (i = 0; i < num_pixels; ++i) { in VP8LAddGreenToBlueAndRed_C()
847 int num_pixels) { in VP8LTransformColor_C() argument
849 for (i = 0; i < num_pixels; ++i) { in VP8LTransformColor_C()
865 int num_pixels) { in VP8LTransformColorInverse_C() argument
867 for (i = 0; i < num_pixels; ++i) { in VP8LTransformColorInverse_C()
1298 int num_pixels, uint8_t* dst) { in VP8LConvertBGRAToRGB_C() argument
1299 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGB_C()
1309 int num_pixels, uint8_t* dst) { in VP8LConvertBGRAToRGBA_C() argument
1310 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGBA_C()
1321 int num_pixels, uint8_t* dst) { in VP8LConvertBGRAToRGBA4444_C() argument
1322 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGBA4444_C()
1338 int num_pixels, uint8_t* dst) { in VP8LConvertBGRAToRGB565_C() argument
1339 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGB565_C()
1355 int num_pixels, uint8_t* dst) { in VP8LConvertBGRAToBGR_C() argument
1356 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToBGR_C()
1365 static void CopyOrSwap(const uint32_t* src, int num_pixels, uint8_t* dst, in CopyOrSwap() argument
1368 const uint32_t* const src_end = src + num_pixels; in CopyOrSwap()
1390 memcpy(dst, src, num_pixels * sizeof(*src)); in CopyOrSwap()
1394 void VP8LConvertFromBGRA(const uint32_t* const in_data, int num_pixels, in VP8LConvertFromBGRA() argument
1398 VP8LConvertBGRAToRGB(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
1401 VP8LConvertBGRAToRGBA(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
1404 VP8LConvertBGRAToRGBA(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
1405 WebPApplyAlphaMultiply(rgba, 0, num_pixels, 1, 0); in VP8LConvertFromBGRA()
1408 VP8LConvertBGRAToBGR(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
1411 CopyOrSwap(in_data, num_pixels, rgba, 1); in VP8LConvertFromBGRA()
1414 CopyOrSwap(in_data, num_pixels, rgba, 1); in VP8LConvertFromBGRA()
1415 WebPApplyAlphaMultiply(rgba, 0, num_pixels, 1, 0); in VP8LConvertFromBGRA()
1418 CopyOrSwap(in_data, num_pixels, rgba, 0); in VP8LConvertFromBGRA()
1421 CopyOrSwap(in_data, num_pixels, rgba, 0); in VP8LConvertFromBGRA()
1422 WebPApplyAlphaMultiply(rgba, 1, num_pixels, 1, 0); in VP8LConvertFromBGRA()
1425 VP8LConvertBGRAToRGBA4444(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
1428 VP8LConvertBGRAToRGBA4444(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
1429 WebPApplyAlphaMultiply4444(rgba, num_pixels, 1, 0); in VP8LConvertFromBGRA()
1432 VP8LConvertBGRAToRGB565(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()