Home
last modified time | relevance | path

Searched refs:width (Results 101 – 125 of 421) sorted by relevance

12345678910>>...17

/Zephyr-latest/drivers/display/
Ddisplay_st7567.c39 uint16_t width; member
237 if (desc->pitch < desc->width) { in st7567_write()
242 buf_len = MIN(desc->buf_size, desc->height * desc->width / 8); in st7567_write()
248 if (desc->pitch > desc->width) { in st7567_write()
259 desc->width, desc->height, buf_len); in st7567_write()
279 caps->x_resolution = config->width; in st7567_get_capabilities()
351 for (int x = 0; x < config->width; x++) { in st7567_clear()
477 .width = DT_PROP(node_id, width), \
Ddisplay_mcux_elcdif.c86 LOG_DBG("W=%d, H=%d, @%d,%d", desc->width, desc->height, x, y); in mcux_elcdif_write()
88 if ((x == 0) && (y == 0) && (desc->width == config->rgb_mode.panelWidth) && in mcux_elcdif_write()
89 (desc->height == config->rgb_mode.panelHeight) && (desc->pitch == desc->width)) { in mcux_elcdif_write()
94 } else if ((x == 0) && (y == 0) && (desc->width == config->rgb_mode.panelHeight) && in mcux_elcdif_write()
95 (desc->height == config->rgb_mode.panelWidth) && (desc->pitch == desc->width) && in mcux_elcdif_write()
124 memcpy(dst, src, dev_data->pixel_bytes * desc->width); in mcux_elcdif_write()
186 pxp_dma.source_data_size = desc->width * dev_data->pixel_bytes; in mcux_elcdif_write()
374 .panelWidth = DT_INST_PROP(id, width), \
Dls0xx.c29 #define LS0XX_PANEL_WIDTH DT_INST_PROP(0, width)
175 LOG_DBG("X: %d, Y: %d, W: %d, H: %d", x, y, desc->width, desc->height); in ls0xx_write()
182 if (desc->width != LS0XX_PANEL_WIDTH) { in ls0xx_write()
187 if (desc->pitch != desc->width) { in ls0xx_write()
Ddisplay_max7219.c155 __ASSERT(desc->width <= desc->pitch, "Pitch is smaller than width"); in max7219_write()
163 if (desc->width > desc->pitch || (desc->pitch * desc->height) > (desc->buf_size * 8U)) { in max7219_write()
171 const uint16_t end_x = x + desc->width; in max7219_write()
174 const uint16_t to_skip = desc->pitch - desc->width; in max7219_write()
313 .width = MAX7219_DIGITS_PER_DEVICE, in max7219_init()
/Zephyr-latest/dts/arm/nuvoton/npcm/
Dnpcm.dtsi29 reg-io-width = <1>;
35 reg-io-width = <2>;
/Zephyr-latest/tests/drivers/i2c/i2c_target_api/boards/
Dnrf54l15dk_nrf54l15_cpuapp.overlay56 address-width = <8>;
71 address-width = <8>;
Dnrf54h20dk_nrf54h20_cpuapp.overlay58 address-width = <8>;
75 address-width = <8>;
/Zephyr-latest/drivers/spi/
Dspi_litex_litespi.c124 static void spiflash_len_mask_width_write(uint32_t len, uint32_t width, uint32_t mask, in spiflash_len_mask_width_write() argument
130 tmp = width & BIT_MASK(8); in spiflash_len_mask_width_write()
147 uint8_t width = BIT(0); /* SPI Xfer width*/ in spi_litex_xfer() local
150 spiflash_len_mask_width_write(len * 8, width, mask, dev_config->core_master_phyconfig_addr); in spi_litex_xfer()
164 spiflash_len_mask_width_write(len * 8, width, mask, in spi_litex_xfer()
/Zephyr-latest/tests/arch/x86/info/
Dapp.overlay9 width = <640>;
/Zephyr-latest/samples/modules/lvgl/demos/boards/
Dnative_sim.overlay10 width = <480>;
/Zephyr-latest/doc/services/zbus/images/
Dzbus_operations.svg1 <svg width="716" height="323" viewBox="0 0 716 323" fill="none" xmlns="http://www.w3.org/2000/svg" …
2 <rect x="101" y="272" width="112" height="48" rx="5" fill="#22495B"/>
3 <rect x="111" y="282" width="32" height="32" fill="url(#pattern0)" fill-opacity="0.6"/>
5 <rect x="354.5" y="273.5" width="112" height="49" rx="4.5" fill="#FF7A00"/>
6 <rect x="354.5" y="273.5" width="112" height="49" rx="4.5" stroke="#F27400"/>
9 <rect y="96" width="716" height="128" rx="5" fill="#6931D0"/>
11 <rect x="130" y="128" width="100" height="64" rx="5" fill="#3A8BF1"/>
13 <rect x="238" y="128" width="138" height="64" rx="5" fill="#3A8BF1"/>
15 <rect x="384" y="128" width="103" height="64" rx="5" fill="#3A8BF1"/>
17 <rect x="495" y="128" width="197" height="64" rx="5" fill="#3A8BF1"/>
[all …]
/Zephyr-latest/tests/lib/gui/lvgl/
Dapp.overlay15 width = <320>;
/Zephyr-latest/samples/drivers/display/
Ddummy_dc.overlay15 width = <320>;
/Zephyr-latest/doc/_doxygen/
Ddoxygen-awesome.css75 …/* The content is centered and constraint in it's width. To make the content fill the whole page, …
79 --toc-width: 200px;
129 * (`searchbar-width` is only applied on screens >= 768px.
130 * on smaller screens the searchbar will always fill the entire screen width) */
132 --searchbar-width: 210px;
176 @media screen and (max-width: 767px) {
354 @media screen and (min-width: 768px) {
369 width: auto;
376 @media screen and (max-width: 767px) {
424 @media screen and (max-width: 767px) {
[all …]
/Zephyr-latest/lib/os/
Dcbprintf_complete.c399 size_t width = extract_decimal(&sp); in extract_width() local
403 conv->width_value = width; in extract_width()
405 || (width != (size_t)conv->width_value)); in extract_width()
1428 int width = -1; in z_cbvprintf_impl() local
1450 width = va_arg(ap, int); in z_cbvprintf_impl()
1452 if (width < 0) { in z_cbvprintf_impl()
1454 width = -width; in z_cbvprintf_impl()
1457 width = conv->width_value; in z_cbvprintf_impl()
1782 if (width > 0) { in z_cbvprintf_impl()
1783 width -= (int)nj_len; in z_cbvprintf_impl()
[all …]
/Zephyr-latest/tests/drivers/eeprom/api/
Dat2x_emul.overlay17 address-width = <8>;
/Zephyr-latest/samples/subsys/input/draw_touch_events/
DKconfig5 int "Screen width to cross horizontal/vertical dimension ratio"
/Zephyr-latest/drivers/video/
Dov7725.c425 uint16_t width, height; in ov7725_set_fmt() local
431 fmt->width != 640) { in ov7725_set_fmt()
435 width = fmt->width; in ov7725_set_fmt()
490 hsize = width + 16U; in ov7725_set_fmt()
497 ov7725_write_reg(&cfg->i2c, OV7725_HOUTSIZE, width >> 2U); in ov7725_set_fmt()
506 ((width & 3U) << 0U)); in ov7725_set_fmt()
597 fmt.width = 640; in ov7725_init()
/Zephyr-latest/boards/shields/adafruit_neopixel_grid_bff/
Dadafruit_neopixel_grid_bff_display.overlay12 width = <5>;
/Zephyr-latest/tests/subsys/display/cfb/basic/src/
Dinvert_area.c19 static const uint32_t display_width = DT_PROP(DT_CHOSEN(zephyr_display), width);
30 .width = display_width, in cfb_test_before()
/Zephyr-latest/samples/drivers/video/capture/src/
Dcheck_test_pattern.h118 int bw = fmt.width / BARS_NUM; in is_colorbar_ok()
125 (uint32_t *)&buf[4 * (h * fmt.width + bw / 2 + i * bw)]; in is_colorbar_ok()
132 (uint16_t *)&buf[2 * (h * fmt.width + bw / 2 + i * bw)]; in is_colorbar_ok()
/Zephyr-latest/drivers/dma/
DKconfig.dw_axi_dmac42 int "data bus width"
45 update this flag to change the axi master interface data width
/Zephyr-latest/tests/drivers/eeprom/api/boards/
Dmr_canhubk3.overlay22 address-width = <8>;
/Zephyr-latest/soc/litex/litex_vexriscv/
DKconfig17 int "Select Control/Status register width"
/Zephyr-latest/boards/shields/ssd1306/
Dssd1306_128x64.overlay19 width = <128>;

12345678910>>...17