Searched defs:BCOPY (Results 1 - 6 of 6) sorted by relevance
/illumos-gate/usr/src/uts/common/inet/ipf/ |
H A D | misc.c | 24 # define BCOPY(a,b,c) bcopy((caddr_t)a, (caddr_t)b, c) macro 27 # define BCOPY(a,b,c) bcopy((char *)a, (char *)b, c) macro 54 BCOPY(s, bp, clen); 87 BCOPY(bp, s, clen); 98 BCOPY(bp, mp->b_wptr, mlen); 114 BCOPY(bp, m->b_wptr, len);
|
/illumos-gate/usr/src/cmd/audio/utilities/ |
H A D | Fir.cc | 39 #define BCOPY(src, dest, num) memmove(dest, src, num) macro 97 BCOPY((char *)(state + size), (char *)state,
|
H A D | Resample.cc | 53 #define BCOPY(src, dest, num) memmove(dest, src, num) macro 138 BCOPY((char *)(state + size), (char *)state,
|
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | vjcompress.c | 61 #undef BCOPY macro 62 #define BCOPY(p1, p2, n) bcopy((char *)(p1), (char *)(p2), (unsigned int)(n)) macro 417 BCOPY(ip, &cs->cs_ip, thlen); 452 BCOPY(new_seq, cp, deltaS); 465 BCOPY(ip, &cs->cs_ip, thlen); 514 BCOPY(buf, &cs->cs_ip, hlen);
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/ |
H A D | pppd.h | 763 #define BCOPY(s, d, l) memcpy(d, s, l) macro 767 #define BCOPY bcopy macro
|
/illumos-gate/usr/src/uts/intel/io/dnet/ |
H A D | dnet.h | 446 #define BCOPY(from, to, len) bcopy(from, to, len) macro
|
Completed in 96 milliseconds