Searched refs:memmove (Results 1 - 25 of 584) 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/swiftshader/third_party/llvm-subzero/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/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/compiler/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/swiftshader/third_party/subzero/crosstest/
H A Dmem_intrin.cpp2 * Simple sanity test of memcpy, memmove, and memset intrinsics.
60 memmove((void *)overlap_buf, (void *)buf, reduced_length);
63 memmove((void *)buf2, (void *)buf, length);
89 memmove((void *)(buf + 16), (void *)buf, NBYTES); \
91 memmove((void *)buf2, (void *)(buf2 + 16), NBYTES); \
/external/syslinux/gpxe/src/net/
H A Diobpad.c61 memmove ( iobuf->data, data, len );
/external/tensorflow/tensorflow/core/kernels/
H A Ddense_update_functor.cc39 memmove(const_cast<char*>(params.data()->data()) + start,
50 memmove(const_cast<char*>(params.data()[i].data()),
/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));

Completed in 659 milliseconds

1234567891011>>