| /vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/funcs/ |
| H A D | err.badbcopy3.d | 31 * bcopy should not copy from one memory location to another 34 * SECTION: Actions and Subroutines/bcopy() 43 bcopy((void *)&`kmem_flags, (void *)NULL, sizeof (int));
|
| H A D | err.badbcopy6.d | 33 bcopy("bad news", alloca(1), -1);
|
| H A D | err.badalloca.d | 49 bcopy((void *)&`kmem_flags, ptr, sizeof (int));
|
| H A D | err.badbcopy.d | 32 * bcopy should not allow a copy to memory that is not scratch memory. 35 * Actions and Subroutines/bcopy() 48 bcopy(ptr, (void *)&`kmem_flags, sizeof (int));
|
| H A D | err.badbcopy1.d | 31 * bcopy should not copy from one memory location to another 35 * Actions and Subroutines/bcopy() 46 /* Attempt to bcopy to scratch memory that isn't allocated */ 47 bcopy((void *)&`kmem_flags, ptr, sizeof (int));
|
| H A D | err.badbcopy2.d | 31 * bcopy should not copy from one memory location to another 34 * SECTION: Actions and Subroutines/bcopy() 46 bcopy((void *)&`kmem_flags, ptr, sizeof (int));
|
| H A D | err.badbcopy4.d | 31 * bcopy should not copy from one memory location to another 35 * Actions and Subroutines/bcopy() 46 bcopy((void *)NULL, ptr, sizeof (int));
|
| H A D | err.badbcopy5.d | 31 * bcopy should not copy from one memory location to another 35 * Actions and Subroutines/bcopy() 48 bcopy(badptr, ptr, sizeof (int));
|
| H A D | tst.bcopy.d | 31 * bcopy should copy from one memory location to another 34 * Actions and Subroutines/bcopy() 44 bcopy((void *)&`kmem_flags, ptr, sizeof (int));
|
| /vbox/src/VBox/Additions/x11/x11include/xproto-7.0.18/X11/ |
| H A D | Xfuncs.h | 36 void bcopy(); 42 void bcopy(); 64 # define bcopy(b1,b2,len) memmove(b2, b1, (size_t)(len)) macro
|
| /vbox/src/VBox/Additions/x11/x11include/4.3/include/ |
| H A D | Xfuncs.h | 39 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/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/i386/funcs/ |
| H A D | tst.badcopyoutstr.d | 48 bcopy("kablammo!", this->str, 10);
|
| /vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/sparc/ustack/ |
| H A D | tst.helper.c | 64 bcopy(instr, fp, sizeof (instr));
|
| /vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/i386/ustack/ |
| H A D | tst.helper.c | 65 bcopy(instr, fp, sizeof (instr));
|
| /vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
| H A D | map_v4v6.c | 101 bcopy(src, tmp, INADDRSZ); 108 bcopy(tmp, (void*)p, INADDRSZ);
|
| /vbox/src/VBox/Devices/PC/ipxe/src/include/ |
| H A D | strings.h | 56 bcopy ( const void *src, void *dest, size_t n ) { function
|
| /vbox/src/libs/xpcom18a4/nsprpub/pr/include/md/ |
| H A D | sunos4.h | 83 #define memmove(to,from,len) bcopy((char*)(from),(char*)(to),len) 85 extern void bcopy(const char *, char *, int);
|
| /vbox/src/VBox/ExtPacks/VBoxDTrace/include/ |
| H A D | VBoxDTraceLibCWrappers.h | 37 # 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
|
| /vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/ |
| H A D | writev.c | 130 bcopy(iov->iov_base, pBuf, iov->iov_len);
|
| H A D | select.c | 194 bcopy(name, ibits[x], ncpbytes); \ 243 #define putbits(name, x) if (name) bcopy(obits[x], name, ncpbytes)
|
| /vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/privs/ |
| H A D | tst.unpriv_funcs.ksh | 42 bcopy("alloca\n", x, 7);
|
| H A D | tst.func_access.ksh | 46 BEGIN { x = alloca(10); bcopy(`initname, x, 10); trace(stringof(x)); }
|
| /vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/ |
| H A D | dt_map.c | 65 bcopy(dtp->dt_pdesc, new_pdesc, osize); 68 bcopy(dtp->dt_edesc, new_edesc, osize); 100 bcopy(enabled, nenabled, sizeof (*enabled)); 176 bcopy(dtp->dt_formats, new_formats, osize); 308 bcopy(dtp->dt_aggdesc, new_aggdesc, 339 bcopy(agg, nagg, sizeof (*agg));
|
| /vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/net/ |
| H A D | radix.h | 145 #define Bcopy(a, b, n) bcopy(((char *)(a)), ((char *)(b)), (unsigned)(n)) 151 #define Bcopy(a, b, n) bcopy(((caddr_t)(a)), ((caddr_t)(b)), (unsigned)(n))
|
| /vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/aggs/ |
| H A D | tst.subr.d | 73 VOIDFUNC(bcopy)
|