Searched refs:bcopy (Results 1 - 25 of 73) sorted by relevance

123

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/funcs/
H A Derr.badbcopy3.d31 * 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 Derr.badbcopy6.d33 bcopy("bad news", alloca(1), -1);
H A Derr.badalloca.d49 bcopy((void *)&`kmem_flags, ptr, sizeof (int));
H A Derr.badbcopy.d32 * 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 Derr.badbcopy1.d31 * 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 Derr.badbcopy2.d31 * 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 Derr.badbcopy4.d31 * bcopy should not copy from one memory location to another
35 * Actions and Subroutines/bcopy()
46 bcopy((void *)NULL, ptr, sizeof (int));
H A Derr.badbcopy5.d31 * bcopy should not copy from one memory location to another
35 * Actions and Subroutines/bcopy()
48 bcopy(badptr, ptr, sizeof (int));
H A Dtst.bcopy.d31 * 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 DXfuncs.h36 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 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/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/i386/funcs/
H A Dtst.badcopyoutstr.d48 bcopy("kablammo!", this->str, 10);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/sparc/ustack/
H A Dtst.helper.c64 bcopy(instr, fp, sizeof (instr));
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/i386/ustack/
H A Dtst.helper.c65 bcopy(instr, fp, sizeof (instr));
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dmap_v4v6.c101 bcopy(src, tmp, INADDRSZ);
108 bcopy(tmp, (void*)p, INADDRSZ);
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dstrings.h56 bcopy ( const void *src, void *dest, size_t n ) { function
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/md/
H A Dsunos4.h83 #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 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
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/
H A Dwritev.c130 bcopy(iov->iov_base, pBuf, iov->iov_len);
H A Dselect.c194 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 Dtst.unpriv_funcs.ksh42 bcopy("alloca\n", x, 7);
H A Dtst.func_access.ksh46 BEGIN { x = alloca(10); bcopy(`initname, x, 10); trace(stringof(x)); }
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_map.c65 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 Dradix.h145 #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 Dtst.subr.d73 VOIDFUNC(bcopy)

Completed in 158 milliseconds

123