/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/cris/ |
A D | memcpy.c | 74 src++; 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 …]
|
A D | strcpy.c | 9 char *strcpy(char *dest, const char *src) in strcpy() argument 15 while ((unsigned long)src & (sizeof src - 1)) in strcpy() 17 if (!(*dest++ = *src++)) in strcpy() 25 unsigned long value = *(unsigned long*)src; in strcpy() 28 src += sizeof (unsigned long); in strcpy() 42 src -= sizeof (unsigned long); in strcpy() 44 while ((*dest++ = *src++)) in strcpy()
|
A D | strncpy.c | 10 char *strncpy(char *dest, const char *src, size_t count) in strncpy() argument 16 while (count && (unsigned long)src & (sizeof src - 1)) in strncpy() 19 if (!(*dest++ = *src++)) in strncpy() 27 unsigned long value = *(unsigned long*)src; in strncpy() 40 src += sizeof (unsigned long); in strncpy() 47 if (!(*dest++ = *src++)) in strncpy()
|
/l4re-core-master/moe/server/src/ |
A D | dataspace_util.cc | 98 src->unmap_page(src_p, true); in __do_cow_copy2() 116 unsigned long src_sz = src->round_size(); in __do_eager_copy() 122 __do_real_copy(dst, dst_offs, src, src_offs, size); in __do_eager_copy() 132 unsigned long src_sz = src->round_size(); in __do_lazy_copy() 141 if (src->page_size() < dst_pg_sz) in __do_lazy_copy() 181 __do_real_copy(dst, dst_offs, src, src_offs, cp_sz); in __do_lazy_copy() 191 unsigned long src_sz = src->round_size(); in __do_lazy_copy2() 200 if (src->page_size() != dst_pg_sz) in __do_lazy_copy2() 241 __do_real_copy(dst, dst_offs, src, src_offs, cp_sz); in __do_lazy_copy2() 252 if (src->can_cow() && dst->can_cow()) in copy() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/inet/ |
A D | ntop.c | 62 if (src[octet] > 255) { in inet_ntop4() 119 words[i / 2] = (src[i] << 8) | src[i + 1]; in inet_ntop6() 206 while ((ch = *src++) != '\0') { in inet_pton4() 263 if (*src == ':') in inet_pton6() 264 if (*++src != ':') in inet_pton6() 266 curtok = src; in inet_pton6() 269 while ((ch = *src++) != '\0') { in inet_pton6() 283 curtok = src; in inet_pton6() 290 if (*src == '\0') in inet_pton6() 383 return inet_pton4(src, dst); in libc_hidden_def() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/avr32/ |
A D | memmove.S | 10 #define src r11 macro 17 cp.w src, dst 21 add src, len 22 pref src[-1] 33 1: ld.ub r8, --src 43 mov r8, src 55 sub src, 32 56 ldm src, r0-r7 66 sub src, 16 67 ldm src, r0-r3 [all …]
|
A D | memcpy.S | 11 #define src r11 macro 18 pref src[0] 27 1: ld.ub r8, src++ 37 mov r8, src 49 ldm src, r0-r7 50 sub src, -32 60 ldm src, r0-r3 61 sub src, -16 71 ld.ub r0, src++ 87 pref src[0] [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdio/ |
A D | _load_inttype.c | 11 uintmax_t _load_inttype(int desttype, register const void *src, int uflag) in _load_inttype() argument 18 return *((unsigned long long int *) src); in _load_inttype() 21 return *((unsigned long int *) src); in _load_inttype() 26 return *((unsigned long long int *) src); in _load_inttype() 32 x = *((unsigned int *) src); in _load_inttype() 44 return *((long long int *) src); in _load_inttype() 47 return *((long int *) src); in _load_inttype() 52 return *((long long int *) src); in _load_inttype() 58 x = *((int *) src); in _load_inttype()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/test/locale/ |
A D | tst-mbswcs2.c | 29 src - (const char *) buf); \ 30 if (n != (size_t) nexp || wc != wcexp || src != (const char *) (end)) \ 43 const char *src; in main() local 57 src = (const char *) buf; in main() 58 show (mbsnrtowcs (&wc, &src, 1, 1, &state), 1, 37, buf + 1); in main() 59 show (mbsnrtowcs (&wc, &src, 3, 1, &state), 1, 8364, buf + 4); in main() 60 show (mbsnrtowcs (&wc, &src, 1, 1, &state), 0, 8364, buf + 5); in main() 61 show (mbsnrtowcs (&wc, &src, 1, 1, &state), 1, 955, buf + 6); in main()
|
A D | tst-mbswcs3.c | 31 src - srcbuf, dst - (char *) buf); \ 32 if (res != nexp || src != (srcexp) || dst != (char *) (bufexp)) \ 48 const wchar_t *src; in main() local 61 src = srcbuf; 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()
|
A D | tst-mbswcs4.c | 28 src - (const char *) buf); \ 29 if (n != (size_t) nexp || wc != wcexp || src != (const char *) (end)) \ 42 const char *src; in main() local 56 src = (const char *) buf; in main() 57 show (mbsrtowcs (&wc, &src, 1, &state), 1, 37, buf + 1); in main() 58 show (mbsrtowcs (&wc, &src, 1, &state), 1, 8364, buf + 4); in main() 59 show (mbsrtowcs (&wc, &src, 1, &state), 1, 955, buf + 6); in main()
|
A D | tst-mbswcs5.c | 47 const wchar_t *src; in main() local 60 src = srcbuf; 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()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/ia64/ |
A D | memmove.S | 45 #define src r20 macro 92 mov src = in1 /* src */ 100 add tmp3 = src, len;; 116 (p6) ld8 value = [src], 8;; 126 (p[0]) ld8 r[0] = [src], 16 165 add src = src, tmp2 /* src += len & -OPSIZ */ 187 (p[0]) ld8 r[0] = [src], 8 196 ld1 value = [src], 1 211 add src = src, len /* src points one byte past the end */ 218 adds src = -8, src /* src points to the last word */ [all …]
|
A D | memcpy.S | 60 #define src r21 macro 176 mov src = in1 /* src */ 192 lfetch.nt1 [src] /* */ 201 ld1 tmp2 = [src], 1 /* */ 228 add ptr1 = LFETCH_DIST, src 245 (p_xtr) load tempreg = [src], 8 294 (p[0]) load the_r[0] = [src], 8 324 load tempreg = [src], 8 350 ld1 tmp2 = [src], 1 358 (p_scr) ld1 tmp2 = [src], 1 [all …]
|
A D | memccpy.S | 42 #define src r20 macro 79 mov src = in1 /* src */ 98 ld1 value = [src], 1 /* value = *src++ */ 105 and sh1 = 7, src /* sh1 = src % 8 */ 117 add src = src, tmp /* src += len & -OPSIZ */ 141 (p[0]) ld8.s r[0] = [src], 8 156 ld1 value = [src], 1 185 adds src = -(MEMLAT + 6 + 1) * 8, asrc 192 sub src = src, sh2 197 add src = sh1, src ;; [all …]
|
A D | memcmp.S | 46 #define src r20 macro 70 mov src = in1 /* src */ 85 ld1 value1 = [src], 1 /* value = *src++ */ 92 and sh1 = 7, src /* sh1 = src % 8 */ 94 and asrc = -8, src /* asrc = src & -OPSIZ -- align src */ 104 add src = src, tmp /* src += len & -OPSIZ */ 138 (p[0]) ld8 r[0] = [src], 8 149 ld1 value1 = [src], 1
|
/l4re-core-master/lua/lib/contrib/ |
A D | Makefile | 55 @cd src && $(MAKE) $@ 58 …cd src && $(MKDIR) $(INSTALL_BIN) $(INSTALL_INC) $(INSTALL_LIB) $(INSTALL_MAN) $(INSTALL_LMOD) $(I… 59 cd src && $(INSTALL_EXEC) $(TO_BIN) $(INSTALL_BIN) 60 cd src && $(INSTALL_DATA) $(TO_INC) $(INSTALL_INC) 61 cd src && $(INSTALL_DATA) $(TO_LIB) $(INSTALL_LIB) 65 cd src && cd $(INSTALL_BIN) && $(RM) $(TO_BIN) 66 cd src && cd $(INSTALL_INC) && $(RM) $(TO_INC) 67 cd src && cd $(INSTALL_LIB) && $(RM) $(TO_LIB) 78 @cd src && $(MAKE) -s echo
|
/l4re-core-master/l4sys/include/cxx/ |
A D | capability.h | 171 void move(Cap_base const &src) const in move() argument 173 if (!is_valid() || !src.is_valid()) in move() 187 void copy(Cap_base const &src) const in copy() argument 276 Cap move(Cap const &src) const in move() argument 278 Cap_base::move(src); in move() 286 Cap copy(Cap const &src) const in copy() argument 288 Cap_base::copy(src); in copy() 341 Cap move(Cap const &src) const in move() argument 343 Cap_base::move(src); in move() 351 Cap copy(Cap const &src) const in copy() argument [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/sh/sh4/ |
A D | memmove.c | 20 static void fpu_optimised_copy_fwd(void *dest, const void *src, size_t len) in fpu_optimised_copy_fwd() argument 23 char *s = (char *)src; in fpu_optimised_copy_fwd() 90 void *memmove(void *dest, const void *src, size_t len) in memmove() argument 93 unsigned long int s = (long int)src; in memmove() 108 memcpy(dest, src, len); /* No overlap */ in memmove() 110 memcpy(dest, src, len); in memmove() 113 memcpy(dest, src, len); /* memcpy is BWD */ in memmove() 115 fpu_optimised_copy_fwd(dest, src, len); in memmove()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/config/os/aix/ |
A D | t-aix | 7 FSOBJS=$(shell $(ARX) -X$(BITS) t ../ppc$(BITS)/$(PACKAGE)-v3/src/filesystem/.libs/libstdc++fs.a 2>… 9 …$(ARX) -X$(BITS) rc src/.libs/$(PACKAGE).a ../ppc$(BITS)/$(PACKAGE)-v3/src/.libs/$(PACKAGE).so.$(M… 10 …$(ARX) -X$(BITS) rc ../pthread/$(PACKAGE)-v3/src/.libs/$(PACKAGE).a ../pthread/ppc$(BITS)/$(PACKAG… 14 …$(ARX) -X$(BITS) rc src/filesystem/.libs/libstdc++fs.a ${addprefix ../ppc$(BITS)/$(PACKAGE)-v3/src… 15 …ITS) rc ../pthread/$(PACKAGE)-v3/src/filesystem/.libs/libstdc++fs.a ${addprefix ../pthread/ppc$(BI…
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/ |
A D | strlcpy.c | 23 register const Wchar *__restrict src, in Wstrlcpy() argument 26 const Wchar *src0 = src; in Wstrlcpy() 35 while ((*dst = *src) != 0) { in Wstrlcpy() 40 ++src; in Wstrlcpy() 43 return src - src0; in Wstrlcpy()
|
/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/libstdc++-v3/contrib/libstdc++-v3-11/src/ |
A D | Makefile.am | 60 vpath % $(top_srcdir)/src/c++98 61 vpath % $(top_srcdir)/src/c++11 62 vpath % $(top_srcdir)/src/c++17 63 vpath % $(top_srcdir)/src/c++20 65 vpath % $(top_srcdir)/src/filesystem 112 $(top_builddir)/src/c++98/libc++98convenience.la \ 113 $(top_builddir)/src/c++11/libc++11convenience.la \ 114 $(top_builddir)/src/c++17/libc++17convenience.la \ 115 $(top_builddir)/src/c++20/libc++20convenience.la 123 $(top_builddir)/src/c++20/libc++20convenience.la [all …]
|
/l4re-core-master/uclibc/lib/uclibc/ |
A D | make_vars.mk | 12 LIBC_DST_DIR := $(OBJ_DIR)/src 15 PTHOBJ_PFX := libpthread/src 21 PTHREAD_INCDIR = $(PTHLIB_DIR)/src/sysdeps/$(UCLIBC_ARCH_$(ARCH)) \ 22 $(PTHLIB_DIR)/src
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/i386/ |
A D | string.h | 241 char *inlined_stpcpy(char *dest, const char *src) in inlined_stpcpy() argument 251 : "0" (src), "1" (dest) in inlined_stpcpy() 257 char *inlined_strcpy(char *dest, const char *src) in inlined_strcpy() argument 259 inlined_stpcpy(dest, src); in inlined_strcpy() 263 #define stpcpy(dest, src) inlined_stpcpy(dest, src) 264 #define strcpy(dest, src) inlined_strcpy(dest, src)
|