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

1234567891011>>

/illumos-gate/usr/src/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));
/illumos-gate/usr/src/cmd/ipf/lib/common/
H A Dbcopywrap.c7 bcopy((caddr_t)from, (caddr_t)to, size);
/illumos-gate/usr/src/ucblib/libucb/port/gen/
H A Dbcopy.c53 bcopy(char *s1, char *s2, int len) function
/illumos-gate/usr/src/cmd/vi/port/
H A Dbcopy.c33 bcopy(from, to, count) function
/illumos-gate/usr/src/common/util/
H A Dbcopy.c51 bcopy(const void *s1, void *s2, size_t len) function
/illumos-gate/usr/src/ucbhead/
H A Dstrings.h60 extern void bcopy(const void *, void *, size_t);
/illumos-gate/usr/src/stand/lib/sa/
H A Dstrings.h45 extern void bcopy(const void *, void *, size_t);
/illumos-gate/usr/src/uts/common/sys/
H A Dstrmdep.h47 * The addresses must be word aligned - if not, use bcopy!
49 #define strbcpy(s, d, c) bcopy(s, d, c)
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dmemcpy.c36 extern void bcopy(void*, void*, size_t);
41 bcopy(s2, s1, n);
/illumos-gate/usr/src/cmd/dtrace/test/tst/i386/funcs/
H A Dtst.badcopyoutstr.d48 bcopy("kablammo!", this->str, 10);
/illumos-gate/usr/src/boot/sys/boot/efi/loader/arch/i386/
H A Di386_copy.c43 bcopy(src, PTOV(dest), len);
50 bcopy(PTOV(src), dest, len);
/illumos-gate/usr/src/lib/libumem/i386/
H A Dumem_genasm.c317 bcopy(malinit, bp, sizeof (malinit));
319 bcopy(&addr, bp + PTC_MALINIT_JOUT, sizeof (addr));
320 bcopy(&csize, bp + PTC_MALINIT_MCS, sizeof (csize));
322 bcopy(&addr, bp + PTC_MALINIT_JOV, sizeof (addr));
323 bcopy(&off, bp + PTC_MALINIT_SOFF, sizeof (off));
333 bcopy(freeinit, bp, sizeof (freeinit));
335 bcopy(&addr, bp + PTC_FRINI_JDONE, sizeof (addr));
337 bcopy(&addr, bp + PTC_FRINI_JFREE, sizeof (addr));
338 bcopy(&mc, bp + PTC_FRINI_MCS, sizeof (mc));
340 bcopy(
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/talk/
H A Dget_addrs.c47 #define bcopy(a, b, c) memcpy((b), (a), (c)) macro
79 bcopy(hp->h_addr, (char *)&my_machine_addr, hp->h_length);
85 bcopy((char *)&my_machine_addr, (char *)&rem_machine_addr,
108 bcopy(hp->h_addr, (char *) &rem_machine_addr, hp->h_length);
/illumos-gate/usr/src/cmd/csh/
H A Dsh.local.h54 #define copy(to, from, size) bcopy(from, to, size)
/illumos-gate/usr/src/common/crypto/modes/
H A Decb.c59 bcopy(datap,
79 bcopy(datap, &((uint8_t *)ctx->ecb_remainder)
94 bcopy(blockp, ctx->ecb_copy_to,
96 bcopy(blockp + ctx->ecb_remainder_len, datap,
105 bcopy(lastp, out_data_1, out_data_1_len);
107 bcopy(lastp + out_data_1_len, out_data_2,
126 bcopy(datap, ctx->ecb_remainder, remainder);
H A Dcbc.c61 bcopy(datap,
81 bcopy(datap, &((uint8_t *)ctx->cbc_remainder)
101 bcopy(blockp, ctx->cbc_copy_to,
103 bcopy(blockp + ctx->cbc_remainder_len, datap,
120 bcopy(lastp, out_data_1, out_data_1_len);
122 bcopy(lastp + out_data_1_len,
143 bcopy(datap, ctx->cbc_remainder, remainder);
188 bcopy(datap,
208 bcopy(datap, &((uint8_t *)ctx->cbc_remainder)
240 bcopy(block
[all...]
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Di386_copy.c47 bcopy(src, PTOV(dest), len);
59 bcopy(PTOV(src), dest, len);

Completed in 136 milliseconds

1234567891011>>