Searched refs:memmove (Results 1 - 25 of 469) sorted by relevance

1234567891011>>

/external/clang/test/Analysis/
H A Dredefined_system.c6 char memmove ();
16 return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
/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/compiler-rt/lib/builtins/arm/
H A Daeabi_memmove.S1 //===-- aeabi_memmove.S - EABI memmove implementation --------------------===//
12 // void __aeabi_memmove(void *dest, void *src, size_t n) { memmove(dest, src, n); }
16 b memmove
/external/clang/test/CodeGenCXX/
H A Dbuiltins.cpp4 extern "C" char memmove();
7 // CHECK: call {{signext i8|i8}} @memmove()
8 return memmove();
/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/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/elfutils/libelf/
H A Dchdr_xlate.h14 memmove (dest, src, len);
29 memmove (dest, src, len);
/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/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/webrtc/webrtc/modules/rtp_rtcp/source/
H A Ddtmf_queue.cc51 memmove(&(dtmf_key_[0]), &(dtmf_key_[1]),
53 memmove(&(dtmf_length[0]), &(dtmf_length[1]),
55 memmove(&(dtmf_level_[0]), &(dtmf_level_[1]),
/external/webrtc/webrtc/voice_engine/
H A Ddtmf_inband_queue.cc63 memmove(&(_DtmfKey[0]), &(_DtmfKey[1]),
65 memmove(&(_DtmfLen[0]), &(_DtmfLen[1]),
67 memmove(&(_DtmfLevel[0]), &(_DtmfLevel[1]),
/external/clang/lib/Sema/
H A DTypeLocBuilder.cpp100 memmove(&Buffer[Index - 4], &Buffer[Index], NumBytesAtAlign4);
111 memmove(&Buffer[Index + 4], &Buffer[Index], NumBytesAtAlign4);
122 memmove(&Buffer[Index - 4], &Buffer[Index], NumBytesAtAlign4);
134 memmove(&Buffer[Index - 4], &Buffer[Index], NumBytesAtAlign4);
145 memmove(&Buffer[Index + 4], &Buffer[Index], NumBytesAtAlign4);
/external/compiler-rt/test/asan/TestCases/
H A Dmemset_test.cc1 // Test that large memset/memcpy/memmove check the entire range.
55 // On Mac, memmove and memcpy are the same. Accept either one.
56 // CHECK-MEMCPY: in {{.*(memmove|memcpy)}}
58 memmove(q, p, 3000);
60 // CHECK-MEMMOVE: in {{.*(memmove|memcpy)}}
/external/compiler-rt/test/tsan/
H A Dinlined_memcpy_race2.cc8 memmove((int*)a, z, 16);
22 // Race on y between memmove and memset
36 // CHECK: #0 {{(memcpy|memmove)}}
/external/mesa3d/src/glsl/
H A Dtest.cpp63 memmove(&argv[1], &argv[2], (*argc) * sizeof(argv[1]));
/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/syslinux/gpxe/src/net/
H A Diobpad.c61 memmove ( iobuf->data, data, len );
/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/clang/test/SemaCXX/
H A Dwarn-bad-memaccess.cpp4 extern "C" void *memmove(void *s1, const void *s2, unsigned n);
44 memmove(&x1, 0, sizeof x1); // \
45 // expected-warning{{destination for this 'memmove' call is a pointer to dynamic class 'X1'; vtable pointer will be overwritten}} \
47 memmove(0, &x1, sizeof x1); // \
48 // expected-warning{{source of this 'memmove' call is a pointer to dynamic class 'X1'; vtable pointer will be moved}} \
/external/fec/
H A Dencode_rs.c46 memmove(&bb[0],&bb[1],sizeof(data_t)*(NROOTS-1));
H A Dencode_rs.h21 * The memset() and memmove() functions are used. The appropriate header
52 memmove(&parity[0],&parity[1],sizeof(data_t)*(NROOTS-1));
/external/google-breakpad/src/common/linux/
H A Dlinux_libc_support.h85 #define my_memmove memmove

Completed in 559 milliseconds

1234567891011>>