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

12345678910

/darwin-on-arm/xnu/osfmk/console/arm/
H A Dvideo_scroll.c32 extern void bcopy(const void *, void *, size_t);
38 bcopy(start, dest, ((char*)end - (char*)start));
45 bcopy(end, dest, ((char*)start - (char*)end));
/darwin-on-arm/xnu/osfmk/console/i386/
H A Dvideo_scroll.c32 extern void bcopy(const void *, void *, size_t);
38 bcopy(start, dest, ((char*)end - (char*)start) << 2);;
45 bcopy(end, dest, ((char*)start - (char*)end) << 2);
/darwin-on-arm/xnu/bsd/dev/arm/
H A Dmemmove.c39 * bcopy code
48 bcopy(src, dst, ulen);
56 bcopy(src, dst, ulen);
H A Dstubs.c55 bcopy(src, dst, count);
/darwin-on-arm/xnu/bsd/dev/i386/
H A Dmemmove.c39 * bcopy code
48 bcopy(src, dst, ulen);
56 bcopy(src, dst, ulen);
H A Dstubs.c116 bcopy(src,dst,count);
/darwin-on-arm/xnu/bsd/net/
H A Dether_inet_pr_module.c112 bcopy(src, dst, sizeof (struct in_addr))
154 bcopy(ea->arp_sha, LLADDR(&sender_hw), ETHER_ADDR_LEN);
255 bcopy(LLADDR(&ll_dest), edst, ETHER_ADDR_LEN);
256 bcopy(&ethertype_ip, type, sizeof (ethertype_ip));
267 bcopy(&eh->ether_type, type, sizeof (u_short));
459 bcopy(CONST_LLADDR(sender_hw), ea->arp_sha,
468 bcopy(&sender_ip->sin_addr, ea->arp_spa, sizeof (ea->arp_spa));
478 bcopy(&((struct sockaddr_in *)(void *)
497 bcopy(etherbroadcastaddr, eh->ether_dhost,
500 bcopy(CONST_LLADD
[all...]
H A Dbpf.c443 bcopy(bpf_dtab, new_dtab,
1229 bcopy(&n, addr, sizeof (n));
1250 bcopy(&d->bd_bufsize, addr, sizeof (u_int));
1262 bcopy(addr, &size, sizeof (size));
1268 bcopy(&size, addr, sizeof (size));
1279 bcopy(addr, &prg32, sizeof (prg32));
1288 bcopy(addr, &prg64, sizeof (prg64));
1327 bcopy(&d->bd_bif->bif_dlt, addr, sizeof (u_int));
1350 bcopy(addr, &dlt, sizeof (dlt));
1376 bcopy(add
[all...]
H A Dether_if_module.c121 #define memcpy(x,y,z) bcopy(y, x, z)
282 bcopy(desc_blk, tmp, old_size);
318 bcopy(demux->data, &ed->data[0], 3);
324 bcopy(demux->data, pDest, 5);
448 bcopy(data, &extProto1, sizeof (u_int32_t));
454 bcopy(data + sizeof(u_int32_t), &extProto2, sizeof (u_int32_t));
H A Dradix.h186 #define Bcopy(a, b, n) bcopy(((char *)(a)), ((char *)(b)), (unsigned)(n))
192 #define Bcopy(a, b, n) bcopy(((caddr_t)(a)), ((caddr_t)(b)), (unsigned)(n))
H A Dmulticast_list.c137 bcopy(LLADDR(&source_sdl), LLADDR(&target_sdl), alen);
/darwin-on-arm/xnu/osfmk/libsa/
H A Dstring.h89 extern void bcopy(const void *, void *, size_t);
/darwin-on-arm/xnu/pexpert/pexpert/
H A Dprotos.h49 #define bcopy_nc bcopy
/darwin-on-arm/xnu/tools/tests/xnu_quick_test/helpers/
H A Ddata_exec.c142 bcopy(test_func, func, func_len);
154 bcopy(test_func, func, func_len);
172 bcopy(test_func, func, func_len);
182 bcopy(test_func, func, func_len);
/darwin-on-arm/xnu/bsd/libkern/
H A Dinet_ntop.c83 bcopy(tmp, buf, fulllen + 1);
113 bcopy(tmp, dst, len + 1);
202 bcopy(tmp, dst, len);
/darwin-on-arm/xnu/bsd/netinet/
H A Din.c396 bcopy(data, &iflr, sizeof (iflr));
398 bcopy(&iflr, data, sizeof (iflr));
413 bcopy(&((struct ifreq *)(void *)data)->ifr_addr,
466 bcopy(&((struct in_aliasreq *)(void *)data)->
468 bcopy(&((struct in_aliasreq *)(void *)data)->
472 bcopy(&((struct ifreq *)(void *)data)->ifr_addr,
518 bcopy(&((struct in_aliasreq *)(void *)data)->
523 bcopy(&((struct ifreq *)(void *)data)->ifr_addr,
625 bcopy(&((struct ifreq *)(void *)data)->ifr_intval,
653 bcopy(
[all...]
/darwin-on-arm/xnu/bsd/netinet6/
H A Din6.c459 bcopy(src->ifra_name, dst->ifra_name, sizeof (dst->ifra_name));
474 bcopy(src->ifra_name, dst->ifra_name, sizeof (dst->ifra_name));
490 bcopy(data, dst, sizeof (*dst));
499 bcopy(data, dst, sizeof (*dst));
604 bcopy(ifr->ifr_ifru.ifru_scope_id, ifru_scope_id,
614 bcopy(ifr->ifr_ifru.ifru_scope_id, ifru_scope_id,
624 bcopy(ifr->ifr_ifru.ifru_scope_id, ifru_scope_id,
639 bcopy(data, &iflr, sizeof (iflr));
641 bcopy(&iflr, data, sizeof (iflr));
657 bcopy(
[all...]
H A Din6_ifattach.c156 bcopy(digest, &in6->s6_addr[8], 8);
187 bcopy(&val32, seed + sizeof(val32) * i, sizeof(val32));
190 bcopy(seed0, seed, 8);
195 bcopy(seed1, &seed[8], 8);
217 bcopy(digest, ret, 8);
240 bcopy(&digest[8], seed0, 8);
323 bcopy(addr, &in6->s6_addr[8], 8);
498 bcopy(&ifra_passed->ifra_addr, &(ifra.ifra_addr), sizeof(struct sockaddr_in6));
713 bcopy(digest, &in6->s6_addr32[3], sizeof(in6->s6_addr32[3]));
780 bcopy((caddr_
[all...]
/darwin-on-arm/xnu/bsd/sys/_types/
H A D_fd_def.h72 #define __DARWIN_FD_COPY(f, t) bcopy(f, t, sizeof(*(f)))
/darwin-on-arm/xnu/iokit/Kernel/
H A DIORangeAllocator.cpp151 bcopy( elements,
154 bcopy( elements + index,
166 bcopy( elements + index,
179 bcopy( elements + index + 1,
/darwin-on-arm/xnu/osfmk/x86_64/
H A Dbcopy.s78 /* void bcopy((const char *) from, (char *) to, (unsigned int) count) */
86 * bcopy(src, dst, cnt)
90 ENTRY(bcopy) function
/darwin-on-arm/xnu/bsd/kern/
H A Dsys_socket.c206 bcopy(data, &int_arg, sizeof (int_arg));
215 bcopy(data, &int_arg, sizeof (int_arg));
228 bcopy(&so->so_rcv.sb_cc, data, sizeof (u_int32_t));
232 bcopy(data, &so->so_pgid, sizeof (pid_t));
236 bcopy(&so->so_pgid, data, sizeof (pid_t));
241 bcopy(&int_arg, data, sizeof (int_arg));
252 bcopy(data, &cloned_fd, sizeof (cloned_fd));
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_boot.c527 bcopy(str->data, hostname, cn_len);
542 bcopy(str->data, domainname, dn_len);
614 bcopy(hostname, str->data, cn_len);
619 bcopy(key, str->data, key_len);
642 bcopy(str->data, serv_name, sn_len);
674 bcopy(str->data, pathname, path_len);
736 bcopy(path, str->data, slen);
764 bcopy(fh, fhp, fhlen);
769 bcopy(rdata->data, fhp, NFSX_V2FH);
/darwin-on-arm/xnu/bsd/netat/
H A Daurp_rx.c110 bcopy(gbuf_rptr(mdata), net_access,
128 bcopy(gbuf_rptr(mdata), &aurp_global.dst_addr,
/darwin-on-arm/xnu/pexpert/arm/common/
H A Dpe_init.c215 bcopy((void *) (map[0]), appleClut8, sizeof(appleClut8));
222 bcopy((void *) (uintptr_t) bootClut, (void *) appleClut8, sizeof(appleClut8));

Completed in 126 milliseconds

12345678910