Searched defs:bcopy (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/Additions/x11/x11include/xproto-7.0.18/X11/
H A DXfuncs.h36 void bcopy();
42 void bcopy();
64 # define bcopy(b1,b2,len) memmove(b2, b1, (size_t)(len)) macro
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dstring.h21 bcopy(a,b,c) ( memcpy((void *)b, (const void *)a, (size_t)c))
468 // bcopy is is a void function with the src/dest arguments reversed, being used in socket lib
469 #define bcopy(a,b,c) ( memcpy((void *)b, (const void *)a, (size_t)c)) macro
/vbox/src/VBox/Additions/x11/x11include/4.3/include/
H A DXfuncs.h39 void bcopy();
45 void bcopy();
51 #define bcopy(b1,b2,len) memmove(b2, b1, (size_t)(len)) macro
69 #define memmove(dst,src,len) bcopy((char *)(src),(char *)(dst),(int)(len))
76 #define memmove(dst,src,len) bcopy((char *)(src),(char *)(dst),(int)(len))
77 #define memcpy(dst,src,len) bcopy((char *)(src),(char *)(dst),(int)(len))
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dstrings.h56 bcopy ( const void *src, void *dest, size_t n ) { function
/vbox/src/VBox/ExtPacks/VBoxDTrace/include/
H A DVBoxDTraceLibCWrappers.h37 # include <strings.h> /* bzero & bcopy.*/
88 #undef bcopy macro
89 #define bcopy(a_pSrc, a_pDst, a_cb) ((void)memmove(a_pDst, a_pSrc, a_cb)) macro
H A DVBoxDTraceTypes.h151 # undef bcopy macro
152 # define bcopy(a_pSrc, a_pDst, a_cb) ((void)memmove(a_pDst, a_pSrc, a_cb)) macro
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dstringextra.c236 * bcopy - Copy one area of memory to another
242 * memcpy() is the standard, bcopy() is a legacy BSD function.
247 char * bcopy(const char * src, char * dest, int count) function
/vbox/src/VBox/Devices/Network/slirp/
H A Dslirp.h173 # define memmove(x, y, z) bcopy(y, x, z)
399 # define bcopy(src, dst, len) memcpy((dst), (src), (len)) macro
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/
H A Dxf86_libc.h415 #undef bcopy macro
416 #define bcopy(vp,cvp,I) xf86memmove(cvp,vp,I) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dxf86_libc.h459 #undef bcopy macro
460 #define bcopy(vp,cvp,I) xf86memmove(cvp,vp,I) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dxf86_libc.h459 #undef bcopy macro
460 #define bcopy(vp,cvp,I) xf86memmove(cvp,vp,I) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dxf86_libc.h465 #undef bcopy macro
466 #define bcopy(vp,cvp,I) xf86memmove(cvp,vp,I) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dxf86_libc.h463 #undef bcopy macro
464 #define bcopy(vp,cvp,I) xf86memmove(cvp,vp,I) macro

Completed in 961 milliseconds