Searched defs:dst (Results 1 - 25 of 50) sorted by relevance

12

/bionic/libc/bionic/
H A Dmempcpy.cpp31 void* mempcpy(void* dst, const void* src, size_t n) { argument
32 return reinterpret_cast<char*>(memcpy(dst, src, n)) + n;
H A Dwmempcpy.cpp31 wchar_t* wmempcpy(wchar_t* dst, const wchar_t* src, size_t n) { argument
32 return wmemcpy(dst, src, n) + n;
H A D__stpncpy_chk.cpp64 extern "C" char* __stpncpy_chk2(char* __restrict dst, const char* __restrict src, argument
72 char* d = dst;
91 return dst;
H A D__strncpy_chk.cpp64 extern "C" char* __strncpy_chk2(char* __restrict dst, const char* __restrict src, argument
72 char* d = dst;
91 return dst;
/bionic/libc/upstream-freebsd/lib/libc/string/
H A Dwcpncpy.c33 wcpncpy(wchar_t * __restrict dst, const wchar_t * __restrict src, size_t n) argument
36 for (; n--; dst++, src++) {
37 if (!(*dst = *src)) {
38 wchar_t *ret = dst;
40 *++dst = L'\0';
44 return (dst);
H A Dwcsncpy.c44 * Copy src to dst, truncating or null-padding to always copy n bytes.
45 * Return dst.
48 wcsncpy(wchar_t * __restrict dst, const wchar_t * __restrict src, size_t n) argument
51 wchar_t *d = dst;
63 return (dst);
H A Dwcslcat.c42 * Appends src to string dst of size siz (unlike wcsncat, siz is the
43 * full size of dst, not space left). At most siz-1 characters
45 * Returns wcslen(initial dst) + wcslen(src); if retval >= siz,
49 wcslcat(wchar_t *dst, const wchar_t *src, size_t siz) argument
51 wchar_t *d = dst;
56 /* Find the end of dst and adjust bytes left but don't go past end */
59 dlen = d - dst;
/bionic/libc/dns/nameser/
H A Dns_netint.c37 uint16_t dst; local
39 NS_GET16(dst, src);
40 return dst;
45 u_int32_t dst; local
47 NS_GET32(dst, src);
48 return dst;
52 ns_put16(uint16_t src, u_char *dst) { argument
53 NS_PUT16(src, dst);
57 ns_put32(uint32_t src, u_char *dst) { argument
58 NS_PUT32(src, dst);
[all...]
H A Dns_samedomain.c170 ns_makecanon(const char *src, char *dst, size_t dstsize) { argument
177 strcpy(dst, src);
178 while (n >= 1U && dst[n - 1] == '.') /* Ends in "." */
179 if (n >= 2U && dst[n - 2] == '\\' && /* Ends in "\." */
180 (n < 3U || dst[n - 3] != '\\')) /* But not "\\." */
183 dst[--n] = '\0';
184 dst[n++] = '.';
185 dst[n] = '\0';
/bionic/libc/upstream-netbsd/lib/libc/string/
H A Dstrxfrm.c48 * Transform src, storing the result in dst, such that
53 strxfrm(char *dst, const char *src, size_t n) argument
64 _DIAGASSERT(dst != NULL);
66 (void)memcpy(dst, src, copysize);
67 dst[copysize] = 0;
/bionic/libc/upstream-openbsd/lib/libc/string/
H A Dstpncpy.c38 stpncpy(char *dst, const char *src, size_t n) argument
41 char *d = dst;
44 dst = &dst[n];
47 dst = d - 1;
55 return (dst);
H A Dstrlcpy.c23 * Copy string src to buffer dst of size dsize. At most dsize-1
28 strlcpy(char *dst, const char *src, size_t dsize) argument
36 if ((*dst++ = *src++) == '\0')
41 /* Not enough room in dst, add NUL and traverse rest of src. */
44 *dst = '\0'; /* NUL-terminate dst */
H A Dstrncat.c37 * Concatenate src on the end of dst. At most strlen(dst)+n+1 bytes
38 * are written at dst (at most n+1 bytes being appended). Return dst.
41 strncat(char *dst, const char *src, size_t n) argument
44 char *d = dst;
56 return (dst);
H A Dstrncpy.c38 * Copy src to dst, truncating or null-padding to always copy n bytes.
39 * Return dst.
42 strncpy(char *dst, const char *src, size_t n) argument
45 char *d = dst;
57 return (dst);
H A Dwcslcpy.c23 * Copy string src to buffer dst of size dsize. At most dsize-1
28 wcslcpy(wchar_t *dst, const wchar_t *src, size_t dsize) argument
36 if ((*dst++ = *src++) == L'\0')
41 /* Not enough room in dst, add NUL and traverse rest of src. */
44 *dst = L'\0'; /* NUL-terminate dst */
H A Dstrlcat.c23 * Appends src to string dst of size dsize (unlike strncat, dsize is the
24 * full size of dst, not space left). At most dsize-1 characters
25 * will be copied. Always NUL terminates (unless dsize <= strlen(dst)).
26 * Returns strlen(src) + MIN(dsize, strlen(initial dst)).
30 strlcat(char *dst, const char *src, size_t dsize) argument
32 const char *odst = dst;
37 /* Find the end of dst and adjust bytes left but don't go past end. */
38 while (n-- != 0 && *dst != '\0')
39 dst++;
40 dlen = dst
[all...]
H A Dmemmove.c51 char *dst = dst0; local
55 if (length == 0 || dst == src) /* nothing to do */
64 if ((unsigned long)dst < (unsigned long)src) {
69 if ((t | (long)dst) & wmask) {
74 if ((t ^ (long)dst) & wmask || length < wsize)
79 TLOOP1(*dst++ = *src++);
85 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
87 TLOOP(*dst++ = *src++);
95 dst
[all...]
/bionic/benchmarks/
H A Dstring_benchmark.cpp32 char* src = new char[nbytes]; char* dst = new char[nbytes]; local
34 memset(dst, 'x', nbytes);
38 c += memcmp(dst, src, nbytes);
43 delete[] dst;
49 char* src = new char[nbytes]; char* dst = new char[nbytes]; local
53 memcpy(dst, src, nbytes);
58 delete[] dst;
78 char* dst = new char[nbytes]; local
81 memset(dst, 0, nbytes);
85 delete[] dst;
[all...]
/bionic/libc/arch-arm64/denver64/bionic/
H A Dmemset.S61 #define dst x8 define
68 mov dst, dstin /* Preserve return value. */
89 stp QA_l, QA_l, [dst], #32
90 stp QA_l, QA_l, [dst], #32
92 stp QA_l, QA_l, [dst], #32
93 stp QA_l, QA_l, [dst], #32
95 stp QA_l, QA_l, [dst], #32
96 stp QA_l, QA_l, [dst], #32
100 add dst, dst, tmp
[all...]
/bionic/libc/arch-arm64/generic/bionic/
H A Dmemset.S64 #define dst x8 define
73 mov dst, dstin /* Preserve return value. */
91 add dst, dst, tmp1
95 stp A_l, A_l, [dst, #-48]
97 stp A_l, A_l, [dst, #-32]
99 stp A_l, A_l, [dst, #-16]
103 add dst, dst, count
104 stp A_l, A_l, [dst, #
[all...]
H A Dmemcpy_base.S44 #define dst x6 define
55 mov dst, dstin
68 add dst, dst, tmp1
74 stp A_l, A_h, [dst, #-48]
77 stp A_l, A_h, [dst, #-32]
80 stp A_l, A_h, [dst, #-16]
87 add dst, dst, count
88 stp A_l, A_h, [dst, #
[all...]
H A Dmemmove.S47 #define dst x6 define
73 add dst, dstin, count
85 sub dst, dst, tmp1
91 stp A_l, A_h, [dst, #32]
94 stp A_l, A_h, [dst, #16]
97 stp A_l, A_h, [dst]
103 str tmp1, [dst, #-8]!
107 str tmp1w, [dst, #-4]!
111 strh tmp1w, [dst, #
[all...]
/bionic/libc/kernel/uapi/linux/
H A Divtv.h32 struct v4l2_rect dst; member in struct:ivtv_dma_frame
/bionic/libc/stdio/
H A Dfread.c80 char* dst = buf; local
87 memcpy(dst, fp->_p, buffered_bytes);
90 dst += buffered_bytes;
127 ssize_t bytes_read = (*fp->_read)(fp->_cookie, dst, total);
132 dst += bytes_read;
/bionic/libc/upstream-openbsd/lib/libc/net/
H A Dinet_ntop.c34 static const char *inet_ntop4(const u_char *src, char *dst, size_t size);
35 static const char *inet_ntop6(const u_char *src, char *dst, size_t size);
38 * inet_ntop(af, src, dst, size)
41 * pointer to presentation format address (`dst'), or NULL (see errno).
46 inet_ntop(int af, const void *src, char *dst, socklen_t size) argument
50 return (inet_ntop4(src, dst, (size_t)size));
52 return (inet_ntop6(src, dst, (size_t)size));
61 * inet_ntop4(src, dst, size)
64 * `dst' (as a const)
72 inet_ntop4(const u_char *src, char *dst, size_ argument
94 inet_ntop6(const u_char *src, char *dst, size_t size) argument
[all...]

Completed in 452 milliseconds

12