Home
last modified time | relevance | path

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

/Zephyr-latest/drivers/display/
Ddisplay_sdl.c288 uint8_t *buf8; in sdl_display_read_rgb888() local
294 buf8 = ((uint8_t *)buf) + desc->pitch * 3U * h_idx; in sdl_display_read_rgb888()
298 *buf8 = (*pix_ptr & 0xFF0000) >> 16; in sdl_display_read_rgb888()
299 buf8 += 1; in sdl_display_read_rgb888()
300 *buf8 = (*pix_ptr & 0xFF00) >> 8; in sdl_display_read_rgb888()
301 buf8 += 1; in sdl_display_read_rgb888()
302 *buf8 = (*pix_ptr & 0xFF); in sdl_display_read_rgb888()
303 buf8 += 1; in sdl_display_read_rgb888()
367 uint8_t *buf8; in sdl_display_read_mono() local
373 buf8 = (void *)(((uint8_t *)buf) + desc->pitch * tile_idx); in sdl_display_read_mono()
[all …]
/Zephyr-latest/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-latest/tests/lib/c_lib/common/src/
Dmain.c696 static const char buf8[] = "++1037aegi"; in ZTEST() local
721 ret = strtol(buf8, NULL, 10); in ZTEST()
783 static const char buf8[] = "++1037aegi"; in ZTEST() local
808 ret = strtoul(buf8, NULL, 10); in ZTEST()
865 static const char buf8[] = "++1037aegi"; in test_strtoll() local
890 ret = strtoll(buf8, NULL, 10); in test_strtoll()
945 static const char buf8[] = "++1037aegi"; in test_strtoull() local
970 ret = strtoull(buf8, NULL, 10); in test_strtoull()
/Zephyr-latest/tests/drivers/display/display_read_write/src/
Dmain.c77 uint8_t *buf8 = disp_buffer; in verify_background_color() local
102 zassert_equal(buf8[i], (uint8_t)color, "@%d", i); in verify_background_color()