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

12

/external/syslinux/com32/lib/
H A Dmemmove.S30 * memmove.S
32 * Reasonably efficient memmove, using aligned transfers at least
36 .globl memmove
37 .type memmove,@function
39 memmove: label
150 .size memmove, .-memmove
H A Dmemmove.c2 * memmove.c
7 void *memmove(void *dst, const void *src, size_t n) function
/external/syslinux/dos/
H A Dmemmove.S2 # memmove.S
4 # Simple 16-bit memmove() implementation
9 .globl memmove
10 .type memmove, @function
11 memmove: label
36 .size memmove,.-memmove
H A Dstring.h10 #define memmove(a,b,c) __builtin_memmove(a,b,c) macro
/external/syslinux/memdisk/
H A Dmemmove.S29 * memmove.S
31 * Reasonably efficient memmove, using aligned transfers at least
35 .globl memmove
36 .type memmove,@function
38 memmove: label
139 .size memmove, .-memmove
H A Dmemmove.c2 * memmove.c
7 void *memmove(void *dst, const void *src, size_t n) function
/external/swiftshader/third_party/LLVM/lib/Support/
H A Dregutils.h50 /* for old systems with bcopy() but no memmove() */
52 #define memmove(d, s, c) bcopy(s, d, c) macro
/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/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetLibraryInfo.h26 // void *memmove(void *s1, const void *s2, size_t n);
27 memmove, enumerator in enum:llvm::LibFunc::Func
/external/skia/src/core/
H A DSkArenaAlloc.cpp17 memmove(&skip, objEnd, sizeof(int32_t));
36 memmove(&next, objEnd, sizeof(char*));
75 memmove(fCursor, &encodedFooter, sizeof(Footer));
81 memmove(fCursor, &ptr, sizeof(char*));
87 memmove(fCursor, &value, sizeof(uint32_t));
69 SkASSERT(padding < 64); int64_t actionInt = (int64_t)(intptr_t)action; SkASSERT((actionInt << 6) >> 6 == actionInt); Footer encodedFooter = (actionInt << 6) | padding; memmove(fCursor, &encodedFooter, sizeof(Footer)); fCursor += sizeof(Footer); fDtorCursor = fCursor; } void SkArenaAlloc::installPtrFooter(FooterAction* action, char* ptr, uint32_t padding) { memmove(fCursor, &ptr, sizeof(char*)); fCursor += sizeof(char*); this->installFooter(action, padding); } void SkArenaAlloc::installUint32Footer(FooterAction* action, uint32_t value, uint32_t padding) { memmove(fCursor, &value, sizeof(uint32_t)); fCursor += sizeof(uint32_t); this->installFooter(action, padding); } void SkArenaAlloc::ensureSpace(uint32_t size, uint32_t alignment) { constexpr uint32_t headerSize = sizeof(Footer) + sizeof(ptrdiff_t); constexpr uint32_t alignof_max_align_t = 8; uint32_t objSizeAndOverhead = size + headerSize + sizeof(Footer); if (alignment > alignof_max_align_t) argument
/external/syslinux/gpxe/src/arch/x86/include/bits/
H A Dstring.h5 * All except memcpy, memmove, memset and memcmp removed.
159 static inline void * memmove(void * dest,const void * src, size_t n) function
/external/syslinux/gpxe/src/core/
H A Dstring.c244 * memmove - Copy one area of memory to another
249 * Unlike memcpy(), memmove() copes with overlapping areas.
251 void * memmove(void * dest,const void *src,size_t count) function
/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/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cc396 INTERCEPT_LIBRARY_FUNCTION(memmove); variable
/external/syslinux/lzo/src/
H A Dlzo_conf.h146 # undef memmove macro
147 # define memmove(a,b,c) lzo_memmove(a,b,c) macro
150 # define lzo_memmove(a,b,c) memmove(a,b,c)
/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/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 ...
/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.c86 /* Handle the case where memmove() doesn't exist. */
89 #define memmove(d,s,l) bcopy((s),(d),(l)) macro
91 #error memmove does not exist on this platform, nor is a substitute available
1750 memmove(buffer, &buffer[offset], bufferEnd - bufferPtr + keep);
1755 memmove(buffer, bufferPtr, bufferEnd - bufferPtr);

Completed in 5016 milliseconds

12