Searched refs:memcpy (Results 1 - 25 of 472) sorted by relevance

1234567891011>>

/fuchsia/zircon/third_party/ulib/musl/src/string/aarch64/
H A Dmemcpy.S7 // The memcpy implementation is verbatim from cortex-strings.
10 #include "third_party/lib/cortex-strings/src/aarch64/memcpy.S"
12 ALIAS(memcpy, __unsanitized_memcpy)
13 ASAN_WEAK_ALIAS(memcpy)
/fuchsia/zircon/third_party/ulib/musl/src/string/x86_64/
H A Dmemcpy.S7 // %rax = memcpy(%rdi, %rsi, %rdx)
8 ENTRY(memcpy)
16 END(memcpy)
18 ALIAS(memcpy, __unsanitized_memcpy)
19 ASAN_WEAK_ALIAS(memcpy)
20 ALIAS(memcpy, __memcpy_fwd)
/fuchsia/zircon/third_party/ulib/musl/src/prng/
H A Dseed48.c8 memcpy(p, __seed48, sizeof p);
9 memcpy(__seed48, s, sizeof p);
H A Dlcong48.c7 memcpy(__seed48, p, sizeof __seed48);
/fuchsia/zircon/third_party/ulib/musl/src/string/
H A Dmempcpy.c5 return (char*)memcpy(dest, src, n) + n;
H A Dstrerror_r.c10 memcpy(buf, msg, buflen - 1);
15 memcpy(buf, msg, l + 1);
H A Dstrdup.c10 return memcpy(d, s, l + 1);
H A Dstrndup.c9 memcpy(d, s, l);
/fuchsia/zircon/system/dev/tee/optee/
H A Dutil.cpp25 ::memcpy(out_hi, ptr_, sizeof(*out_hi));
26 ::memcpy(out_low, ptr_ + sizeof(*out_hi), sizeof(*out_low));
/fuchsia/zircon/third_party/ulib/musl/src/network/
H A Dres_querydomain.c11 memcpy(tmp, name, nl);
13 memcpy(tmp + nl + 1, domain, dl + 1);
H A Dlookup_ipliteral.c20 memcpy(&buf[0].addr, &a4, sizeof a4);
30 memcpy(tmp, name, p - name);
40 memcpy(&buf[0].addr, &a6, sizeof a6);
H A Dgethostbyaddr_r.c23 memcpy(&sa.sin6.sin6_addr, a, 16);
25 memcpy(&sa.sin.sin_addr, a, 4);
46 memcpy(h->h_addr_list[0], a, l);
H A Dgethostbyname2_r.c58 memcpy(buf, name, namelen + 1);
73 memcpy(buf, &sin->sin_addr, h->h_length);
76 memcpy(buf, &sin6->sin6_addr, h->h_length);
/fuchsia/zircon/kernel/lib/libc/string/arch/x86/
H A Dmemcpy.S12 // memcpy implementation relying on Intel's Enhanced REP MOVSB optimization
23 // memcpy implementation that copies 8 bytes at a time when possible
41 FUNCTION(memcpy)
43 APPLY_CODE_PATCH_FUNC_WITH_DEFAULT(x86_memcpy_select, memcpy, 2)
44 END_FUNCTION(memcpy)
H A Drules.mk10 ASM_STRING_OPS := memcpy memset
13 $(LOCAL_DIR)/memcpy.S \
H A Dselector.cpp14 extern void* memcpy(void*, const void*, size_t);
27 const intptr_t jmp_from_address = reinterpret_cast<intptr_t>(memcpy) + kSize;
31 reinterpret_cast<uintptr_t>(memcpy));
/fuchsia/zircon/system/dev/misc/pty/
H A Dpty-fifo.c27 memcpy(fifo->data + offset, data, len);
29 memcpy(fifo->data + offset, data, avail);
30 memcpy(fifo->data, data + avail, len - avail);
47 memcpy(data, fifo->data + offset, len);
49 memcpy(data, fifo->data + offset, avail);
50 memcpy(data + avail, fifo->data, len - avail);
/fuchsia/zircon/third_party/ulib/musl/src/env/
H A Dsetenv.c22 memcpy(s, var, l1);
24 memcpy(s + l1 + 1, value, l2);
/fuchsia/zircon/kernel/lib/libc/string/arch/arm64/
H A Drules.mk10 ASM_STRING_OPS := memcpy memset
13 third_party/lib/cortex-strings/src/aarch64/memcpy.S \
/fuchsia/zircon/kernel/lib/libc/string/
H A Dstrxfrm.c18 memcpy(dest, src, copy_len);
/fuchsia/zircon/third_party/ulib/jemalloc/test/unit/
H A Dhash.c85 memcpy(&hashes[i*hashbytes], &out, hashbytes);
90 memcpy(&hashes[i*hashbytes], out, hashbytes);
95 memcpy(&hashes[i*hashbytes], out, hashbytes);
105 memcpy(final, &out, sizeof(out));
110 memcpy(final, out, sizeof(out));
115 memcpy(final, out, sizeof(out));
/fuchsia/zircon/third_party/ulib/musl/src/mman/
H A Dshm_open.c23 memcpy(buf, "/dev/shm/", 9);
24 memcpy(buf + 9, name, p - name + 1);
/fuchsia/zircon/third_party/ulib/musl/src/stdio/
H A Dtempnam.c33 memcpy(s, dir, dl);
35 memcpy(s + dl + 1, pfx, pl);
/fuchsia/zircon/third_party/ulib/musl/src/temp/
H A Dmkdtemp.c23 memcpy(template + l - 6, "XXXXXX", 6);
/fuchsia/zircon/system/ulib/kvstore/
H A Dkvstore-test.c118 memcpy(buffer, &hdr, sizeof(hdr));
119 memcpy(buffer + sizeof(hdr), content, sizeof(content));
137 memcpy(buffer, &hdr, sizeof(hdr));
138 memcpy(buffer + sizeof(hdr), content, sizeof(content));
151 memcpy(buffer, &hdr, sizeof(hdr));
152 memcpy(buffer + sizeof(hdr), content, sizeof(content));
165 memcpy(checkbuf, content, sizeof(content));
166 memcpy(checkbuf + sizeof(content), newcontent, sizeof(newcontent));
172 memcpy(buffer, &hdr, sizeof(hdr));
173 memcpy(buffe
[all...]

Completed in 263 milliseconds

1234567891011>>