last_output      1117 drivers/gpu/ipu-v3/ipu-image-convert.c 	unsigned int last_output;
last_output      1153 drivers/gpu/ipu-v3/ipu-image-convert.c 		last_output = resized_width - 1;
last_output      1154 drivers/gpu/ipu-v3/ipu-image-convert.c 		if (closest && ((last_output * resize_coeff_h) % 8192))
last_output      1155 drivers/gpu/ipu-v3/ipu-image-convert.c 			last_output++;
last_output      1157 drivers/gpu/ipu-v3/ipu-image-convert.c 			(DIV_ROUND_UP(last_output * resize_coeff_h, 8192) + 1)
last_output      1210 drivers/gpu/ipu-v3/ipu-image-convert.c 		last_output = resized_height - 1;
last_output      1211 drivers/gpu/ipu-v3/ipu-image-convert.c 		if (closest && ((last_output * resize_coeff_v) % 8192))
last_output      1212 drivers/gpu/ipu-v3/ipu-image-convert.c 			last_output++;
last_output      1214 drivers/gpu/ipu-v3/ipu-image-convert.c 			(DIV_ROUND_UP(last_output * resize_coeff_v, 8192) + 1)