Home | History | Annotate | Download | only in netboot

Lines Matching refs:bptr

431 	Address			bptr;
455 bptr = mem_start + TX_BUF_START;
456 memcpy((char *)bptr, (char *)tx_cmd, sizeof(tx_cmd));
457 bptr += sizeof(tx_cmd);
458 memcpy((char *)bptr, d, ETH_ALEN);
459 bptr += ETH_ALEN;
460 memcpy((char *)bptr, nic->node_addr, ETH_ALEN);
461 bptr += ETH_ALEN;
462 memcpy((char *)bptr, (char *)&type, sizeof(type));
463 bptr += sizeof(type);
464 memcpy((char *)bptr, p, s);