Home
last modified time | relevance | path

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

/bionic/libc/arch-mips/string/
Dmemmove.c386 memmove (void *dst0, const void *src0, size_t length) __overloadable in memmove() argument
389 void *ret = dst0; in memmove()
391 if (length == 0 || dst0 == src0) /* nothing to do */ in memmove()
392 return dst0; in memmove()
394 if ((unsigned long)dst0 < (unsigned long)src0) { in memmove()
398 return do_bytes (dst0, src0, length, ret); in memmove()
409 do_bytes (dst0, src0, bytes, ret); in memmove()
413 dst0 = (void *) (((unsigned char *) dst0) + bytes); in memmove()
422 return aligned_words_forward (dst0, src0, words, bytes, ret); in memmove()
424 if (((unsigned long) dst0) % sizeof (reg_t) == 0) { in memmove()
[all …]
/bionic/libc/upstream-openbsd/lib/libc/string/
Dmemmove.c49 memmove(void *dst0, const void *src0, size_t length) __overloadable in memmove() argument
51 char *dst = dst0; in memmove()
111 return (dst0); in memmove()