Lines Matching refs:max_width
409 const int max_width = width & ~31; in ConvertRGB24ToY_SSE41() local
411 for (i = 0; i < max_width; rgb += 3 * 16 * 2) { in ConvertRGB24ToY_SSE41()
443 const int max_width = width & ~31; in ConvertBGR24ToY_SSE41() local
445 for (i = 0; i < max_width; bgr += 3 * 16 * 2) { in ConvertBGR24ToY_SSE41()
477 const int max_width = width & ~15; in ConvertARGBToY_SSE41() local
479 for (i = 0; i < max_width; i += 16) { in ConvertARGBToY_SSE41()
507 const int max_width = src_width & ~31; in ConvertARGBToUV_SSE41() local
509 for (i = 0; i < max_width; i += 32, u += 16, v += 16) { in ConvertARGBToUV_SSE41()
573 const int max_width = width & ~15; in ConvertRGBA32ToUV_SSE41() local
574 const uint16_t* const last_rgb = rgb + 4 * max_width; in ConvertRGBA32ToUV_SSE41()
587 if (max_width < width) { // left-over in ConvertRGBA32ToUV_SSE41()
588 WebPConvertRGBA32ToUV_C(rgb, u, v, width - max_width); in ConvertRGBA32ToUV_SSE41()