Home
last modified time | relevance | path

Searched refs:memmove (Results 1 – 25 of 90) sorted by relevance

1234

/bionic/libc/arch-arm/bionic/
D__aeabi.c88 memmove(dest, src, n); in __aeabi_memmove8_impl()
92 memmove(dest, src, n); in __aeabi_memmove4_impl()
96 memmove(dest, src, n); in __aeabi_memmove_impl()
100 memmove(dest, src, n); in __aeabi_memmove8_impl2()
104 memmove(dest, src, n); in __aeabi_memmove4_impl2()
108 memmove(dest, src, n); in __aeabi_memmove_impl2()
/bionic/libc/arch-arm64/generic/bionic/
Dmemmove.S90 ENTRY(memmove)
152 END(memmove)
154 ALIAS_SYMBOL(memcpy, memmove)
/bionic/libc/stdio/
Dfmemopen.cpp54 memmove(buf, ck->buf + ck->offset, n); in fmemopen_read()
81 memmove(ck->buf + ck->offset, buf, n); in fmemopen_write()
/bionic/libc/upstream-freebsd/lib/libc/string/
Dwmemmove.c45 return (wchar_t *)memmove(d, s, n * sizeof(wchar_t)); in wmemmove()
/bionic/libc/upstream-netbsd/lib/libc/regex/
Dutils.h90 #define memmove(d, s, c) bcopy(s, d, c) macro
/bionic/libc/arch-arm/
Dstatic_function_dispatch.S36 FUNCTION_DELEGATE(memmove, memmove_generic)
Ddynamic_function_dispatch.cpp146 DEFINE_IFUNC_FOR(memmove) { in DEFINE_IFUNC_FOR() argument
/bionic/libc/arch-x86/
Dstatic_function_dispatch.S40 FUNCTION_DELEGATE(memmove, memmove_generic)
Ddynamic_function_dispatch.cpp58 DEFINE_IFUNC_FOR(memmove) { in DEFINE_IFUNC_FOR() argument
/bionic/benchmarks/
Dstring_benchmark.cpp72 memmove(dst_aligned, src_aligned, nbytes); in BM_string_memmove_non_overlapping()
87 memmove(buf_aligned, buf_aligned + 1, nbytes); // Worst-case overlap. in BM_string_memmove_overlap_dst_before_src()
102 memmove(buf_aligned + 1, buf_aligned, nbytes); // Worst-case overlap. in BM_string_memmove_overlap_src_before_dst()
/bionic/tests/headers/posix/
Dstring_h.c42 FUNCTION(memmove, void* (*f)(void*, const void*, size_t)); in string_h()
/bionic/benchmarks/linker_relocation/gen/
Dliblinker_reloc_bench_147.S66 CALL(memmove)
Dliblinker_reloc_bench_105.S102 CALL(memmove)
Dliblinker_reloc_bench_065.S222 CALL(memmove)
Dliblinker_reloc_bench_031.S384 CALL(memmove)
Dliblinker_reloc_bench_140.S535 CALL(memmove)
/bionic/libc/bionic/
Dfts.c190 memmove(sp->fts_path, p->fts_name, len + 1); in fts_load()
193 memmove(p->fts_name, cp, len + 1); in fts_load()
384 memmove(t, p->fts_name, p->fts_namelen + 1); in fts_read()
713 memmove(cp, p->fts_name, p->fts_namelen + 1); // NOLINT in fts_build()
Dndk_cruft.cpp250 memmove(dst, src, n); in bcopy()
Dfortify.cpp137 return memmove(dst, src, len); in __memmove_chk()
/bionic/tests/
Dclang_fortify_tests.cpp176 EXPECT_FORTIFY_DEATH(memmove(small_buffer, large_buffer, sizeof(large_buffer))); in FORTIFY_TEST()
221 EXPECT_NO_DEATH(memmove(split.tiny_buffer, &split, sizeof(split))); in FORTIFY_TEST()
Dstring_test.cpp910 TEST(STRING_TEST, memmove) { in TEST() argument
923 ASSERT_TRUE(memmove(state.ptr2 + pos, state.ptr2, state.len[i]) == state.ptr2 + pos); in TEST()
950 ASSERT_TRUE(memmove(ptr2 + pos, ptr, len) == ptr2 + pos); in TEST()
961 ASSERT_EQ(dst, memmove(dst, src, size)); in verify_memmove()
1063 ASSERT_EQ(dst, memmove(dst, src, len)); in DoMemmoveTest()
/bionic/libc/include/
Dstring.h57 void* memmove(void* __dst, const void* __src, size_t __n);
/bionic/libc/include/bits/fortify/
Dstring.h53 void* memmove(void* const dst __pass_object_size0, const void* src, size_t len) __overloadable { in memmove() function
/bionic/libc/
DAndroid.bp804 "arch-arm/generic/bionic/memmove.S",
825 "arch-arm/cortex-a15/bionic/memmove.S",
856 "arch-arm64/generic/bionic/memmove.S",
899 "arch-x86/silvermont/string/sse2-memmove-slm.S",
934 "arch-x86/atom/string/ssse3-memmove-atom.S",
951 "arch-x86_64/string/sse2-memmove-slm.S",
/bionic/libc/arch-x86_64/string/
Dsse2-memmove-slm.S34 # define MEMMOVE memmove

1234