Lines Matching refs:statistics
413 // we reset the statistics totals here because this is where we are loading stats addr
419 // Load the statistics block address.
424 AdapterInfo->statistics->done_marker = 0;
776 AdapterInfo->statistics = (struct speedo_stats *) (UINTN) (AdapterInfo->MemoryPtr + rx_size + tx_size);
2165 // Clear statistics done marker.
2167 AdapterInfo->statistics->done_marker = 0;
2170 // Issue statistics dump (or dump w/ reset) command.
2194 // Look for done marker at end of statistics.
2197 switch (AdapterInfo->statistics->done_marker) {
2221 // Convert NIC statistics counter format to EFI/UNDI
2222 // specification statistics counter format.
2235 db.Data[0x01] = AdapterInfo->statistics->rx_good_frames;
2237 db.Data[0x02] = AdapterInfo->statistics->rx_runt_errs;
2239 db.Data[0x08] = AdapterInfo->statistics->rx_crc_errs +
2240 AdapterInfo->statistics->rx_align_errs;
2244 AdapterInfo->statistics->rx_resource_errs +
2245 AdapterInfo->statistics->rx_overrun_errs;
2249 db.Data[0x0B] = AdapterInfo->statistics->tx_good_frames;
2251 db.Data[0x0E] = AdapterInfo->statistics->tx_coll16_errs +
2252 AdapterInfo->statistics->tx_late_colls +
2253 AdapterInfo->statistics->tx_underruns +
2254 AdapterInfo->statistics->tx_one_colls +
2255 AdapterInfo->statistics->tx_multi_colls;
2257 db.Data[0x14] = AdapterInfo->statistics->tx_total_colls;
2261 AdapterInfo->statistics->tx_lost_carrier;