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

1234567891011>>

/external/clang/test/CodeGenCXX/
H A Dbuiltins.cpp4 extern "C" char memmove();
7 // CHECK: call signext i8 @memmove()
8 return memmove();
/external/clang/test/Analysis/
H A Dredefined_system.c5 char memmove ();
15 return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
H A Dbstring.c273 // memmove()
281 #define memmove(a,b,c) __memmove_chk(a,b,c,(size_t)-1) macro
285 #define memmove BUILTIN(memmove) macro
286 void *memmove(void *s1, const void *s2, size_t n);
295 memmove(dst, src, 4); // no-warning
297 clang_analyzer_eval(memmove(dst, src, 4) == dst); // expected-warning{{TRUE}}
308 memmove(dst, src, 5); // expected-warning{{out-of-bound}}
315 memmove(dst, src, 4); // expected-warning{{overflow}}
/external/expat/vms/
H A Dexpat_config.h28 /* Define if you have the memmove function. */
47 #define memmove(d,s,l) bcopy((s),(d),(l)) macro
49 #define memmove(d,s,l) ;punting on memmove; macro
/external/compiler-rt/lib/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/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/clang/test/SemaCXX/
H A Dwarn-bad-memaccess.cpp4 extern "C" void *memmove(void *s1, const void *s2, unsigned n);
30 memmove(&x1, 0, sizeof x1); // \
31 // expected-warning{{destination for this 'memmove' call is a pointer to dynamic class 'struct X1'; vtable pointer will be overwritten}} \
33 memmove(0, &x1, sizeof x1); // \
34 // expected-warning{{source of this 'memmove' call is a pointer to dynamic class 'struct X1'; vtable pointer will be moved}} \
/external/kernel-headers/original/asm-mips/
H A Dvga.h43 #define scr_memmovew(d, s, c) memmove(d, s, c)
H A Dstring.h141 extern void *memmove(void *__dest, __const__ void *__src, size_t __n);
/external/srec/srec/clib/
H A Dmemmove.h2 * memmove.h *
24 #define MEMMOVE(S,D,N,Z) memmove(S,D,(N)*(Z))
34 ** A more efficient implementation of memmove
/external/valgrind/tsan/
H A Dts_valgrind_libc.cc37 // can't use VG_(memmove) since it is buggy.
38 extern "C" void * memmove(void *a, const void *b, unsigned long size) { function
/external/webkit/Source/WebCore/html/canvas/
H A DArrayBufferView.cpp56 memmove(base + byteOffset, array->baseAddress(), array->byteLength());
70 memmove(base + byteOffset, data, dataByteLength);
/external/kernel-headers/original/linux/
H A Dvt_buffer.h25 #define scr_memmovew(d, s, c) memmove(d, s, c)
/external/llvm/runtime/libprofile/
H A DCommonProfiling.c49 memmove((char**)&argv[1], &argv[2], (argc-1)*sizeof(char*));
57 memmove((char**)&argv[1], &argv[2], (argc-1)*sizeof(char*));
/external/tinyxml/
H A Dtinystr.cpp65 memmove(start(), str, len);
79 memmove(finish(), str, len);
/external/skia/include/core/
H A DSkPostConfig.h198 #ifndef memmove
199 #define memmove(dst, src, n) memmove(dst, src, n)
/external/jpeg/
H A Djmem-ashmem.c100 memmove(buffer_address, info->addr + file_offset, byte_count);
109 memmove(info->addr + file_offset, buffer_address, byte_count);
/external/qemu/distrib/jpeg-6b/
H A Djmem-ashmem.c99 memmove(buffer_address, info->addr + file_offset, byte_count);
108 memmove(info->addr + file_offset, buffer_address, byte_count);
/external/regex-re2/util/
H A Dsparse_set.h96 memmove(a, sparse_to_dense_, max_size_*sizeof a[0]);
107 memmove(a, dense_, size_*sizeof a[0]);
/external/astl/include/
H A Dchar_traits.h73 { return static_cast<char*>(std::memmove(lhs, rhs, n)); }
/external/chromium/base/
H A Dstring16.cc54 return reinterpret_cast<char16*>(memmove(s1, s2, n * sizeof(char16)));
/external/chromium/googleurl/base/
H A Dstring16.cc74 return reinterpret_cast<char16*>(memmove(s1, s2, n * sizeof(char16)));
/external/elfutils/libelf/
H A Delf32_xlatetof.c118 memmove (dest->d_buf, src->d_buf, src->d_size);
H A Delf32_xlatetom.c119 memmove (dest->d_buf, src->d_buf, src->d_size);
/external/freetype/include/freetype/config/
H A Dftstdlib.h82 #define ft_memmove memmove

Completed in 646 milliseconds

1234567891011>>