Lines Matching refs:height

40                             int width, int height, int fourcc, unsigned int flags,  in psb_surface_create()  argument
59 if ((width <= 0) || (width * height > 5120 * 5120) || (height <= 0)) { in psb_surface_create()
92 psb_surface->chroma_offset = psb_surface->stride * height; in psb_surface_create()
93 psb_surface->size = (psb_surface->stride * height * 3) / 2; in psb_surface_create()
101 psb_surface->size = psb_surface->stride * height; in psb_surface_create()
104 if ((width <= 0) || (width * height > 5120 * 5120) || (height <= 0)) { in psb_surface_create()
137 psb_surface->chroma_offset = psb_surface->stride * height; in psb_surface_create()
138 psb_surface->size = psb_surface->stride * height * 2; in psb_surface_create()
144 psb_surface->chroma_offset = psb_surface->stride * height; in psb_surface_create()
145 psb_surface->size = psb_surface->stride * height * 4; in psb_surface_create()
161 int width, int height, in psb_surface_create_for_userptr() argument
175 if ((width <= 0) || (width > 5120) || (height <= 0) || (height > 5120)) in psb_surface_create_for_userptr()
195 int width, int height, in psb_surface_create_from_kbuf() argument
210 if ((width <= 0) || (width > 5120) || (height <= 0) || (height > 5120)) in psb_surface_create_from_kbuf()
248 int width, int height, int stride, int size, in psb_surface_create_camera() argument
256 if ((width <= 0) || (width > 4096) || (height <= 0) || (height > 4096)) { in psb_surface_create_camera()
261 if ((width == 640) && (height == 360)) { in psb_surface_create_camera()
265 psb_surface->chroma_offset = psb_surface->stride * height; in psb_surface_create_camera()
266 psb_surface->size = (psb_surface->stride * height * 3) / 2; in psb_surface_create_camera()
287 int width, int height, int stride, int size, in psb_surface_create_camera_from_ub() argument
295 if ((width <= 0) || (width > 4096) || (height <= 0) || (height > 4096)) { in psb_surface_create_camera_from_ub()
300 psb_surface->chroma_offset = psb_surface->stride * height; in psb_surface_create_camera_from_ub()
301 psb_surface->size = (psb_surface->stride * height * 3) / 2; in psb_surface_create_camera_from_ub()
373 int width, int height, in psb_surface_set_displaying() argument
383 value.height = height; in psb_surface_set_displaying()