/external/clang/test/SemaObjC/ |
D | arc-non-pod-memaccess.m | 9 void *memmove(void *s1, const void *s2, __SIZE_TYPE__ n); function 40 …memmove(sip, ptr, 17); // expected-warning{{destination for this 'memmove' call is a pointer to ow… 42 …memmove(wip, ptr, 17); // expected-warning{{destination for this 'memmove' call is a pointer to ow… 44 …memmove(aip, ptr, 17); // expected-warning{{destination for this 'memmove' call is a pointer to ow… 46 memmove(uip, ptr, 17); 48 …memmove(ptr, sip, 17); // expected-warning{{source of this 'memmove' call is a pointer to ownershi… 50 …memmove(ptr, wip, 17); // expected-warning{{source of this 'memmove' call is a pointer to ownershi… 52 …memmove(ptr, aip, 17); // expected-warning{{source of this 'memmove' call is a pointer to ownershi… 54 memmove(ptr, uip, 17);
|
/external/llvm/test/Transforms/InstCombine/ |
D | memmove.ll | 1 ; This test makes sure that memmove instructions are properly eliminated. 3 ; RUN: opt < %s -instcombine -S | not grep "call void @llvm.memmove" 11 call void @llvm.memmove.p0i8.p0i8.i32(i8* %A, i8* %B, i32 0, i32 1, i1 false) 17 …call void @llvm.memmove.p0i8.p0i8.i32(i8* %A, i8* getelementptr inbounds ([33 x i8]* @S, i32 0, i3… 27 call void @llvm.memmove.p0i8.p0i8.i32(i8* %target_p, i8* %h_p, i32 2, i32 2, i1 false) 28 call void @llvm.memmove.p0i8.p0i8.i32(i8* %target_p, i8* %hel_p, i32 4, i32 4, i1 false) 29 call void @llvm.memmove.p0i8.p0i8.i32(i8* %target_p, i8* %hello_u_p, i32 8, i32 8, i1 false) 35 tail call void @llvm.memmove.p0i8.p0i8.i32(i8* %a, i8* %a, i32 100, i32 1, i1 false) 39 declare void @llvm.memmove.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind
|
D | malloc-free-delete.ll | 31 declare void @llvm.memmove.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind 43 call void @llvm.memmove.p0i8.p0i8.i32(i8* %a, i8* %src, i32 32, i32 1, i1 false) 71 ; CHECK-NEXT: call void @llvm.memmove 74 ; CHECK-NEXT: call void @llvm.memmove 86 call void @llvm.memmove.p0i8.p0i8.i32(i8* %ptr, i8* %b, i32 32, i32 1, i1 false) 89 call void @llvm.memmove.p0i8.p0i8.i32(i8* %e, i8* %ptr, i32 32, i32 1, i1 true)
|
D | call-intrinsics.ll | 6 declare void @llvm.memmove.i32(i8*, i8*, i32, i32) 14 call void @llvm.memmove.i32( i8* @X, i8* @Y, i32 0, i32 100 )
|
/external/clang/test/Analysis/ |
D | bstring.c | 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 in memmove0() 297 clang_analyzer_eval(memmove(dst, src, 4) == dst); // expected-warning{{TRUE}} in memmove0() 308 memmove(dst, src, 5); // expected-warning{{out-of-bound}} in memmove1() 315 memmove(dst, src, 4); // expected-warning{{overflow}} in memmove2()
|
D | redefined_system.c | 5 char memmove (); 15 return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi(); in foo()
|
/external/expat/vms/ |
D | expat_config.h | 47 #define memmove(d,s,l) bcopy((s),(d),(l)) macro 49 #define memmove(d,s,l) ;punting on memmove; macro
|
/external/llvm/test/Transforms/MemCpyOpt/ |
D | memmove.ll | 7 declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture, i8* nocapture, i64, i32, i1) nounwind 17 tail call void @llvm.memmove.p0i8.p0i8.i64(i8* %call3.sub, i8* %src, i64 13, i32 1, i1 false) 28 tail call void @llvm.memmove.p0i8.p0i8.i64(i8* %P, i8* %add.ptr, i64 16, i32 1, i1 false) 36 ; CHECK: call void @llvm.memmove 38 tail call void @llvm.memmove.p0i8.p0i8.i64(i8* %P, i8* %add.ptr, i64 17, i32 1, i1 false)
|
/external/llvm/test/Transforms/SimplifyLibCalls/ |
D | memmove.ll | 1 ; RUN: opt < %s -simplify-libcalls -S | grep "llvm.memmove" 7 %call = call i8* @memmove(i8* %a, i8* %b, i32 %x ) 11 declare i8* @memmove(i8*,i8*,i32)
|
/external/clang/test/CodeGenCXX/ |
D | builtins.cpp | 4 extern "C" char memmove(); 8 return memmove(); in main()
|
/external/clang/test/SemaCXX/ |
D | warn-bad-memaccess.cpp | 4 extern "C" void *memmove(void *s1, const void *s2, unsigned n); 30 memmove(&x1, 0, sizeof x1); // \ in test_warn() 33 memmove(0, &x1, sizeof x1); // \ in test_warn()
|
/external/stlport/stlport/using/ |
D | cstring | 6 # undef memmove 9 inline void* memmove(void* dst, const void* src, size_t len) 12 using _STLP_VENDOR_CSTD::memmove;
|
/external/llvm/test/Transforms/DeadStoreElimination/ |
D | memintrinsics.ll | 4 declare void @llvm.memmove.p0i8.p0i8.i8(i8* nocapture, i8* nocapture, i8, i32, i1) nounwind 26 store i8 0, i8* %A ;; Written to by memmove 29 call void @llvm.memmove.p0i8.p0i8.i8(i8* %A, i8* %B, i8 -1, i32 0, i1 false)
|
/external/llvm/test/Transforms/ScalarRepl/ |
D | 2008-09-22-vector-gep.ll | 2 ; used instead of a bitcast to prepare a memmove pointer argument. Previously, 21 call void @llvm.memmove.p0i8.p0i8.i32(i8* %tmpD, i8* %tmpS, i32 4, i32 1, i1 false) 25 declare void @llvm.memmove.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind
|
/external/llvm/test/CodeGen/XCore/ |
D | unaligned_store_combine.ll | 3 ; Unaligned load / store pair. Should be combined into a memmove 9 ; CHECK: bl memmove
|
/external/llvm/test/CodeGen/ARM/ |
D | memfunc.ll | 11 ; CHECK: memmove 13 …call void @llvm.memmove.p0i8.p0i8.i32(i8* bitcast ([500 x i32]* @from to i8*), i8* bitcast ([500 x… 30 declare void @llvm.memmove.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind
|
/external/clang/lib/Rewrite/Core/ |
D | DeltaTree.cpp | 210 memmove(&Values[i+1], &Values[i], sizeof(Values[0])*(e-i)); in DoInsertion() 240 memmove(&IN->Children[i+2], &IN->Children[i+1], in DoInsertion() 246 memmove(&Values[i+1], &Values[i], (e-i)*sizeof(Values[0])); in DoInsertion() 280 memmove(&InsertSide->Children[i+2], &InsertSide->Children[i+1], in DoInsertion() 285 memmove(&InsertSide->Values[i+1], &InsertSide->Values[i], in DoInsertion()
|
/external/skia/include/core/ |
D | SkPostConfig.h | 198 #ifndef memmove 199 #define memmove(dst, src, n) memmove(dst, src, n)
|
/external/webkit/Source/WebCore/html/canvas/ |
D | ArrayBufferView.cpp | 56 memmove(base + byteOffset, array->baseAddress(), array->byteLength()); in setImpl() 70 memmove(base + byteOffset, data, dataByteLength); in setRangeImpl()
|
/external/llvm/runtime/libprofile/ |
D | CommonProfiling.c | 49 memmove((char**)&argv[1], &argv[2], (argc-1)*sizeof(char*)); in save_arguments() 57 memmove((char**)&argv[1], &argv[2], (argc-1)*sizeof(char*)); in save_arguments()
|
/external/tinyxml/ |
D | tinystr.cpp | 65 memmove(start(), str, len); in assign() 79 memmove(finish(), str, len); in append()
|
/external/skia/src/gpu/ |
D | GrTDArray.h | 101 memmove(fArray + index, fArray + index + 1, remaining * sizeof(T)); in remove() 109 memmove(fArray + index, fArray + fCount, sizeof(T)); in removeShuffle() 202 memmove(fArray + index + 1, fArray + index, in growAt()
|
/external/regex-re2/util/ |
D | sparse_set.h | 96 memmove(a, sparse_to_dense_, max_size_*sizeof a[0]); in resize() 107 memmove(a, dense_, size_*sizeof a[0]); in resize()
|
/external/qemu/distrib/jpeg-6b/ |
D | jmem-ashmem.c | 99 memmove(buffer_address, info->addr + file_offset, byte_count); in read_backing_store() 108 memmove(info->addr + file_offset, buffer_address, byte_count); in write_backing_store()
|
/external/jpeg/ |
D | jmem-ashmem.c | 100 memmove(buffer_address, info->addr + file_offset, byte_count); in read_backing_store() 109 memmove(info->addr + file_offset, buffer_address, byte_count); in write_backing_store()
|