/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/cris/ |
A D | memset.c | 161 *(long *) dst = lc; dst += 4; in memset() 162 *(long *) dst = lc; dst += 4; in memset() 163 *(long *) dst = lc; dst += 4; in memset() 164 *(long *) dst = lc; dst += 4; in memset() 191 *(long *) dst = lc; dst += 4; in memset() 196 *(long *) dst = lc; dst += 4; in memset() 201 *(long *) dst = lc; dst += 4; in memset() 207 *(long *) dst = lc; dst += 4; in memset() 212 *(long *) dst = lc; dst += 4; in memset() 213 *(long *) dst = lc; dst += 4; in memset() [all …]
|
A D | memcpy.c | 75 dst++; in memcpy() 141 *(long *) dst = *(long *) src; dst += 4; src += 4; in memcpy() 142 *(long *) dst = *(long *) src; dst += 4; src += 4; in memcpy() 143 *(long *) dst = *(long *) src; dst += 4; src += 4; in memcpy() 144 *(long *) dst = *(long *) src; dst += 4; src += 4; in memcpy() 172 *(long *) dst = *(long *) src; dst += 4; src += 4; in memcpy() 177 *(long *) dst = *(long *) src; dst += 4; src += 4; in memcpy() 182 *(long *) dst = *(long *) src; dst += 4; src += 4; in memcpy() 188 *(long *) dst = *(long *) src; dst += 4; src += 4; in memcpy() 193 *(long *) dst = *(long *) src; dst += 4; src += 4; in memcpy() [all …]
|
/l4re-core-master/moe/server/src/ |
A D | dataspace_util.cc | 28 __do_real_copy(Dataspace *dst, unsigned long &dst_offs, in __do_real_copy() argument 67 dst->free_page(dst_p); in __do_cow_copy() 88 dst_p = &dst->alloc_page(dst_offs); in __do_cow_copy2() 90 dst_p = &dst->page(dst_offs); in __do_cow_copy2() 92 dst->free_page(*dst_p); in __do_cow_copy2() 115 unsigned long dst_sz = dst->size(); in __do_eager_copy() 131 unsigned long dst_sz = dst->size(); in __do_lazy_copy() 139 unsigned dst_pg_sz = dst->page_size(); in __do_lazy_copy() 190 unsigned long dst_sz = dst->size(); in __do_lazy_copy2() 198 unsigned dst_pg_sz = dst->page_size(); in __do_lazy_copy2() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/avr32/ |
A D | memcpy.S | 10 #define dst r9 macro 19 mov dst, r12 28 st.b dst++, r8 40 mov r8, dst 51 stm dst, r0-r7 52 sub dst, -32 63 stm dst, r0-r3 64 sub dst, -16 72 st.b dst++, r0 82 st.b dst++, r0 [all …]
|
A D | memmove.S | 9 #define dst r12 macro 17 cp.w src, dst 20 add dst, len 34 st.b --dst, r8 57 sub dst, 32 59 stm dst, r0-r7 68 sub dst, 16 70 stm dst, r0-r3 77 st.b --dst, r0 87 st.b --dst, r0 [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/test/locale/ |
A D | tst-mbswcs5.c | 29 dst += res; \ 30 printf (", dst = buf+%td", dst - (char *) buf); \ 31 if (res != nexp || dst != (char *) (bufexp)) \ 48 char *dst; in main() local 61 dst = (char *) buf; in main() 62 show (wcrtomb (dst, *src++, &state), 1, buf + 1); in main() 63 show (wcrtomb (dst, *src++, &state), 3, buf + 4); in main() 64 show (wcrtomb (dst, *src++, &state), 2, buf + 6); in main() 65 show (wcrtomb (dst, *src, &state), 1, buf + 7); in main()
|
A D | tst-mbswcs3.c | 29 dst += res; \ 31 src - srcbuf, dst - (char *) buf); \ 32 if (res != nexp || src != (srcexp) || dst != (char *) (bufexp)) \ 49 char *dst; in main() local 62 dst = (char *) buf; in main() 63 show (wcsrtombs (dst, &src, 1, &state), 1, srcbuf + 1, buf + 1); in main() 64 show (wcsrtombs (dst, &src, 1, &state), 0, srcbuf + 1, buf + 1); in main() 65 show (wcsrtombs (dst, &src, 4, &state), 3, srcbuf + 2, buf + 4); in main() 66 show (wcsrtombs (dst, &src, 2, &state), 2, srcbuf + 3, buf + 6); in main()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/ |
A D | strlcat.c | 17 size_t strlcat(register char *__restrict dst, in strlcat() argument 28 dst = dummy; in strlcat() 31 if (!*dst) { in strlcat() 34 ++dst; in strlcat() 38 while ((*dst = *src) != 0) { in strlcat() 40 ++dst; in strlcat()
|
A D | strlcpy.c | 22 size_t Wstrlcpy(register Wchar *__restrict dst, in Wstrlcpy() argument 30 dst = dummy; in Wstrlcpy() 35 while ((*dst = *src) != 0) { in Wstrlcpy() 38 ++dst; in Wstrlcpy()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/inet/ |
A D | ntop.c | 84 return strcpy(dst, tmp); in inet_ntop4() 182 return strcpy(dst, tmp); in inet_ntop6() 198 inet_pton4(const char *src, u_char *dst) in inet_pton4() argument 229 memcpy(dst, tmp, 4); in inet_pton4() 250 inet_pton6(const char *src, u_char *dst) in inet_pton6() argument 332 memcpy(dst, tmp, 16); in inet_pton6() 353 return inet_ntop4(src, dst, size); in inet_ntop() 356 return inet_ntop6(src, dst, size); in inet_ntop() 379 inet_pton(int af, const char *src, void *dst) in libc_hidden_def() 383 return inet_pton4(src, dst); in libc_hidden_def() [all …]
|
/l4re-core-master/ldso/ldso/ |
A D | string.c | 4 void *memset(void *dst, int v, size_t s) in memset() argument 6 char *d = (char*)dst; in memset() 10 return dst; in memset() 13 void *memcpy(void *dst, void const *src, size_t si) in memcpy() argument 15 char *d = (char *)dst; in memcpy()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/termios/ |
A D | ttyname.c | 49 struct stat dst; in ttyname_r() local 89 if ((lstat(buf, &dst) == 0) in ttyname_r() 95 && (st.st_dev == dst.st_dev) && (st.st_ino == dst.st_ino) in ttyname_r() 97 && S_ISCHR(dst.st_mode) && (st.st_rdev == dst.st_rdev) in ttyname_r()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/wchar/ |
A D | wchar.c | 720 if (!dst || (dst == ((wchar_t *)ps))) { in mbsnrtowcs() 721 if (!dst) { in mbsnrtowcs() 724 dst = wcbuf; in mbsnrtowcs() 753 dst += incr; in mbsnrtowcs() 781 dst += incr; in mbsnrtowcs() 823 if (!dst || (dst == ((char *) src))) { in libc_hidden_def() 824 if (!dst) { in libc_hidden_def() 827 dst = buf; in libc_hidden_def() 872 dst += incr; in libc_hidden_def() 899 dst += incr; in libc_hidden_def() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/sparc/sparc32/ |
A D | memcpy.S | 31 st %t0, [%dst + offset + 0x00]; \ 32 st %t1, [%dst + offset + 0x04]; \ 38 st %t7, [%dst + offset + 0x1c]; 48 std %t6, [%dst + offset + 0x18]; 56 st %t3, [%dst - offset - 0x04]; 62 std %t2, [%dst - offset - 0x08]; 68 stb %t1, [%dst - offset - 0x01]; 83 st %t7, [%dst - offset - 0x04]; 93 std %t6, [%dst - offset - 0x08]; 101 st %t3, [%dst + offset + 0x0c]; [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/ldso/include/ |
A D | dl-string.h | 35 static __always_inline char * _dl_strcat(char *dst, const char *src) in _dl_strcat() argument 37 register char *ptr = dst-1; in _dl_strcat() 45 return dst; in _dl_strcat() 48 static __always_inline char * _dl_strcpy(char *dst, const char *src) in _dl_strcpy() argument 50 register char *ptr = dst; in _dl_strcpy() 52 dst--;src--; in _dl_strcpy() 53 while ((*++dst = *++src) != 0) in _dl_strcpy() 120 static __always_inline void * _dl_memcpy(void *dst, const void *src, size_t len) in _dl_memcpy() argument 122 register char *a = dst-1; in _dl_memcpy() 129 return dst; in _dl_memcpy()
|
/l4re-core-master/cxx/lib/util/include/ |
A D | atomic.h | 33 inline int compare_and_swap(X volatile *dst, X old_val, X new_val) in compare_and_swap() argument 38 return l4util_cmpxchg8((l4_uint8_t volatile*)dst, old_val, new_val); in compare_and_swap() 40 return l4util_cmpxchg16((l4_uint16_t volatile *)dst, old_val, new_val); in compare_and_swap() 43 return l4util_cmpxchg32((l4_uint32_t volatile*)dst, old_val, new_val); in compare_and_swap()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libcrypt/ |
A D | libcrypt.h | 20 #define strcpy(dst,src) strcpy((char*)dst,(char*)src) argument 22 #define strncat(dst,src,n) strncat((char*)dst,(char*)src,n) argument
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/sparc/sparc64/sparcv9b/ |
A D | memcpy.S | 342 stw %t0, [%dst - offset - 0x1c]; \ 344 stw %t0, [%dst - offset - 0x20]; \ 345 stw %t1, [%dst - offset - 0x14]; \ 347 stw %t1, [%dst - offset - 0x18]; \ 348 stw %t2, [%dst - offset - 0x0c]; \ 351 stw %t3, [%dst - offset - 0x04]; \ 353 stw %t3, [%dst - offset - 0x08]; 363 stx %t3, [%dst - offset - 0x08]; \ 371 stx %t3, [%dst - offset - 0x28]; 381 stw %t3, [%dst + offset + 0x08]; [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/sparc/sparc64/ |
A D | memcpy.S | 91 stw %t0, [%dst + offset + 0x04]; \ 93 stw %t0, [%dst + offset + 0x00]; \ 100 stw %t3, [%dst + offset + 0x1c]; \ 102 stw %t3, [%dst + offset + 0x18]; 120 stx %t3, [%dst + offset + 0x38]; 130 stw %t3, [%dst - offset - 0x08]; 136 stx %t1, [%dst - offset - 0x08]; 155 stw %t3, [%dst - offset - 0x08]; 173 stx %t3, [%dst - offset - 0x28]; 183 stw %t3, [%dst + offset + 0x08]; [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/generic/ |
A D | strcpy.c | 23 char *dst = dest; in strcpy() local 25 while ((*dst = *src) != '\0') { in strcpy() 27 dst++; in strcpy()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/libsupc++/ |
A D | si_class_type_info.cc | 75 __do_upcast (const __class_type_info *dst, const void *obj_ptr, in __do_upcast() argument 78 if (__class_type_info::__do_upcast (dst, obj_ptr, result)) in __do_upcast() 81 return __base_type->__do_upcast (dst, obj_ptr, result); in __do_upcast()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/libsupc++/ |
A D | si_class_type_info.cc | 75 __do_upcast (const __class_type_info *dst, const void *obj_ptr, in __do_upcast() argument 78 if (__class_type_info::__do_upcast (dst, obj_ptr, result)) in __do_upcast() 81 return __base_type->__do_upcast (dst, obj_ptr, result); in __do_upcast()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/libsupc++/ |
A D | si_class_type_info.cc | 75 __do_upcast (const __class_type_info *dst, const void *obj_ptr, in __do_upcast() argument 78 if (__class_type_info::__do_upcast (dst, obj_ptr, result)) in __do_upcast() 81 return __base_type->__do_upcast (dst, obj_ptr, result); in __do_upcast()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/libsupc++/ |
A D | si_class_type_info.cc | 75 __do_upcast (const __class_type_info *dst, const void *obj_ptr, in __do_upcast() argument 78 if (__class_type_info::__do_upcast (dst, obj_ptr, result)) in __do_upcast() 81 return __base_type->__do_upcast (dst, obj_ptr, result); in __do_upcast()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/libsupc++/ |
A D | si_class_type_info.cc | 75 __do_upcast (const __class_type_info *dst, const void *obj_ptr, in __do_upcast() argument 78 if (__class_type_info::__do_upcast (dst, obj_ptr, result)) in __do_upcast() 81 return __base_type->__do_upcast (dst, obj_ptr, result); in __do_upcast()
|