Home
last modified time | relevance | path

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

/Zephyr-latest/lib/libc/minimal/source/string/
Dstring.c284 const unsigned char *s_byte = (const unsigned char *)s; in memcpy() local
289 if ((((uintptr_t)d ^ (uintptr_t)s_byte) & mask) == 0) { in memcpy()
297 *(d_byte++) = *(s_byte++); in memcpy()
304 const mem_word_t *s_word = (const mem_word_t *)s_byte; in memcpy()
312 s_byte = (unsigned char *)s_word; in memcpy()
319 *(d_byte++) = *(s_byte++); in memcpy()
/Zephyr-latest/tests/application_development/code_relocation/src/
Dmain.c49 const unsigned char *s_byte = (const unsigned char *)src; in z_early_memcpy() local
53 *(d_byte++) = *(s_byte++); in z_early_memcpy()