/Zephyr-latest/doc/_extensions/zephyr/kconfig/static/ |
D | kconfig.css | 13 width: 100%; 20 width: 90%; 36 width: 10%;
|
/Zephyr-latest/boards/shields/rk043fn02h_ct/ |
D | rk043fn02h_ct.overlay | 32 width = <480>; 49 data-bus-width = "16-bit";
|
/Zephyr-latest/drivers/video/ |
D | ov5640.c | 135 uint16_t width; member 491 .width = 640, 500 .width = 1280, 540 .width = 160, 548 .width = 320, 556 .width = 480, 564 #define OV5640_VIDEO_FORMAT_CAP(width, height, format) \ argument 566 .width_min = (width), \ 567 .width_max = (width), \ 787 if (fmt->pixelformat == fmts[i].pixelformat && fmt->width >= fmts[i].width_min && in ov5640_set_fmt() [all …]
|
D | video_sw_generator.c | 71 if (fmt->pixelformat == fmts[i].pixelformat && fmt->width >= fmts[i].width_min && in video_sw_generator_set_fmt() 72 fmt->width <= fmts[i].width_max && fmt->height >= fmts[i].height_min && in video_sw_generator_set_fmt() 123 int bw = data->fmt.width / 8; in __fill_buffer_colorbar() 127 for (w = 0; w < data->fmt.width; w++) { in __fill_buffer_colorbar() 316 if ((i == ARRAY_SIZE(fmts)) || (fie->format->width > fmts[i].width_max) || in video_sw_generator_enum_frmival() 317 (fie->format->width < fmts[i].width_min) || in video_sw_generator_enum_frmival() 353 .fmt.width = 320,
|
/Zephyr-latest/drivers/display/ |
D | display_st7796s.c | 31 uint16_t width; member 65 const uint16_t width, const uint16_t height) in st7796s_set_cursor() argument 72 addr_data[1] = sys_cpu_to_be16(x + width - 1); in st7796s_set_cursor() 163 ret = st7796s_set_cursor(dev, x, y, desc->width, desc->height); in st7796s_write() 168 mipi_desc.buf_size = desc->width * desc->height * ST7796S_PIXEL_SIZE; in st7796s_write() 194 capabilities->x_resolution = config->width; in st7796s_get_capabilities() 385 .width = DT_INST_PROP(n, width), \
|
D | display_gc9x01x.c | 519 __ASSERT(desc->width <= desc->pitch, "Pitch is smaller than width"); 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() 529 if (desc->pitch > desc->width) { in gc9x01x_write() 533 mipi_desc.buf_size = desc->width * data->bytes_per_pixel; in gc9x01x_write() 537 mipi_desc.buf_size = desc->width * data->bytes_per_pixel * write_h; in gc9x01x_write() 541 mipi_desc.width = desc->width; in gc9x01x_write() 543 mipi_desc.pitch = desc->width; in gc9x01x_write() 633 .x_resolution = DT_INST_PROP(inst, width), \
|
D | display_ist3931.c | 25 uint16_t width; member 213 caps->x_resolution = config->width; in ist3931_get_capabilities() 237 __ASSERT(x + desc->width <= IST3931_RAM_WIDTH, "x+width is out of range"); in ist3931_write() 243 ist3931_write_bus(dev, write_data_start, 0, desc->width / 8); in ist3931_write() 244 write_data_start += desc->width / 8; in ist3931_write() 280 .width = DT_INST_PROP(inst, width), \
|
D | display_mcux_dcnano_lcdif.c | 59 LOG_DBG("W=%d, H=%d @%d,%d", desc->width, desc->height, x, y); in mcux_dcnano_lcdif_write() 62 (desc->width == config->dpi_config.panelWidth) && in mcux_dcnano_lcdif_write() 64 (desc->pitch == desc->width)) { in mcux_dcnano_lcdif_write() 89 memcpy(dst, src, data->pixel_bytes * desc->width); in mcux_dcnano_lcdif_write() 261 #define MCUX_DCNANO_LCDIF_FB_SIZE(n) DT_INST_PROP(n, width) * \ 274 mcux_dcnano_lcdif_frame_buffer_##n[DT_INST_PROP(n, width) * \ 306 .panelWidth = DT_INST_PROP(n, width), \
|
D | ssd1306.c | 51 uint16_t width; member 271 (x + desc->width - 1) + x_off, in ssd1306_write_default() 309 if (ssd1306_write_bus(dev, buf_ptr, desc->width, false)) { in ssd1306_write_sh1106() 313 buf_ptr = buf_ptr + desc->width; in ssd1306_write_sh1106() 329 if (desc->pitch < desc->width) { in ssd1306_write() 334 buf_len = MIN(desc->buf_size, desc->height * desc->width / 8); in ssd1306_write() 340 if (desc->pitch > desc->width) { in ssd1306_write() 351 desc->width, desc->height, buf_len); in ssd1306_write() 376 caps->x_resolution = config->width; in ssd1306_get_capabilities() 554 .width = DT_PROP(node_id, width), \
|
D | display_nt35510.c | 57 uint16_t width; member 276 capabilities->x_resolution = cfg->width; in nt35510_get_capabilities() 343 data->xres = cfg->width; in nt35510_init() 348 data->yres = cfg->width; in nt35510_init() 351 data->xres = cfg->width; in nt35510_init() 356 data->yres = cfg->width; in nt35510_init() 427 .width = DT_INST_PROP(n, width), \
|
/Zephyr-latest/samples/subsys/testsuite/pytest/shell/ |
D | README.rst | 56 DEBUG: #: Read memory at address with optional width: 57 DEBUG: #: devmem address [width] 58 DEBUG: #: Write memory at address with mandatory width and value: 59 DEBUG: #: devmem address <width> <value> 65 DEBUG: #: readout fails. It must be executed after each terminal width change
|
/Zephyr-latest/boards/shields/rk043fn66hs_ctg/ |
D | rk043fn66hs_ctg.overlay | 33 width = <480>; 50 data-bus-width = "16-bit";
|
/Zephyr-latest/tests/subsys/display/cfb/basic/src/ |
D | invert.c | 19 static const uint32_t display_width = DT_PROP(DT_CHOSEN(zephyr_display), width); 30 .width = display_width, in cfb_test_before()
|
/Zephyr-latest/tests/drivers/i2c/i2c_target_api/boards/ |
D | nucleo_h563zi.overlay | 23 address-width = <16>; 35 address-width = <16>;
|
D | frdm_mcxn236.overlay | 42 address-width = <16>; 51 address-width = <16>;
|
/Zephyr-latest/dts/arm/nuvoton/npcm/ |
D | npcm4.dtsi | 17 reg-io-width = <1>; 23 reg-io-width = <2>;
|
/Zephyr-latest/doc/_extensions/zephyr/domain/static/css/ |
D | codesample-livesearch.css | 8 width: 100%; 16 width: 100%;
|
/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/boards/shields/st_b_lcd40_dsi1_mb1166/ |
D | st_b_lcd40_dsi1_mb1166.overlay | 28 width = <480>; 39 width = <800>;
|
D | st_b_lcd40_dsi1_mb1166_a09.overlay | 28 width = <480>; 39 width = <800>;
|
/Zephyr-latest/boards/shields/rtkmipilcdb00000be/ |
D | rtkmipilcdb00000be.overlay | 37 width = <480>; 45 width = <480>;
|
/Zephyr-latest/boards/amd/kv260_r5/ |
D | kv260_r5.dts | 60 address-width = <16>; 70 address-width = <16>;
|
/Zephyr-latest/boards/phytec/reel_board/ |
D | reel_board.dts | 62 width = <250>; 72 gate-line-width = <0x08>; 87 gate-line-width = <0x08>;
|
/Zephyr-latest/samples/drivers/video/capture_to_lvgl/src/ |
D | main.c | 77 fmt.width = CONFIG_VIDEO_WIDTH; in main() 79 fmt.pitch = fmt.width * 2; in main() 88 (char)(fmt.pixelformat >> 16), (char)(fmt.pixelformat >> 24), fmt.width, fmt.height, in main()
|
/Zephyr-latest/tests/drivers/build_all/eeprom/ |
D | app.overlay | 42 address-width = <16>; 53 address-width = <16>; 90 address-width = <16>;
|