Home
last modified time | relevance | path

Searched refs:pkt_count (Results 1 – 4 of 4) sorted by relevance

/xnu-11417.140.69/bsd/skywalk/nexus/netif/
H A Dnx_netif_vp.c493 uint32_t pkt_count = 0, byte_count = 0; in netif_vp_send_pkt_chain_low_latency() local
524 nif->nif_nx, drvq->nq_ctx, &ph, &pkt_count, &byte_count); in netif_vp_send_pkt_chain_low_latency()
526 STATS_ADD(nifs, NETIF_STATS_VP_LL_SENT, pkt_count); in netif_vp_send_pkt_chain_low_latency()
528 uint32_t, pkt_count, uint32_t, byte_count); in netif_vp_send_pkt_chain_low_latency()
530 kern_netif_increment_queue_stats(drvq, pkt_count, byte_count); in netif_vp_send_pkt_chain_low_latency()
H A Dnx_netif.c4400 uint32_t pkt_count, uint32_t byte_count) argument
4405 os_atomic_add(&ifp->if_data.ifi_opackets, pkt_count, relaxed);
4408 os_atomic_add(&ifp->if_data.ifi_ipackets, pkt_count, relaxed);
4424 if (__improbable(pkt_count == 0)) {
4430 stats->nq_total_pkts += pkt_count;
4431 if (pkt_count > stats->nq_max_pkts) {
4432 stats->nq_max_pkts = pkt_count;
4435 pkt_count < stats->nq_min_pkts) {
4436 stats->nq_min_pkts = pkt_count;
4472 queue->nq_accumulated_pkts += pkt_count;
/xnu-11417.140.69/bsd/net/pktsched/
H A Dpktsched_netem.c1086 int pkt_count = 1; in nlc_enqueue() local
1114 pkt_count++; in nlc_enqueue()
1132 } while (--pkt_count > 0 && in nlc_enqueue()
/xnu-11417.140.69/bsd/skywalk/nexus/
H A Dos_nexus.h873 uint32_t *pkt_count, uint32_t *byte_count);