Lines Matching defs:size

42 	 * . . . . . . . . . . . . . . . .  --> Buffer size alignment
49 * Total size = align((Y_Stride * Y_Scanlines
80 * . . . . . . . . . . . . . . . . --> Padding & Buffer size alignment
87 * Total size = align((Y_Stride * Y_Scanlines
138 * . . . . . . . . . . . . . . . . --> Buffer size alignment
147 * Total size = align((2*(Y_Stride * Y_Scanlines)
187 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
201 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
210 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
218 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
234 * Total size = align( Y_UBWC_Plane_size + UV_UBWC_Plane_size +
275 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
289 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
298 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
306 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
323 * Total size = align(Y_UBWC_Plane_size + UV_UBWC_Plane_size +
352 * Total size = align(RGB_Plane_size + Extradata, 4096)
372 * . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
386 * . . . . . . . . . . . . . . . . -------> Buffer size aligned to 4k
398 * Total size = align(RGB_Meta_Plane_size + RGB_Plane_size +
410 * In the future, calculate the size based on the w/h but just
713 unsigned int uv_alignment = 0, size = 0;
740 size = y_plane + uv_plane +
742 size = MSM_MEDIA_ALIGN(size, 4096);
748 size = y_plane + uv_plane;
749 size = 2 * size + extra_size;
750 size = MSM_MEDIA_ALIGN(size, 4096);
765 size = y_ubwc_plane + uv_ubwc_plane + y_meta_plane +
768 size = MSM_MEDIA_ALIGN(size, 4096);
772 size = rgb_plane;
773 size = MSM_MEDIA_ALIGN(size, 4096);
783 size = rgb_ubwc_plane + rgb_meta_plane;
784 size = MSM_MEDIA_ALIGN(size, 4096);
790 return size;