Searched refs:memmove (Results 1 - 25 of 262) 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/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/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}} \
H A Dwarn-memset-bad-sizeof.cpp4 extern "C" void *memmove(void *s1, const void *s2, unsigned n);
55 memmove(ps, 0, sizeof(ps)); // \
56 // expected-warning {{argument to 'sizeof' in 'memmove' call is the same expression as the destination}}
/external/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/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/clang/test/Analysis/
H A Dbstring.c274 // memmove()
282 #define memmove(a,b,c) __memmove_chk(a,b,c,(size_t)-1) macro
286 #define memmove BUILTIN(memmove) macro
287 void *memmove(void *s1, const void *s2, size_t n);
296 memmove(dst, src, 4); // no-warning
298 if (memmove(dst, src, 4) != dst) {
310 memmove(dst, src, 5); // expected-warning{{out-of-bound}}
317 memmove(dst, src, 4); // expected-warning{{overflow}}
/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)
H A Dstring.h89 extern void * memmove(void *,const void *,__kernel_size_t);
/external/llvm/runtime/libprofile/
H A DCommonProfiling.c49 memmove(&argv[1], &argv[2], (argc-1)*sizeof(char*));
57 memmove(&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.h179 #ifndef memmove
180 #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/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.c85 memmove (dest->d_buf, src->d_buf, src->d_size);
H A Delf32_xlatetom.c86 memmove (dest->d_buf, src->d_buf, src->d_size);
/external/expat/amiga/
H A Dstdlib.c99 void * memmove (void * t1, const void * t2, size_t len) function
/external/freetype/include/freetype/config/
H A Dftstdlib.h81 #define ft_memmove memmove
/external/skia/src/core/
H A DSkBitmap_scroll.cpp101 memmove(dst, src, width);
/external/clang/lib/Rewrite/
H A DDeltaTree.cpp210 memmove(&Values[i+1], &Values[i], sizeof(Values[0])*(e-i));
240 memmove(&IN->Children[i+2], &IN->Children[i+1],
246 memmove(&Values[i+1], &Values[i], (e-i)*sizeof(Values[0]));
280 memmove(&InsertSide->Children[i+2], &InsertSide->Children[i+1],
285 memmove(&InsertSide->Values[i+1], &InsertSide->Values[i],

Completed in 679 milliseconds

1234567891011