Home
last modified time | relevance | path

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

/Zephyr-latest/modules/lvgl/
Dlvgl_display_mono.c15 static ALWAYS_INLINE void set_px_at_pos(uint8_t *dst_buf, uint32_t x, uint32_t y, uint32_t width, in set_px_at_pos() argument
22 buf = dst_buf + x + y / 8 * width; in set_px_at_pos()
30 buf = dst_buf + x / 8 + y * width / 8; in set_px_at_pos()
/Zephyr-latest/drivers/crypto/
Dcrypto_stm32.c95 static int copy_words_adjust_endianness(uint8_t *dst_buf, int dst_len, const uint8_t *src_buf, in copy_words_adjust_endianness() argument
103 memcpy(dst_buf, src_buf, src_len); in copy_words_adjust_endianness()
107 sys_mem_swap(&dst_buf[i], sizeof(uint32_t)); in copy_words_adjust_endianness()