Searched refs:widthp (Results 1 - 6 of 6) sorted by relevance

/u-boot/arch/arm/mach-bcm283x/include/mach/
H A Dmsg.h38 * @widthp: Returns the width in pixels
42 int bcm2835_get_video_size(int *widthp, int *heightp);
47 * @widthp: Video width to request (returns the actual width selected)
57 int bcm2835_set_video_params(int *widthp, int *heightp, int depth_bpp,
/u-boot/arch/arm/mach-bcm283x/
H A Dmsg.c141 int bcm2835_get_video_size(int *widthp, int *heightp) argument
154 *widthp = msg_query->physical_w_h.body.resp.width;
160 int bcm2835_set_video_params(int *widthp, int *heightp, int depth_bpp, argument
169 msg_setup->physical_w_h.body.req.width = *widthp;
172 msg_setup->virtual_w_h.body.req.width = *widthp;
197 *widthp = msg_setup->physical_w_h.body.resp.width;
/u-boot/include/
H A Dvideo.h276 * @widthp: Returns width in pixels
280 void video_bmp_get_info(void *bmp_image, ulong *widthp, ulong *heightp,
H A Dexpo.h666 * @widthp: If non-NULL, returns width of object in pixels
669 int scene_obj_get_hw(struct scene *scn, uint id, int *widthp);
/u-boot/boot/
H A Dscene.c272 int scene_obj_get_hw(struct scene *scn, uint id, int *widthp) argument
291 if (widthp)
292 *widthp = width;
309 if (widthp)
310 *widthp = 8 * len;
318 if (widthp)
319 *widthp = bbox.x1;
/u-boot/drivers/video/
H A Dvideo_bmp.c246 void video_bmp_get_info(void *bmp_image, ulong *widthp, ulong *heightp, argument
251 *widthp = get_unaligned_le32(&bmp->header.width);

Completed in 63 milliseconds