Home
last modified time | relevance | path

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

/Zephyr-Core-3.5.0/lib/libc/minimal/source/string/
Dstring.c283 unsigned char *d_byte = (unsigned char *)d; in memcpy() local
293 while (((uintptr_t)d_byte) & mask) { in memcpy()
297 *(d_byte++) = *(s_byte++); in memcpy()
303 mem_word_t *d_word = (mem_word_t *)d_byte; in memcpy()
311 d_byte = (unsigned char *)d_word; in memcpy()
319 *(d_byte++) = *(s_byte++); in memcpy()
337 unsigned char *d_byte = (unsigned char *)buf; in memset() local
341 while (((uintptr_t)d_byte) & (sizeof(mem_word_t) - 1)) { in memset()
345 *(d_byte++) = c_byte; in memset()
351 mem_word_t *d_word = (mem_word_t *)d_byte; in memset()
[all …]
/Zephyr-Core-3.5.0/tests/application_development/code_relocation/src/
Dmain.c48 unsigned char *d_byte = (unsigned char *)dst; in z_early_memcpy() local
53 *(d_byte++) = *(s_byte++); in z_early_memcpy()
65 unsigned char *d_byte = (unsigned char *)dst; in z_early_memset() local
69 *(d_byte++) = c_byte; in z_early_memset()