Lines Matching refs:size

44 	 * . . . . . . . . . . . . . . . .  --> Buffer size alignment
51 * Total size = align((Y_Stride * Y_Scanlines
82 * . . . . . . . . . . . . . . . . --> Padding & Buffer size alignment
89 * Total size = align((Y_Stride * Y_Scanlines
140 * . . . . . . . . . . . . . . . . --> Buffer size alignment
149 * Total size = align((2*(Y_Stride * Y_Scanlines)
189 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
203 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
212 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
220 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
236 * Total size = align( Y_UBWC_Plane_size + UV_UBWC_Plane_size +
277 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
291 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
300 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
308 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
325 * Total size = align(Y_UBWC_Plane_size + UV_UBWC_Plane_size +
354 * Total size = align(RGB_Plane_size + Extradata, 4096)
374 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
388 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
400 * Total size = align(RGB_Meta_Plane_size + RGB_Plane_size +
421 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
435 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
447 * Total size = align(RGB_Meta_Plane_size + RGB_Plane_size +
468 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
482 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
494 * Total size = align(RGB_Meta_Plane_size + RGB_Plane_size +
534 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
548 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
557 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
565 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
582 * Total size = align(Y_UBWC_Plane_size + UV_UBWC_Plane_size +
599 * In the future, calculate the size based on the w/h but just
932 unsigned int uv_alignment = 0, size = 0;
959 size = y_plane + uv_plane +
961 size = MSM_MEDIA_ALIGN(size, 4096);
967 size = y_plane + uv_plane;
968 size = 2 * size + extra_size;
969 size = MSM_MEDIA_ALIGN(size, 4096);
984 size = y_ubwc_plane + uv_ubwc_plane + y_meta_plane +
987 size = MSM_MEDIA_ALIGN(size, 4096);
1001 size = y_ubwc_plane + uv_ubwc_plane + y_meta_plane +
1003 size = MSM_MEDIA_ALIGN(size, 4096);
1007 size = rgb_plane;
1008 size = MSM_MEDIA_ALIGN(size, 4096);
1018 size = rgb_ubwc_plane + rgb_meta_plane;
1019 size = MSM_MEDIA_ALIGN(size, 4096);
1025 return size;