Home
last modified time | relevance | path

Searched refs:byte_ptr (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/subsys/llext/
Dllext_handlers.c34 char *byte_ptr = buf; in z_impl_llext_get_fn_table() local
42 memcpy(byte_ptr, in z_impl_llext_get_fn_table()
44 memcpy(byte_ptr + ext->mem_size[LLEXT_MEM_PREINIT], in z_impl_llext_get_fn_table()
48 memcpy(byte_ptr, in z_impl_llext_get_fn_table()
/Zephyr-latest/drivers/display/
Ddisplay_sdl.c114 const uint8_t *byte_ptr; in sdl_display_write_rgb888() local
121 byte_ptr = (const uint8_t *)buf + in sdl_display_write_rgb888()
123 pixel = *byte_ptr << 16; in sdl_display_write_rgb888()
124 pixel |= *(byte_ptr + 1) << 8; in sdl_display_write_rgb888()
125 pixel |= *(byte_ptr + 2); in sdl_display_write_rgb888()
190 const uint8_t *byte_ptr; in sdl_display_write_mono() local
207 byte_ptr = (const uint8_t *)buf + in sdl_display_write_mono()
211 if ((*byte_ptr & mono_pixel_order(h_idx)) != 0U) { in sdl_display_write_mono()