Lines Matching refs:tmp_rgb
889 uint16_t* const tmp_rgb = in ImportYUVAFromRGBA() local
890 (uint16_t*)WebPSafeMalloc(4 * uv_width, sizeof(*tmp_rgb)); in ImportYUVAFromRGBA()
906 if (tmp_rgb == NULL) return 0; // malloc error in ImportYUVAFromRGBA()
936 AccumulateRGB(r_ptr, g_ptr, b_ptr, step, rgb_stride, tmp_rgb, width); in ImportYUVAFromRGBA()
938 AccumulateRGBA(r_ptr, g_ptr, b_ptr, a_ptr, rgb_stride, tmp_rgb, width); in ImportYUVAFromRGBA()
942 WebPConvertRGBA32ToUV(tmp_rgb, dst_u, dst_v, uv_width); in ImportYUVAFromRGBA()
944 ConvertRowsToUV(tmp_rgb, dst_u, dst_v, uv_width, rg); in ImportYUVAFromRGBA()
971 tmp_rgb, width); in ImportYUVAFromRGBA()
974 tmp_rgb, width); in ImportYUVAFromRGBA()
977 WebPConvertRGBA32ToUV(tmp_rgb, dst_u, dst_v, uv_width); in ImportYUVAFromRGBA()
979 ConvertRowsToUV(tmp_rgb, dst_u, dst_v, uv_width, rg); in ImportYUVAFromRGBA()
982 WebPSafeFree(tmp_rgb); in ImportYUVAFromRGBA()