Home
last modified time | relevance | path

Searched refs:memmove (Results 1 – 25 of 621) sorted by relevance

12345678910>>...25

/external/syslinux/dos/
Dmemmove.S2 # memmove.S
4 # Simple 16-bit memmove() implementation
9 .globl memmove symbol
10 .type memmove, @function
11 memmove: label
36 .size memmove,.-memmove
/external/clang/test/SemaObjC/
Darc-non-pod-memaccess.m9 void *memmove(void *s1, const void *s2, __SIZE_TYPE__ n); function
40memmove(sip, ptr, 17); // expected-warning{{destination for this 'memmove' call is a pointer to ow…
42memmove(wip, ptr, 17); // expected-warning{{destination for this 'memmove' call is a pointer to ow…
44memmove(aip, ptr, 17); // expected-warning{{destination for this 'memmove' call is a pointer to ow…
46 memmove(uip, ptr, 17);
48memmove(ptr, sip, 17); // expected-warning{{source of this 'memmove' call is a pointer to ownershi…
50memmove(ptr, wip, 17); // expected-warning{{source of this 'memmove' call is a pointer to ownershi…
52memmove(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/
Dmemmove-1.ll1 ; Test that the memmove library call simplifier works correctly.
7 declare i8* @memmove(i8*, i8*, i32)
9 ; Check memmove(mem1, mem2, size) -> llvm.memmove(mem1, mem2, size, 1).
13 %ret = call i8* @memmove(i8* %mem1, i8* %mem2, i32 %size)
14 ; CHECK: call void @llvm.memmove
Dmemmove.ll1 ; 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], [33 x i8]* @S…
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
Dmemmove-2.ll1 ; Test that the memmove library call simplifier works correctly.
7 declare i8 @memmove(i8*, i8*, i32)
9 ; Check that memmove functions with the wrong prototype aren't simplified.
13 %ret = call i8 @memmove(i8* %mem1, i8* %mem2, i32 %size)
14 ; CHECK: call i8 @memmove
/external/swiftshader/third_party/LLVM/test/Transforms/InstCombine/
Dmemmove.ll1 ; 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
/external/swiftshader/third_party/subzero/tests_lit/llvm2ice_tests/
Dnacl-mem-intrinsics.ll1 ; This tests the NaCl intrinsics memset, memcpy and memmove.
26 declare void @llvm.memmove.p0i8.p0i8.i32(i8*, i8*, i32, i32, i1)
197 call void @llvm.memmove.p0i8.p0i8.i32(i8* %dst, i8* %src,
202 ; CHECK: call {{.*}} R_{{.*}} memmove
204 ; OM1: call {{.*}} memmove
206 ; ARM32: bl {{.*}} memmove
208 ; MIPS32: jal {{.*}} memmove
215 call void @llvm.memmove.p0i8.p0i8.i32(i8* %dst, i8* %src,
220 ; CHECK: call {{.*}} R_{{.*}} memmove
222 ; OM1: call {{.*}} memmove
[all …]
/external/syslinux/memdisk/
Dmemmove.S35 .globl memmove symbol
36 .type memmove,@function
38 memmove: label
139 .size memmove, .-memmove
/external/syslinux/com32/lib/
Dmemmove.S36 .globl memmove symbol
37 .type memmove,@function
39 memmove: label
150 .size memmove, .-memmove
/external/clang/lib/Sema/
DTypeLocBuilder.cpp100 memmove(&Buffer[Index - 4], &Buffer[Index], NumBytesAtAlign4); in pushImpl()
111 memmove(&Buffer[Index + 4], &Buffer[Index], NumBytesAtAlign4); in pushImpl()
122 memmove(&Buffer[Index - 4], &Buffer[Index], NumBytesAtAlign4); in pushImpl()
134 memmove(&Buffer[Index - 4], &Buffer[Index], NumBytesAtAlign4); in pushImpl()
145 memmove(&Buffer[Index + 4], &Buffer[Index], NumBytesAtAlign4); in pushImpl()
/external/llvm/test/Transforms/MemCpyOpt/
Dmemmove.ll7 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/swiftshader/third_party/LLVM/test/Transforms/MemCpyOpt/
Dmemmove.ll7 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/skia/src/pathops/
DSkIntersections.cpp77 memmove(&fPt[index + 1], &fPt[index], sizeof(fPt[0]) * remaining); in insert()
78 memmove(&fT[0][index + 1], &fT[0][index], sizeof(fT[0][0]) * remaining); in insert()
79 memmove(&fT[1][index + 1], &fT[1][index], sizeof(fT[1][0]) * remaining); in insert()
156 memmove(&fPt[index], &fPt[index + 1], sizeof(fPt[0]) * remaining); in removeOne()
157 memmove(&fT[0][index], &fT[0][index + 1], sizeof(fT[0][0]) * remaining); in removeOne()
158 memmove(&fT[1][index], &fT[1][index + 1], sizeof(fT[1][0]) * remaining); in removeOne()
/external/clang/test/Analysis/
Dbstring.c320 #define memmove(a,b,c) __memmove_chk(a,b,c,(size_t)-1) macro
324 #define memmove BUILTIN(memmove) macro
325 void *memmove(void *s1, const void *s2, size_t n);
334 memmove(dst, src, 4); // no-warning in memmove0()
336 clang_analyzer_eval(memmove(dst, src, 4) == dst); // expected-warning{{TRUE}} in memmove0()
347 memmove(dst, src, 5); // expected-warning{{out-of-bound}} in memmove1()
354 memmove(dst, src, 4); // expected-warning{{overflow}} in memmove2()
Dredefined_system.c6 char memmove ();
16 return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi(); in foo()
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyLibCalls/
Dmemmove.ll1 ; 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/skia/src/core/
DSkArenaAlloc.cpp61 memmove(fCursor, &encodedFooter, sizeof(Footer)); in installFooter()
67 memmove(fCursor, &ptr, sizeof(char*)); in installPtrFooter()
75 memmove(&skip, objEnd, sizeof(int32_t)); in SkipPod()
94 memmove(&next, objEnd, sizeof(char*)); in NextBlock()
101 memmove(fCursor, &value, sizeof(uint32_t)); in installUint32Footer()
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Ddtmf_queue.cc51 memmove(&(dtmf_key_[0]), &(dtmf_key_[1]), in NextDTMF()
53 memmove(&(dtmf_length[0]), &(dtmf_length[1]), in NextDTMF()
55 memmove(&(dtmf_level_[0]), &(dtmf_level_[1]), in NextDTMF()
/external/swiftshader/third_party/subzero/crosstest/
Dmem_intrin.cpp60 memmove((void *)overlap_buf, (void *)buf, reduced_length); in memmove_test()
63 memmove((void *)buf2, (void *)buf, length); in memmove_test()
89 memmove((void *)(buf + 16), (void *)buf, NBYTES); \
91 memmove((void *)buf2, (void *)(buf2 + 16), NBYTES); \
/external/llvm/test/CodeGen/ARM/
Dmemfunc.ll18 ; CHECK-GNUEABI: bl memmove
19 call void @llvm.memmove.p0i8.p0i8.i32(i8* %dest, i8* %src, i32 500, i32 0, i1 false)
52 ; CHECK-GNUEABI: bl memmove
53 call void @llvm.memmove.p0i8.p0i8.i32(i8* %dest, i8* %src, i32 500, i32 4, i1 false)
76 ; CHECK-GNUEABI: bl memmove
77 call void @llvm.memmove.p0i8.p0i8.i32(i8* %dest, i8* %src, i32 500, i32 8, i1 false)
113 ; CHECK-GNUEABI: bl memmove
116 call void @llvm.memmove.p0i8.p0i8.i32(i8* %dest, i8* %0, i32 %n, i32 0, i1 false)
155 ; CHECK-GNUEABI: bl memmove
158 call void @llvm.memmove.p0i8.p0i8.i32(i8* %dest, i8* %0, i32 %n, i32 0, i1 false)
[all …]
/external/webrtc/webrtc/voice_engine/
Ddtmf_inband_queue.cc63 memmove(&(_DtmfKey[0]), &(_DtmfKey[1]), in NextDtmf()
65 memmove(&(_DtmfLen[0]), &(_DtmfLen[1]), in NextDtmf()
67 memmove(&(_DtmfLevel[0]), &(_DtmfLevel[1]), in NextDtmf()
/external/pdfium/third_party/lcms2-2.6/src/
Dcmsmd5.c193 memmove(p, buf, len); in MD5add()
197 memmove(p, buf, t); in MD5add()
206 memmove(ctx->in, buf, 64); in MD5add()
213 memmove(ctx->in, buf, len); in MD5add()
249 memmove(ProfileID ->ID8, ctx->buf, 16); in MD5finish()
274 memmove(&Keep, Icc, sizeof(_cmsICCPROFILE)); in cmsMD5computeID()
302 memmove(Icc, &Keep, sizeof(_cmsICCPROFILE)); in cmsMD5computeID()
313 memmove(Icc, &Keep, sizeof(_cmsICCPROFILE)); in cmsMD5computeID()
326 memmove(Mem,buf,size); in cmsMD5computeIDExt()
/external/dtc/libfdt/
Dfdt_sw.c129 memmove(buf, fdt, headsize); in fdt_resize()
130 memmove(newtail, oldtail, tailsize); in fdt_resize()
132 memmove(newtail, oldtail, tailsize); in fdt_resize()
133 memmove(buf, fdt, headsize); in fdt_resize()
264 memmove(p + newstroffset, p + oldstroffset, fdt_size_dt_strings(fdt)); in fdt_finish()
/external/llvm/test/CodeGen/AMDGPU/
Dpromote-alloca-mem-intrinsics.ll6 declare void @llvm.memmove.p0i8.p1i8.i32(i8* nocapture, i8 addrspace(1)* nocapture, i32, i32, i1) #0
7 declare void @llvm.memmove.p1i8.p0i8.i32(i8 addrspace(1)* nocapture, i8* nocapture, i32, i32, i1) #0
29 ; CHECK: call void @llvm.memmove.p3i8.p1i8.i32(i8 addrspace(3)* %alloca.bc, i8 addrspace(1)* %in.bc…
30 ; CHECK: call void @llvm.memmove.p1i8.p3i8.i32(i8 addrspace(1)* %out.bc, i8 addrspace(3)* %alloca.b…
36 …call void @llvm.memmove.p0i8.p1i8.i32(i8* %alloca.bc, i8 addrspace(1)* %in.bc, i32 68, i32 4, i1 f…
37 …call void @llvm.memmove.p1i8.p0i8.i32(i8 addrspace(1)* %out.bc, i8* %alloca.bc, i32 68, i32 4, i1 …
/external/llvm/test/CodeGen/AArch64/
Dtailcall-mem-intrinsics.ll12 ; CHECK: b memmove
15 tail call void @llvm.memmove.p0i8.p0i8.i32(i8* %p, i8* %q, i32 %n, i32 1, i1 false)
28 declare void @llvm.memmove.p0i8.p0i8.i32(i8* nocapture, i8* nocapture readonly, i32, i32, i1) #0

12345678910>>...25