/Zephyr-latest/boards/shields/rk055hdmipi4m/ |
D | rk055hdmipi4m.overlay | 41 height = <1280>; 56 * (height + vsync-len + vfront-porch + vback-porch) * 86 height = <1280>;
|
/Zephyr-latest/boards/shields/rk055hdmipi4ma0/ |
D | rk055hdmipi4ma0.overlay | 41 height = <1280>; 56 * (height + vsync-len + vfront-porch + vback-porch) * 86 height = <1280>;
|
/Zephyr-latest/samples/drivers/video/capture/ |
D | README.rst | 84 RGBP width [480; 480; 0] height [272; 272; 0] 85 YUYV width [480; 480; 0] height [272; 272; 0] 86 RGBP width [640; 640; 0] height [480; 480; 0] 87 YUYV width [640; 640; 0] height [480; 480; 0] 88 RGBP width [1280; 1280; 0] height [720; 720; 0] 89 YUYV width [1280; 1280; 0] height [720; 720; 0]
|
/Zephyr-latest/drivers/display/ |
D | display_nt35510.c | 58 uint16_t height; member 277 capabilities->y_resolution = cfg->height; in nt35510_get_capabilities() 344 data->yres = cfg->height; in nt35510_init() 347 data->xres = cfg->height; in nt35510_init() 352 data->yres = cfg->height; in nt35510_init() 355 data->xres = cfg->height; in nt35510_init() 428 .height = DT_INST_PROP(n, height), \
|
D | display_stm32_ltdc.c | 76 uint32_t height; member 180 (desc->height == config->height) && in stm32_ltdc_write() 208 for (row = 0; row < desc->height; row++) { in stm32_ltdc_write() 245 for (row = 0; row < desc->height; row++) { in stm32_ltdc_read() 522 (STM32_LTDC_INIT_PIXEL_SIZE * DT_INST_PROP(inst, height) * DT_INST_PROP(inst, width)) \ 589 DT_INST_PROP(inst, height) - 1, \ 601 DT_INST_PROP(inst, height) + \ 617 DT_INST_PROP(inst, height)), \ 625 .ImageHeight = DT_INST_PROP(inst, height), \ 637 .height = DT_INST_PROP(inst, height), \
|
D | uc81xx.c | 83 uint16_t height; member 144 mipi_desc.height = 1; in uc81xx_write_cmd_pattern() 376 uint16_t y_end_idx = y + desc->height - 1; in uc81xx_write() 382 x, y, desc->height, desc->width, desc->pitch); in uc81xx_write() 385 desc->height * desc->width / UC81XX_PIXELS_PER_BYTE); in uc81xx_write() 392 if ((y_end_idx > (config->height - 1)) || in uc81xx_write() 474 caps->y_resolution = config->height; in uc81xx_get_capabilities() 495 const int size = config->width * config->height in uc81xx_clear_and_write_buffer() 557 config->height > config->quirks->max_height) { in uc81xx_init() 571 .vres = config->height, in uc81xx_set_tres_8() [all …]
|
D | display_gc9x01x.c | 520 __ASSERT((desc->pitch * data->bytes_per_pixel * desc->height) <= desc->buf_size, in gc9x01x_write() 523 LOG_DBG("Writing %dx%d (w,h) @ %dx%d (x,y)", desc->width, desc->height, x, y); in gc9x01x_write() 524 ret = gc9x01x_set_mem_area(dev, x, y, desc->width, desc->height); in gc9x01x_write() 531 nbr_of_writes = desc->height; in gc9x01x_write() 532 mipi_desc.height = 1; in gc9x01x_write() 535 write_h = desc->height; in gc9x01x_write() 536 mipi_desc.height = desc->height; in gc9x01x_write() 634 .y_resolution = DT_INST_PROP(inst, height), \
|
D | display_ist3931.c | 24 uint16_t height; member 214 caps->y_resolution = config->height; in ist3931_get_capabilities() 238 __ASSERT(y + desc->height <= IST3931_RAM_HEIGHT, "y+height is out of range"); in ist3931_write() 240 for (uint16_t i = 0; i < desc->height; i++) { in ist3931_write() 281 .height = DT_INST_PROP(inst, height), \
|
D | display_st7567.c | 38 uint16_t height; member 215 for (int i = 0; i < desc->height / 8; i++) { in st7567_write_default() 242 buf_len = MIN(desc->buf_size, desc->height * desc->width / 8); in st7567_write() 259 desc->width, desc->height, buf_len); in st7567_write() 280 caps->y_resolution = config->height; in st7567_get_capabilities() 350 for (int y = 0; y < config->height; y += 8) { in st7567_clear() 476 .height = DT_PROP(node_id, height), \
|
/Zephyr-latest/boards/shields/st_b_lcd40_dsi1_mb1166/ |
D | st_b_lcd40_dsi1_mb1166.overlay | 27 height = <800>; 40 height = <480>;
|
D | st_b_lcd40_dsi1_mb1166_a09.overlay | 27 height = <800>; 40 height = <480>;
|
/Zephyr-latest/boards/shields/rtkmipilcdb00000be/ |
D | rtkmipilcdb00000be.overlay | 36 height = <854>; 46 height = <854>;
|
/Zephyr-latest/samples/drivers/video/capture_to_lvgl/src/ |
D | main.c | 78 fmt.height = CONFIG_VIDEO_HEIGHT; in main() 88 (char)(fmt.pixelformat >> 16), (char)(fmt.pixelformat >> 24), fmt.width, fmt.height, in main() 96 bsize = fmt.pitch * fmt.height; in main()
|
/Zephyr-latest/drivers/video/ |
D | ov7725.c | 425 uint16_t width, height; in ov7725_set_fmt() local 430 if (fmt->pixelformat != VIDEO_PIX_FMT_RGB565 || fmt->height != 480 || in ov7725_set_fmt() 436 height = fmt->height; in ov7725_set_fmt() 496 ov7725_write_reg(&cfg->i2c, OV7725_VSIZE, height >> 1U); in ov7725_set_fmt() 498 ov7725_write_reg(&cfg->i2c, OV7725_VOUTSIZE, height >> 1U); in ov7725_set_fmt() 502 ((height & 1U) << 2U) | in ov7725_set_fmt() 505 ((height & 1U) << 2U) | in ov7725_set_fmt() 598 fmt.height = 480; in ov7725_init()
|
D | video_sw_generator.c | 72 fmt->width <= fmts[i].width_max && fmt->height >= fmts[i].height_min && in video_sw_generator_set_fmt() 73 fmt->height <= fmts[i].height_max) { in video_sw_generator_set_fmt() 126 for (h = 0; h < data->fmt.height; h++) { in __fill_buffer_colorbar() 318 (fie->format->height > fmts[i].height_max) || in video_sw_generator_enum_frmival() 319 (fie->format->height < fmts[i].height_min)) { in video_sw_generator_enum_frmival() 354 .fmt.height = 160,
|
D | video_emul_rx.c | 100 fmt->pixelformat, fmt->width, fmt->height); in emul_rx_set_fmt() 150 LOG_DBG("Queueing a frame of %u bytes in format %x %ux%u", fmt->pitch * fmt->height, in emul_rx_worker() 151 fmt->pixelformat, fmt->width, fmt->height); in emul_rx_worker() 154 vbuf->bytesused = fmt->pitch * fmt->height; in emul_rx_worker() 180 if (vbuf->size < fmt->pitch * fmt->height) { in emul_rx_enqueue()
|
/Zephyr-latest/tests/arch/x86/info/ |
D | app.overlay | 10 height = <480>;
|
/Zephyr-latest/samples/modules/lvgl/demos/boards/ |
D | native_sim.overlay | 9 height = <272>;
|
/Zephyr-latest/tests/lib/gui/lvgl/ |
D | app.overlay | 14 height = <240>;
|
/Zephyr-latest/samples/drivers/display/ |
D | dummy_dc.overlay | 14 height = <240>;
|
/Zephyr-latest/samples/drivers/video/capture/src/ |
D | main.c | 76 .height = vbuf->bytesused / fmt.pitch, in video_display_frame() 137 fmt.height = CONFIG_VIDEO_FRAME_HEIGHT; in main() 150 VIDEO_FOURCC_TO_STR(fmt.pixelformat), fmt.width, fmt.height); in main() 203 bsize = fmt.pitch * fmt.height; in main()
|
/Zephyr-latest/boards/shields/adafruit_neopixel_grid_bff/ |
D | adafruit_neopixel_grid_bff_display.overlay | 13 height = <5>;
|
/Zephyr-latest/modules/lvgl/ |
D | lvgl_display_mono.c | 48 static void lvgl_transform_buffer(uint8_t **px_map, uint32_t width, uint32_t height, in lvgl_transform_buffer() argument 62 for (uint32_t y = 0; y < height; y++) { in lvgl_transform_buffer() 102 .height = h, in lvgl_flush_cb_mono()
|
/Zephyr-latest/doc/_extensions/zephyr/domain/static/css/ |
D | board-catalog.css | 160 height: auto; 161 min-height: 100px; 162 max-height: 180px; 186 max-height: 100%; 223 min-height: 60px; 224 max-height: 120px;
|
/Zephyr-latest/tests/subsys/display/cfb/basic/src/ |
D | invert_area.c | 20 static const uint32_t display_height = DT_PROP(DT_CHOSEN(zephyr_display), height); 28 .height = display_height, in cfb_test_before()
|