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

12

/bionic/libc/bionic/
H A Dmemcpy.cpp35 void* memcpy(void* dst, const void* src, size_t n) { argument
36 bcopy(src, dst, n);
37 return dst;
H A Dmemset.c31 void* memset(void* dst, int c, size_t n) argument
33 char* q = dst;
43 return dst;
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 src to string dst of size siz. At most siz-1 characters
28 strlcpy(char *dst, const char *src, size_t siz) argument
30 char *d = dst;
42 /* Not enough room in dst, add NUL and traverse rest of src */
45 *d = '\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.c24 * Copy src to string dst of size siz. At most siz-1 characters
29 wcslcpy(wchar_t *dst, const wchar_t *src, size_t siz) argument
31 wchar_t *d = dst;
43 /* Not enough room in dst, add NUL and traverse rest of src */
46 *d = '\0'; /* NUL-terminate dst */
H A Dstrlcat.c23 * Appends src to string dst of size siz (unlike strncat, siz is the
24 * full size of dst, not space left). At most siz-1 characters
25 * will be copied. Always NUL terminates (unless siz <= strlen(dst)).
26 * Returns strlen(src) + MIN(siz, strlen(initial dst)).
30 strlcat(char *dst, const char *src, size_t siz) argument
32 char *d = dst;
37 /* Find the end of dst and adjust bytes left but don't go past end */
40 dlen = d - dst;
H A Dbcopy.c63 char *dst = dst0; local
67 if (length == 0 || dst == src) /* nothing to do */
76 if ((unsigned long)dst < (unsigned long)src) {
81 if ((t | (long)dst) & wmask) {
86 if ((t ^ (long)dst) & wmask || length < wsize)
91 TLOOP1(*dst++ = *src++);
97 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
99 TLOOP(*dst++ = *src++);
107 dst
[all...]
/bionic/benchmarks/
H A Dstring_benchmark.cpp31 char* src = new char[nbytes]; char* dst = new char[nbytes]; local
33 memset(dst, 'x', nbytes);
38 c += memcmp(dst, src, nbytes);
44 delete[] dst;
50 char* src = new char[nbytes]; char* dst = new char[nbytes]; local
55 memcpy(dst, src, nbytes);
61 delete[] dst;
83 char* dst = new char[nbytes]; local
87 memset(dst, 0, nbytes);
92 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.S46 #define dst x6 define
59 mov dst, dstin
72 add dst, dst, tmp1
78 stp A_l, A_h, [dst, #-48]
81 stp A_l, A_h, [dst, #-32]
84 stp A_l, A_h, [dst, #-16]
91 add dst, dst, count
92 stp A_l, A_h, [dst, #
[all...]
/bionic/libc/kernel/uapi/linux/
H A Divtv.h32 struct v4l2_rect dst; member in struct:ivtv_dma_frame
/bionic/libc/arch-arm/bionic/
H A Dmemcpy.a9.S91 #define dst ip define
113 vstr \vreg, [dst, #\base]
115 vstr d0, [dst, #\base + 8]
117 vstr d1, [dst, #\base + 16]
119 vstr d2, [dst, #\base + 24]
121 vstr \vreg, [dst, #\base + 32]
123 vstr d0, [dst, #\base + 40]
125 vstr d1, [dst, #\base + 48]
127 vstr d2, [dst, #\base + 56]
132 vstr \vreg, [dst, #\bas
[all...]
/bionic/libc/tools/zoneinfo/
H A DZoneCompactor.java169 private static byte[] toAscii(byte[] dst, String src) { argument
174 dst[i] = (byte) src.charAt(i);
176 return dst;
/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 260 milliseconds

12