Home
last modified time | relevance | path

Searched refs:buf8 (Results 1 – 4 of 4) sorted by relevance

/Zephyr-Core-3.6.0/drivers/display/
Ddisplay_sdl.c283 uint8_t *buf8; in sdl_display_read_rgb888() local
289 buf8 = ((uint8_t *)buf) + desc->pitch * 3U * h_idx; in sdl_display_read_rgb888()
293 *buf8 = (*pix_ptr & 0xFF0000) >> 16; in sdl_display_read_rgb888()
294 buf8 += 1; in sdl_display_read_rgb888()
295 *buf8 = (*pix_ptr & 0xFF00) >> 8; in sdl_display_read_rgb888()
296 buf8 += 1; in sdl_display_read_rgb888()
297 *buf8 = (*pix_ptr & 0xFF); in sdl_display_read_rgb888()
298 buf8 += 1; in sdl_display_read_rgb888()
362 uint8_t *buf8; in sdl_display_read_mono() local
368 buf8 = (void *)(((uint8_t *)buf) + desc->pitch * tile_idx); in sdl_display_read_mono()
[all …]
/Zephyr-Core-3.6.0/tests/lib/ringbuffer/src/
Dconcurrent.c261 uint8_t buf8[32]; in test_ztress() member
270 ring_buf_init(&ringbuf, ARRAY_SIZE(buf.buf8), buf.buf8); in test_ztress()
/Zephyr-Core-3.6.0/tests/lib/c_lib/common/src/
Dmain.c697 static const char buf8[] = "++1037aegi"; in ZTEST() local
722 ret = strtol(buf8, NULL, 10); in ZTEST()
786 static const char buf8[] = "++1037aegi"; in ZTEST() local
811 ret = strtoul(buf8, NULL, 10); in ZTEST()
870 static const char buf8[] = "++1037aegi"; in test_strtoll() local
895 ret = strtoll(buf8, NULL, 10); in test_strtoll()
950 static const char buf8[] = "++1037aegi"; in test_strtoull() local
975 ret = strtoull(buf8, NULL, 10); in test_strtoull()
/Zephyr-Core-3.6.0/tests/drivers/display/display_read_write/src/
Dmain.c73 uint8_t *buf8 = disp_buffer; in verify_background_color() local
98 zassert_equal(buf8[i], (uint8_t)color, "@%d", i); in verify_background_color()