Searched defs:memmove (Results 1 - 22 of 22) 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/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cc387 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.c2834 1. gcc may emit calls to memcpy, memmove and memset to deal with
2849 void* memmove(void *dest, const void *src, SizeT n);
2850 void* memmove(void *dest, const void *src, SizeT n) { function
2851 return VG_(memmove)(dest,src,n);
/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/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
1712 memmove(buffer, &buffer[offset], bufferEnd - bufferPtr + keep);
1717 memmove(buffer, bufferPtr, bufferEnd - bufferPtr);
/external/libvncserver/common/
H A Dminilzo.c3148 # undef memmove macro
3149 # define memmove(a,b,c) lzo_memmove(a,b,c) macro
3152 # define lzo_memmove(a,b,c) memmove(a,b,c)
4080 return memmove(dest, src, len);
/external/mksh/src/
H A Dsh.h422 /* we assume either memmove or bcopy exist, at the moment */
423 #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
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 2112 milliseconds