Home
last modified time | relevance | path

Searched refs:bcopy (Results 1 – 17 of 17) sorted by relevance

/toolchain/binutils/binutils-2.25/libiberty/
Dmemmove.c19 void bcopy (const void*, void*, size_t);
24 bcopy (s2, s1, n); in memmove()
Dmemcpy.c19 void bcopy (const void*, void*, size_t);
24 bcopy(in, out, length); in memcpy()
Dbcopy.c15 bcopy (const void *src, void *dest, size_t len) in bcopy() function
Dconfigure.ac335 funcs="$funcs bcopy"
399 basename bcmp bcopy bsearch bzero \
475 AC_LIBOBJ([bcopy])
497 …asprintf | basename | bcmp | bcopy | bzero | clock | ffs | getpagesize | index | insque | mempcpy …
521 for f in atexit basename bcmp bcopy bsearch bzero calloc clock ffs \
DMakefile.in127 basename.c bcmp.c bcopy.c bsearch.c bzero.c \
200 ./basename.$(objext) ./bcmp.$(objext) ./bcopy.$(objext) \
580 ./bcopy.$(objext): $(srcdir)/bcopy.c
582 $(COMPILE.c) $(PICFLAG) $(srcdir)/bcopy.c -o pic/$@; \
585 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/bcopy.c -o noasan/$@; \
587 $(COMPILE.c) $(srcdir)/bcopy.c $(OUTPUT_OPTION)
Dmd5.c35 # define memcpy(d, s, n) bcopy ((s), (d), (n))
Dconfig.in25 /* Define to 1 if you have the `bcopy' function. */
DChangeLog1887 bcopy.c (bcopy): Add explict casts in assignments.
2446 * bcopy.c: Fix warnings.
2735 * bcopy.c (bcopy): Likewise.
3731 * memcpy.c: ANSI_PROTOTYPES, DEFUN and prototype bcopy.
4482 * alloca.c, atexit.c, basename.c, bcmp.c, bcopy.c, bsearch.c,
5813 * Makefile.in (NEEDED): Add bcmp, bcopy, bzero.
7664 * bcopy.c, bzero.c, memcmp.c, memcpy.c, memset.c, strchr.c,
8644 * Makefile.in, argv.c, basename.c, bcmp.c, bcopy.c, bzero.c,
8744 * bcopy.c, strerror.c, strsignal.c: Lint.
8973 New ANSI functions. The old non-ANSI functions (such as bcopy)
[all …]
Dconfigure5491 basename bcmp bcopy bsearch bzero \
5851 …asprintf | basename | bcmp | bcopy | bzero | clock | ffs | getpagesize | index | insque | mempcpy …
5899 for f in atexit basename bcmp bcopy bsearch bzero calloc clock ffs \
Dfunctions.texi63 @c bcopy.c:3
64 @deftypefn Supplemental void bcopy (char *@var{in}, char *@var{out}, int @var{length})
67 @var{out}. The use of @code{bcopy} is deprecated in new programs.
Dregex.c140 # if !defined bzero && !defined bcopy
165 # define memcpy(d, s, n) (bcopy (s, d, n), (d))
/toolchain/binutils/binutils-2.25/gas/
Das.h143 #if !defined (memcpy) && !defined (bcopy)
144 #define bcopy(src,dest,size) memcpy (dest, src, size) macro
DChangeLog-92953818 * as.h (bcopy): If neither memcpy nor bcopy is defined as a macro,
10215 bcopy.
12138 * app.c (app_push): Use memcpy, not bcopy.
/toolchain/binutils/binutils-2.25/include/
Dobstack.h153 # define _obstack_memcpy(To, From, N) bcopy ((char *)(From), (To), (N))
DChangeLog-91031658 * obstack.h: Change bcopy to memcpy. Works better on Posix
1659 systems, which generally lack bcopy.
2335 * obstack.h: Convert bcopy() use to memcpy(), which is more
/toolchain/binutils/binutils-2.25/gprof/
DChangeLog-92031302 * __bb_exit_func.c (__bb_exit_func): Replace bcopy with memcpy.
/toolchain/binutils/binutils-2.25/bfd/
DChangeLog-91935130 * hosts/hppahpux.h: Remove bcopy and index circumventions.
5136 * elf.c: Use memcpy rather than bcopy.
6251 bcopy->memcpy, bzero->memset, bcmp->memcmp.