HomeSort by relevance Sort by last modified time
    Searched refs:pktoff (Results 1 - 2 of 2) sorted by null

  /external/syslinux/gpxe/src/drivers/net/
ne2k_isa.c 276 unsigned short pktoff; local
292 pktoff = next << 8;
294 eth_pio_read(pktoff, (unsigned char *)&pkthdr, 4);
296 memcpy(&pkthdr, bus_to_virt(eth_rmem + pktoff), 4);
297 pktoff += sizeof(pkthdr);
308 frag = (eth_memsize << 8) - pktoff;
312 eth_pio_read(pktoff, p, frag);
314 memcpy(p, bus_to_virt(eth_rmem + pktoff), frag);
315 pktoff = eth_rx_start << 8;
321 eth_pio_read(pktoff, p, len)
    [all...]
ns8390.c 507 unsigned short pktoff; local
543 pktoff = next << 8;
545 eth_pio_read(pktoff, (unsigned char *)&pkthdr, 4);
547 memcpy(&pkthdr, bus_to_virt(eth_rmem + pktoff), 4);
548 pktoff += sizeof(pkthdr);
559 frag = (eth_memsize << 8) - pktoff;
563 eth_pio_read(pktoff, p, frag);
565 memcpy(p, bus_to_virt(eth_rmem + pktoff), frag);
566 pktoff = eth_rx_start << 8;
572 eth_pio_read(pktoff, p, len)
    [all...]

Completed in 355 milliseconds