Searched defs:memmove (Results 1 - 18 of 18) sorted by relevance

/external/llvm/lib/Support/
H A Dregutils.h53 /* for old systems with bcopy() but no memmove() */
55 #define memmove(d, s, c) bcopy(s, d, c) macro
/external/libvpx/libvpx/vpx_mem/
H A Dvpx_mem.h114 # define memmove vpx_memmove macro
161 # define vpx_memmove memmove
/external/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cc377 INTERCEPT_LIBRARY_FUNCTION(memmove); variable
/external/valgrind/drd/tests/
H A Dunit_bitmap.c51 void* VG_(memmove)(void *d, const void *s, SizeT sz) function
52 { return memmove(d, s, sz); }
/external/clang/test/Analysis/
H A Dbstring.c312 // memmove()
320 #define memmove(a,b,c) __memmove_chk(a,b,c,(size_t)-1) macro
324 #define memmove BUILTIN(memmove) macro
325 void *memmove(void *s1, const void *s2, size_t n);
334 memmove(dst, src, 4); // no-warning
336 clang_analyzer_eval(memmove(dst, src, 4) == dst); // expected-warning{{TRUE}}
347 memmove(dst, src, 5); // expected-warning{{out-of-bound}}
354 memmove(dst, src, 4); // expected-warning{{overflow}}
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h506 #define os_memmove(d, s, n) memmove((d), (s), (n))
632 #define memmove OS_DO_NOT_USE_memmove macro
/external/wpa_supplicant_8/src/utils/
H A Dos.h506 #define os_memmove(d, s, n) memmove((d), (s), (n))
632 #define memmove OS_DO_NOT_USE_memmove macro
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h506 #define os_memmove(d, s, n) memmove((d), (s), (n))
632 #define memmove OS_DO_NOT_USE_memmove macro
/external/valgrind/coregrind/
H A Dm_libcbase.c677 void* VG_(memmove)(void *dest, const void *src, SizeT sz) function
H A Dm_main.c2798 1. gcc may emit calls to memcpy, memmove and memset to deal with
2813 void* memmove(void *dest, const void *src, SizeT n);
2814 void* memmove(void *dest, const void *src, SizeT n) { function
2815 return VG_(memmove)(dest,src,n);
/external/openssh/
H A Ddefines.h620 # define memmove(s1, s2, n) bcopy((s2), (s1), (n)) macro
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/libvncserver/common/
H A Dminilzo.c2026 # undef memmove macro
2027 # define memmove(a,b,c) lzo_memmove(a,b,c) macro
2030 # define lzo_memmove(a,b,c) memmove(a,b,c)
2468 return memmove(dest, src, len);
/external/valgrind/coregrind/m_debuginfo/
H A Dminilzo-inl.c2031 # undef memmove macro
2032 # define memmove(a,b,c) lzo_memmove(a,b,c) macro
2035 # define lzo_memmove(a,b,c) memmove(a,b,c)
2518 return memmove(dest, src, len);
/external/expat/lib/
H A Dxmlparse.c78 /* Handle the case where memmove() doesn't exist. */
81 #define memmove(d,s,l) bcopy((s),(d),(l)) macro
83 #error memmove does not exist on this platform, nor is a substitute available
1705 memmove(buffer, &buffer[offset], bufferEnd - bufferPtr + keep);
1710 memmove(buffer, bufferPtr, bufferEnd - bufferPtr);
/external/mksh/src/
H A Dsh.h383 /* we assume either memmove or bcopy exist, at the moment */
384 #define memmove(dst, src, len) bcopy((src), (dst), (len)) macro
/external/pcre/dist/
H A Dpcre_internal.h373 #define memmove(d,s,n) _memmove(d,s,n) macro
377 /* To cope with SunOS4 and other systems that lack memmove() but have bcopy(),
378 define a macro for memmove() if HAVE_MEMMOVE is false, provided that HAVE_BCOPY
383 #undef memmove /* some systems may have a macro */ macro
385 #define memmove(a, b, c) bcopy(b, a, c) macro
406 #define memmove(a, b, c) pcre_memmove(a, b, c) macro

Completed in 623 milliseconds